chore: lint CSS files
The linter throws loads of errors - this commit only makes those fixes that Stylelint can make automatically.
This commit is contained in:
parent
d8bb767806
commit
d52de71726
5 changed files with 51 additions and 30 deletions
|
@ -5,7 +5,7 @@
|
|||
* Created-Date: 15.05.14
|
||||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
*
|
||||
*
|
||||
* This dashboard stylesheet is minified as-is.
|
||||
* @see class/dashboard/layout.php
|
||||
*/
|
||||
|
@ -28,17 +28,20 @@
|
|||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.footnotes_logo_part1_heading {
|
||||
left: 20px;
|
||||
color: #2bb975;
|
||||
}
|
||||
|
||||
.footnotes_logo_part2_heading {
|
||||
left: 51px;
|
||||
color: #545f5a;
|
||||
}
|
||||
|
||||
.footnotes_heart_heading {
|
||||
color:#ff6d3b;
|
||||
font-weight:bold;
|
||||
color: #ff6d3b;
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
left: 96px;
|
||||
}
|
||||
|
@ -59,6 +62,7 @@ On User Request:
|
|||
Limited to a number of IDs to not affect all dashboards
|
||||
<https://wordpress.org/support/topic/all-input-have-width-80/>
|
||||
*/
|
||||
|
||||
/*input[type=text], input[type=password], textarea, select*/
|
||||
#footnote_inputfield_readon_label,
|
||||
#footnote_inputfield_references_label,
|
||||
|
@ -82,6 +86,7 @@ Limited to a number of IDs to not affect all dashboards
|
|||
#footnote_inputfield_custom_mouse_over_box_excerpt_length {
|
||||
width: 180px;
|
||||
}
|
||||
|
||||
#footnote_inputfield_placeholder_start_user_defined,
|
||||
#footnote_inputfield_placeholder_end_user_defined {
|
||||
width: 320px;
|
||||
|
@ -147,7 +152,7 @@ label {
|
|||
border: none !important;
|
||||
}
|
||||
|
||||
.postbox > .inside >table > tbody > tr > td:first-child {
|
||||
.postbox > .inside > table > tbody > tr > td:first-child {
|
||||
width: 15% !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
@ -182,17 +187,21 @@ IE doesn’t support nth child, but these are not critical
|
|||
.expert_lookup tr td:first-child {
|
||||
width: 170px !important;
|
||||
}
|
||||
|
||||
.expert_lookup tr th:nth-child(2),
|
||||
.expert_lookup tr td:nth-child(2) {
|
||||
width: 65px !important;
|
||||
}
|
||||
|
||||
.expert_lookup tr th:nth-child(3),
|
||||
.expert_lookup tr td:nth-child(3) {
|
||||
width: 200px !important;
|
||||
}
|
||||
|
||||
.expert_lookup tr td:nth-child(3) input {
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
.expert_lookup tr th:last-child,
|
||||
.expert_lookup tr td:last-child {
|
||||
white-space: nowrap;
|
||||
|
@ -212,29 +221,33 @@ For better maintainability and readability of the source
|
|||
list, the </p> end tags are omitted per HTML5 standard:
|
||||
<https://stackoverflow.com/questions/8460993/p-end-tag-p-is-not-needed-in-html>
|
||||
|
||||
The textarea has monospace font, but no other features
|
||||
The textarea has monospace font, but no other features
|
||||
helping edit CSS, like tab support and syntactic colors.
|
||||
*/
|
||||
#customize_css_new tr td:first-child {
|
||||
width: 38% !important;
|
||||
font-weight: normal !important;
|
||||
}
|
||||
|
||||
.customize_css_new tr td:first-child span:first-child {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
.customize_css_new .list {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.customize_css_new .list p {
|
||||
font-family: monospace;
|
||||
padding: 0 10px;
|
||||
text-indent: -10px;
|
||||
margin: .5em 0;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
#footnote_inputfield_custom_css_new {
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
#footnote_inputfield_custom_css,
|
||||
#footnote_inputfield_custom_css_new {
|
||||
width: 96%;
|
||||
|
@ -276,6 +289,7 @@ notice after the end of the settings box.
|
|||
.footnotes_description {
|
||||
padding: 0 4%;
|
||||
}
|
||||
|
||||
.footnotes_description p {
|
||||
font-size: 1.06em;
|
||||
font-style: italic;
|
||||
|
|
Reference in a new issue