Skip to content

Commit

Permalink
Fixing more stylelint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Woedenaz committed Mar 18, 2019
1 parent 1aeaa0f commit 16f5c37
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.bak
temp.css-e
.DS_Store
.stylelintrc
2 changes: 1 addition & 1 deletion .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "stylelint-config-recommended",
"extends": ["stylelint-config-prettier"],
"rules": {
"no-descending-specificity": null
}
Expand Down
6 changes: 3 additions & 3 deletions stable/styles/min/main_concat.css
Original file line number Diff line number Diff line change
Expand Up @@ -1085,9 +1085,9 @@ body {
}

div#container-wrap {
background-image: var(--diagonal-stripes)!important;
background-size: 100% 7.5rem!important;
background-repeat: no-repeat!important;
background-image: var(--diagonal-stripes) !important;
background-size: 100% 7.5rem !important;
background-repeat: no-repeat !important;
}

#header,
Expand Down
11 changes: 6 additions & 5 deletions stable/styles/nuscp.css
Original file line number Diff line number Diff line change
Expand Up @@ -951,8 +951,6 @@ div.buttons.alignleft {
zoom: unset;
background-image: none;
background-color: rgb(var(--swatch-menubg-light-color));
/* tab background */
border-color: transparent!important;
border: unset;
color: rgb(var(--swatch-text-dark));
}
Expand Down Expand Up @@ -999,7 +997,8 @@ div.buttons.alignleft {
}

.yui-navset .yui-nav li em {
border: unset!important;
/* Undoes border set by wikidot's default layout */
border: unset !important;
}

/* Selected Tab */
Expand All @@ -1019,7 +1018,8 @@ div.buttons.alignleft {

}
.yui-navset .yui-nav .selected a {
color: rgb(var(--white-monochrome))!important;
/* Undoes a color set by wikidot's default layout */
color: rgb(var(--white-monochrome)) !important;
width: 100%;
background-image: none;
}
Expand Down Expand Up @@ -1456,7 +1456,8 @@ table.wiki-content-table th {

table.wiki-content-table th,
table.wiki-content-table tr {
border: 0.0625rem solid rgba(var(--swatch-menubg-medium-dark-color),0.25)!important;
/* Override's border on wikidot's default layout */
border: 0.0625rem solid rgba(var(--swatch-menubg-medium-dark-color),0.25) !important;
}

.translation-box-stylesheet {
Expand Down
2 changes: 1 addition & 1 deletion stable/styles/nuscp.min.css

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions styles/elements.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
zoom: unset;
background-image: none;
background-color: rgb(var(--swatch-menubg-light-color));
/* tab background */
border-color: transparent!important;
border: unset;
color: rgb(var(--swatch-text-dark));
}
Expand Down Expand Up @@ -73,7 +71,8 @@
}

.yui-navset .yui-nav li em {
border: unset!important;
/* Undoes border set by wikidot's default layout */
border: unset !important;
}

/* Selected Tab */
Expand All @@ -93,7 +92,8 @@

}
.yui-navset .yui-nav .selected a {
color: rgb(var(--white-monochrome))!important;
/* Undoes a color set by wikidot's default layout */
color: rgb(var(--white-monochrome)) !important;
width: 100%;
background-image: none;
}
Expand Down Expand Up @@ -530,7 +530,8 @@ table.wiki-content-table th {

table.wiki-content-table th,
table.wiki-content-table tr {
border: 0.0625rem solid rgba(var(--swatch-menubg-medium-dark-color),0.25)!important;
/* Override's border on wikidot's default layout */
border: 0.0625rem solid rgba(var(--swatch-menubg-medium-dark-color),0.25) !important;
}

.translation-box-stylesheet {
Expand Down
4 changes: 2 additions & 2 deletions styles/normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
background-color: unset;
box-shadow: unset;
}
#search-top-box-form input[type=submit] {
#search-top-box-form input[type="submit"] {
border: unset;
border-radius: unset;
padding: unset;
Expand All @@ -132,7 +132,7 @@
box-shadow: unset;
cursor: unset;
}
#search-top-box-form input[type=submit]:hover, #search-top-box-form input[type=submit]:focus {
#search-top-box-form input[type="submit"]:hover, #search-top-box-form input[type="submit"]:focus {
border: unset;
color: unset;
text-shadow: unset;
Expand Down

0 comments on commit 16f5c37

Please sign in to comment.