Skip to content

Commit

Permalink
Make linter happy! 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayurifag committed Oct 23, 2022
1 parent 8d7d8e0 commit 33321d0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 35 deletions.
31 changes: 1 addition & 30 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,7 @@ extends: stylelint-config-standard
ignoreFiles: "**/*.min.css"

rules:
at-rule-empty-line-before: null
# block-no-empty: null
# block-opening-brace-space-before: null
# color-hex-case: null
# color-named: null
comment-empty-line-before: null
# comment-no-empty: null
# comment-whitespace-inside: null
# declaration-bang-space-before: null
# declaration-block-no-duplicate-properties: null
# declaration-block-single-line-max-declarations: null
# declaration-colon-newline-after: null
# font-family-name-quotes: always-where-recommended
# font-family-no-duplicate-names: true
# function-url-quotes: always
# function-comma-space-after: null
# indentation: null
# max-empty-lines: 0
# no-descending-specificity: null
# no-duplicate-selectors: null
number-leading-zero: never
# number-max-precision: 3
# number-no-trailing-zeros: true
hue-degree-notation: number
rule-empty-line-before: null
# selector-combinator-space-after: null
# selector-combinator-space-before: null
# selector-list-comma-newline-after: null
# selector-pseudo-element-colon-notation: null
# selector-type-no-unknown: null
# string-quotes: double
# value-list-comma-newline-after: null
# property-no-unknown: null
selector-class-pattern: null
12 changes: 7 additions & 5 deletions dark-svtv-org.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
--thread: #f7931a;
--opinions: #7aefff;
--translation: #2e8eff;
--selection-background: rgba(255,187,66,.27);
--selection-background: rgba(255 187 66 27%);
--backward-cards-background-color: hsla(0 0% 100% 12%);
}
html {
background-color: var(--background-primary);
Expand Down Expand Up @@ -65,7 +66,7 @@
background-color: var(--background-3);
color: var(--accent);
font-weight: 400;
opacity: .9;
opacity: 0.9;
}
.card-opinions__text {
background-color: var(--background-3);
Expand Down Expand Up @@ -245,12 +246,13 @@
background-color: var(--background-3);
color: var(--text-primary);
}
.slide-thread::after, .slide-thread::before {
.slide-thread::after,
.slide-thread::before {
background-color: var(--background-3) !important;
border-color: hsla(0,0%,100%,.12);
border-color: var(--backward-cards-background-color);
}
.slide-thread__content__footer {
color: var(--text-primary);
opacity: .5;
opacity: 0.5;
}
}

0 comments on commit 33321d0

Please sign in to comment.