
add_note.css
About this file
This CSS file contains styles for the page that allows users to add notes to a request. Styles are set for the control div, label, and text area for the contents of a note.
* In the comment for instruction-label, the comment states that the styles are set for the extension form.
Code Check Report
csslint: There are 2 problems in . add_note.css 1: warning at line 2, col 1 Rule doesn't have all its properties in alphabetical order. .note-control { add_note.css 2: warning at line 14, col 1 Don't use IDs in selectors. #note-content, .note-content {
Documentation drawn from source code
/* sets controlling div to relative position */
.note-control {
}
/* sets styles for the labels for the extension form */
.note-label {
}
/* sets the style for the note content textarea */
#note-content, .note-content {
}