request_info.css

About this file

This CSS file contains the styles for the page that allows users to request info. Styles are set for buttons and for request attributes, such as description and title.

Code Check Report




csslint: There are 13 problems in .

request_info.css
1: warning at line 7, col 17
Heading (h3) should not be qualified.
.control-widget h3{

request_info.css
2: warning at line 13, col 1
Rule doesn't have all its properties in alphabetical order.
.request-info .lead {

request_info.css
3: warning at line 14, col 5
Use of !important
    padding: 0 !important;

request_info.css
4: warning at line 15, col 5
Use of !important
    margin: 0 !important;

request_info.css
5: warning at line 19, col 1
Adjoining classes: .btn.active[data-active-class="primary"]
.btn.active[data-active-class="primary"] {

request_info.css
6: warning at line 19, col 1
Adjoining classes: .btn.active[data-active-class="primary"]
.btn.active[data-active-class="primary"] {

request_info.css
7: warning at line 19, col 1
Rule doesn't have all its properties in alphabetical order.
.btn.active[data-active-class="primary"] {

request_info.css
8: warning at line 38, col 1
Rule doesn't have all its properties in alphabetical order.
.request-info .xedit:hover {

request_info.css
9: warning at line 63, col 1
Don't use IDs in selectors.
#request-title {

request_info.css
10: warning at line 63, col 1
Rule doesn't have all its properties in alphabetical order.
#request-title {

request_info.css
11: warning at line 76, col 1
Don't use IDs in selectors.
#agency-request-summary {

request_info.css
12: warning at line 76, col 1
Rule doesn't have all its properties in alphabetical order.
#agency-request-summary {

request_info.css
13: warning at line 100, col 5
Use of !important
    display: none !important;
                        

Documentation drawn from source code

/* sets styles for the request_info well*/
.request-info .well {
}

/* sets the styles for the request id header */
.control-widget h3{
}

/* remove padding and margin from lead elements in the well*/
.request-info .lead {
}

/* sets toggle button to primary when active */
.btn.active[data-active-class="primary"] {
}

/* sets privacy buttons (public, private) to a certain size */
.request-info .privacy-btn {
}

/* removes url hyperlink styling */
.request-info .xedit {
}

/* when user hovers over editable content, content is underline */
.request-info .xedit:hover {
}

/* wrap and break word on request title */
.request-title-text {
}

/* wrap and break word on request description */
.request-description-text {
  white-space: pre-wrap; /* css-3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}

/* wrap and break word on agency request summary */
.agency-request-summary-text {
}

/* sets width and font size of request title text input (called in xeditable js) */
#request-title {
}

/* sets padding on xeditable request title textarea */
.request-title-text .editable-container {
}

/* sets width and font size of agency request summary text area input (called in xeditable js) */
#agency-request-summary {
}

/* sets padding on xeditable agency request summary textarea */
.agency-request-summary-text .editable-container {
}

/* sets the font-weight of request labels to be darker than the content */
.request-info .request-label {
}

/* sets the div of the agency request summary to a max height and enables scrolling if overflow */
.request-info .agency-request-summary-text {
}

/* disables clear button in xeditable textarea */
.request-info .editable-clear-x {
}

Source code