css: fix stylelint issues.

This commit is contained in:
evazion
2019-10-02 01:49:48 -05:00
parent 60eaa99784
commit b9c869f3e4
20 changed files with 45 additions and 49 deletions

View File

@@ -17,8 +17,8 @@ h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, cod
margin: 0; margin: 0;
padding: 0; padding: 0;
border: 0; border: 0;
/* font-weight: normal;*/ /* font-weight: normal;*/
/* font-style: normal;*/ /* font-style: normal;*/
font-size: 100%; font-size: 100%;
line-height: 1.25em; line-height: 1.25em;
font-family: inherit; font-family: inherit;
@@ -33,7 +33,7 @@ ol, ul {
list-style: none; list-style: none;
} }
q:before, q:after, blockquote:before, blockquote:after { q::before, q::after, blockquote::before, blockquote::after {
content: ""; content: "";
} }

View File

@@ -26,7 +26,7 @@
--form-button-background: #EEE; --form-button-background: #EEE;
--form-button-border: var(--form-input-border); --form-button-border: var(--form-input-border);
--form-button-hover-background: #F5F5F5; --form-button-hover-background: #F5F5F5;
--form-button-hover-box-shadow: 0px 0px 2px grey; --form-button-hover-box-shadow: 0 0 2px grey;
--form-button-active-background: #DDD; --form-button-active-background: #DDD;
--form-button-active-border: var(--form-button-border); --form-button-active-border: var(--form-button-border);
--form-button-active-color: var(--form-button-text-color); --form-button-active-color: var(--form-button-text-color);
@@ -73,10 +73,10 @@
--post-tooltip-header-background-color: var(--subnav-menu-background-color); --post-tooltip-header-background-color: var(--subnav-menu-background-color);
--post-tooltip-info-color: #555; --post-tooltip-info-color: #555;
--post-tooltip-scrollbar-background: #999999; --post-tooltip-scrollbar-background: #999999;
--post-tooltip-scrollbar-border: 0px none white; --post-tooltip-scrollbar-border: 0 none white;
--post-tooltip-scrollbar-thumb-color: #AAAAAA; --post-tooltip-scrollbar-thumb-color: #AAAAAA;
--post-tooltip-scrollbar-track-background: #EEEEEE; --post-tooltip-scrollbar-track-background: #EEEEEE;
--post-tooltip-scrollbar-track-border: 0px none white; --post-tooltip-scrollbar-track-border: 0 none white;
--preview-current-post-background: rgba(0, 0, 0, 0.1); --preview-current-post-background: rgba(0, 0, 0, 0.1);
@@ -213,9 +213,6 @@
--selected-related-tag-color: white; --selected-related-tag-color: white;
} }
body[data-user-theme="light"] {
}
/* variables that aren't defined in the dark theme fall back to the :root theme */ /* variables that aren't defined in the dark theme fall back to the :root theme */
body[data-user-theme="dark"] { body[data-user-theme="dark"] {
--grey-1: #1f202c; /* hsluv(265, 15, 12.50); */ --grey-1: #1f202c; /* hsluv(265, 15, 12.50); */
@@ -324,7 +321,7 @@ body[data-user-theme="dark"] {
--form-button-background: var(--grey-5); --form-button-background: var(--grey-5);
--form-button-border: 1px solid var(--grey-4); --form-button-border: 1px solid var(--grey-4);
--form-button-hover-background: white; --form-button-hover-background: white;
--form-button-hover-box-shadow: 0px 0px 2px var(--grey-5); --form-button-hover-box-shadow: 0 0 2px var(--grey-5);
--form-button-active-background: var(--grey-5); --form-button-active-background: var(--grey-5);
--form-button-active-border: 1px solid var(--grey-5); --form-button-active-border: 1px solid var(--grey-5);
--form-button-active-color: white; --form-button-active-color: white;
@@ -337,7 +334,7 @@ body[data-user-theme="dark"] {
--jquery-ui-widget-content-text-color: var(--text-color); --jquery-ui-widget-content-text-color: var(--text-color);
--jquery-ui-widget-content-background: var(--grey-2); --jquery-ui-widget-content-background: var(--grey-2);
--jquery-ui-dialog-box-shadow: 0px 0px 8px var(--grey-1); --jquery-ui-dialog-box-shadow: 0 0 8px var(--grey-1);
--keyboard-shortcut-color: var(--text-color); --keyboard-shortcut-color: var(--text-color);
--keyboard-shortcut-background-color: var(--grey-2); --keyboard-shortcut-background-color: var(--grey-2);

View File

@@ -11,7 +11,7 @@
} }
.ui-menu-item-wrapper { .ui-menu-item-wrapper {
padding: 3px .5em 3px .4em; padding: 3px 0.5em 3px 0.4em;
a { a {
margin-right: 1em; margin-right: 1em;

View File

@@ -18,9 +18,7 @@
.removed.obsolete, .removed.obsolete a { .removed.obsolete, .removed.obsolete a {
color: var(--diff-list-obsolete-removed-color); color: var(--diff-list-obsolete-removed-color);
} }
}
.diff-list {
ins, ins a { ins, ins a {
color: var(--diff-list-added-color); color: var(--diff-list-added-color);
text-decoration: none; text-decoration: none;

View File

@@ -49,7 +49,7 @@ div.prose {
li { li {
list-style-type: disc; list-style-type: disc;
} }
pre { pre {
font-family: monospace; font-family: monospace;
font-size: 1.2em; font-size: 1.2em;

View File

@@ -19,7 +19,6 @@ kbd.key {
border: 1px solid var(--keyboard-shortcut-background-color); border: 1px solid var(--keyboard-shortcut-background-color);
padding: 1px 6px; padding: 1px 6px;
color: var(--keyboard-shortcut-color); color: var(--keyboard-shortcut-color);
/* width: 1em;*/
text-align: center; text-align: center;
display: inline-block; display: inline-block;
border-radius: 3px; border-radius: 3px;

View File

@@ -22,7 +22,7 @@
} }
div.ui-dialog { div.ui-dialog {
height: auto! important; height: auto !important;
overflow: visible; overflow: visible;
font-size: 1em; font-size: 1em;
z-index: 999 !important; z-index: 999 !important;

View File

@@ -52,7 +52,13 @@ div.clearfix {
@media (max-width: 660px) { @media (max-width: 660px) {
flex-direction: column; flex-direction: column;
#content { order: 1; padding: 0; } #content {
#sidebar { order: 2; } order: 1;
padding: 0;
}
#sidebar {
order: 2;
}
} }
} }

View File

@@ -5,7 +5,7 @@
header#top { header#top {
h1 { h1 {
font-size: 2.5em; font-size: 2.5em;
margin: 0px 30px; margin: 0 30px;
} }
menu { menu {

View File

@@ -29,7 +29,7 @@ form.simple_form {
&.text { &.text {
.hint { .hint {
padding-left: 0em; padding-left: 0;
display: block; display: block;
} }
} }

View File

@@ -2,4 +2,4 @@
.section { .section {
margin-bottom: 2em; margin-bottom: 2em;
} }
} }

View File

@@ -29,7 +29,7 @@ div.comments-for-post {
opacity: 0.3; opacity: 0.3;
&:hover { &:hover {
opacity: 1.0; opacity: 1;
} }
} }
} }
@@ -53,7 +53,7 @@ div#c-comments {
div.preview { div.preview {
position: relative; position: relative;
&:before { &::before {
@include animated-icon; @include animated-icon;
} }
} }
@@ -63,7 +63,7 @@ div#c-comments {
div.preview { div.preview {
position: relative; position: relative;
&:before { &::before {
@include sound-icon; @include sound-icon;
} }
} }

View File

@@ -2,4 +2,4 @@
textarea { textarea {
height: 10em; height: 10em;
} }
} }

View File

@@ -45,7 +45,7 @@ div#c-forum-topics {
color: var(--forum-level-restricted-topic-color); color: var(--forum-level-restricted-topic-color);
font-weight: bold; font-weight: bold;
} }
tr.forum-topic-row td:last-child { tr.forum-topic-row td:last-child {
white-space: nowrap; white-space: nowrap;
} }

View File

@@ -2,4 +2,4 @@
section { section {
margin-bottom: 2em; margin-bottom: 2em;
} }
} }

View File

@@ -9,14 +9,14 @@ $tooltip-width: 164px * 3 - 10; // 3 thumbnails wide.
} }
&::-webkit-scrollbar-button { &::-webkit-scrollbar-button {
width: 0px; width: 0;
height: 0px; height: 0;
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
background: var(--post-tooltip-scrollbar-background); background: var(--post-tooltip-scrollbar-background);
border: none; border: none;
border-radius: 0px; border-radius: 0;
} }
&::-webkit-scrollbar-thumb:hover { &::-webkit-scrollbar-thumb:hover {
@@ -30,7 +30,7 @@ $tooltip-width: 164px * 3 - 10; // 3 thumbnails wide.
&::-webkit-scrollbar-track { &::-webkit-scrollbar-track {
background: var(--post-tooltip-scrollbar-track-background); background: var(--post-tooltip-scrollbar-track-background);
border: none; border: none;
border-radius: 0px; border-radius: 0;
} }
&::-webkit-scrollbar-track:hover { &::-webkit-scrollbar-track:hover {
@@ -46,7 +46,6 @@ $tooltip-width: 164px * 3 - 10; // 3 thumbnails wide.
} }
} }
.post-tooltip { .post-tooltip {
max-width: $tooltip-width; max-width: $tooltip-width;
min-width: $tooltip-width; min-width: $tooltip-width;

View File

@@ -4,9 +4,11 @@
0% { 0% {
transform:scale(1); transform:scale(1);
} }
50% { 50% {
transform:scale(1.3); transform:scale(1.3);
} }
100% { 100% {
transform:scale(1); transform:scale(1);
} }
@@ -41,19 +43,19 @@ article.post-preview {
} }
.desc { .desc {
font-size: 80%; font-size: 80%;
margin-bottom: 0; margin-bottom: 0;
} }
img { img {
margin: auto; margin: auto;
} }
&[data-tags~=animated]:before, &[data-file-ext=swf]:before, &[data-file-ext=webm]:before, &[data-file-ext=mp4]:before, &[data-file-ext=zip]:before { &[data-tags~=animated]::before, &[data-file-ext=swf]::before, &[data-file-ext=webm]::before, &[data-file-ext=mp4]::before, &[data-file-ext=zip]::before {
@include animated-icon; @include animated-icon;
} }
&[data-has-sound=true]:before { &[data-has-sound=true]::before {
@include sound-icon; @include sound-icon;
} }
} }
@@ -89,12 +91,11 @@ table article.post-preview {
&.post-status-has-parent img { &.post-status-has-parent img {
border-color: var(--preview-has-parent-color); border-color: var(--preview-has-parent-color);
} }
&.post-status-has-children.post-status-has-parent img { &.post-status-has-children.post-status-has-parent img {
border-color: var(--preview-has-children-color) var(--preview-has-parent-color) var(--preview-has-parent-color) var(--preview-has-children-color); border-color: var(--preview-has-children-color) var(--preview-has-parent-color) var(--preview-has-parent-color) var(--preview-has-children-color);
} }
&.post-status-deleted img { &.post-status-deleted img {
border-color: var(--preview-deleted-color); border-color: var(--preview-deleted-color);
} }
@@ -111,7 +112,6 @@ table article.post-preview {
border-color: var(--preview-has-children-color) var(--preview-deleted-color) var(--preview-deleted-color) var(--preview-has-parent-color); border-color: var(--preview-has-children-color) var(--preview-deleted-color) var(--preview-deleted-color) var(--preview-has-parent-color);
} }
/* Pending and flagged posts have blue borders (except in the modqueue). */ /* Pending and flagged posts have blue borders (except in the modqueue). */
&.post-status-pending:not(.mod-queue-preview) img, &.post-status-pending:not(.mod-queue-preview) img,
&.post-status-flagged:not(.mod-queue-preview) img { &.post-status-flagged:not(.mod-queue-preview) img {
@@ -160,7 +160,7 @@ body[data-user-can-approve-posts="true"] .post-preview {
#has-parent-relationship-preview, #has-children-relationship-preview { #has-parent-relationship-preview, #has-children-relationship-preview {
overflow-x: auto; overflow-x: auto;
white-space: nowrap; white-space: nowrap;
article.post-preview { article.post-preview {
width: auto; width: auto;
border: none; border: none;
@@ -280,13 +280,13 @@ div#c-posts {
display: flex; display: flex;
input { input {
min-width: 0px; min-width: 0;
} }
#search-box-submit { #search-box-submit {
padding: 2px 6px; padding: 2px 6px;
border-left: none; border-left: none;
border-radius: 0px; border-radius: 0;
} }
} }
@@ -421,7 +421,7 @@ div#c-posts {
div#c-post-versions, div#c-artist-versions { div#c-post-versions, div#c-artist-versions {
div#a-index { div#a-index {
a { a {
word-wrap: break-word word-wrap: break-word;
} }
} }
} }

View File

@@ -19,10 +19,7 @@ div#c-user-upgrades {
width: 10em; width: 10em;
} }
colgroup#basic { colgroup#gold {
}
colgroup#gold {
background-color: var(--user-upgrade-gold-background-color); background-color: var(--user-upgrade-gold-background-color);
} }

View File

@@ -78,7 +78,7 @@
article.post-preview { article.post-preview {
float: none; float: none;
margin: 0; margin: 0;
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
display: inline-block; display: inline-block;