Skip to content

Commit 9244a3d

Browse files
committed
🎨 [style] Update CSS styles for various user stylesheets
- Adjusted comments for clarity in `Zwiftalizer.com-Darker-Mode.user.css` - Changed `word-wrap` to `overflow-wrap` in `ZwiftPower.comDark Mode.user.css` - Refactored color definitions to use `rgb()` with alpha in `YoutubeTV-BlackMode.user.css` - Improved layout properties using `inset` in `codemirror.css` - Added spacing in hover styles for `ZwifterBikesDarkMode.user.css` - Updated package scripts to include lint fix command in `package.json` Signed-off-by: Nick2bad4u <[email protected]>
1 parent 2e90f5e commit 9244a3d

44 files changed

Lines changed: 410 additions & 431 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CSSPortal-Dark.user.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@
138138
--bs-border-radius-pill: 50rem;
139139
--bs-box-shadow: rgb(116 120 141 / 10%) 0 5px 20px -6px;
140140
--bs-box-shadow-sm: 0 0.125rem 0.25rem
141-
rgba(var(--bs-body-color-rgb), 0.075);
141+
rgb(var(--bs-body-color-rgb), 0.075);
142142
--bs-box-shadow-lg: 0 1rem 3rem
143-
rgba(var(--bs-body-color-rgb), 0.175);
143+
rgb(var(--bs-body-color-rgb), 0.175);
144144
--bs-box-shadow-inset: inset 0 1px 2px
145-
rgba(var(--bs-body-color-rgb), 0.075);
145+
rgb(var(--bs-body-color-rgb), 0.075);
146146
--bs-form-control-bg: var(--bs-body-bg);
147147
--bs-form-control-disabled-bg: var(--bs-secondary-bg);
148148
--bs-highlight-bg: #fcf8e3;

Copilot-Microsoft-Blackmode.user.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@
1111
@-moz-document domain("copilot.microsoft.com") {
1212
/* Invert colors except images and videos */
1313
:is([data-theme='dark'] *) {
14-
/*Box model stuff*/
14+
/* Box model stuff */
1515
background-color: var(--color-black) !important;
1616
color: var(--color-white);
1717
}
1818
.backdrop-saturate-200 {
19-
/*Box model stuff*/
19+
/* Box model stuff */
2020
border: outset;
2121
border-radius: 5px !important;
2222
}
2323
.inset-0 {
2424
top: 0;
2525
right: 0;
26-
/*Positioning stuff*/
26+
/* Positioning stuff */
2727
left: 0;
28-
/*Miscellaneous*/
28+
/* Miscellaneous */
2929
/* bottom: 0; */
3030
}
3131
.rounded-full {
32-
/*Box model stuff*/
32+
/* Box model stuff */
3333
border-radius: 0;
3434
}
3535

CrystalMathLabs-BlackMode.user.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ Styles:
5252
.news,
5353
.menubar ul li ul.dropdown {
5454
background: var(--background-black) !important;
55-
background-color: var(--background-black) !important;
5655
}
5756

5857
.menubar,
@@ -61,7 +60,6 @@ Styles:
6160
#footer {
6261
border-radius: 20px;
6362
background: var(--background-dark) !important;
64-
background-color: var(--background-dark) !important;
6563
padding-right: 10px;
6664
padding-left: 10px;
6765
}
@@ -74,7 +72,6 @@ Styles:
7472
> a:hover {
7573
border-radius: 20px;
7674
background: var(--background-dark) !important;
77-
background-color: var(--background-dark) !important;
7875
padding-left: 20px;
7976
color: var(--color-green);
8077
}
@@ -93,7 +90,6 @@ Styles:
9390
input[type='text' i],
9491
#xp-calc-form button {
9592
background: var(--background-black) !important;
96-
background-color: var(--background-black) !important;
9793
color: var(--color-white);
9894
}
9995
}

DeepSeek-DarkMode.user.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
--dsr-delete-button-bg-hover: rgb(
5959
var(--ds-rgb-red-550) / 45%
6060
);
61-
6261
--ds-rgb-neutral-300: var(--light-gray);
6362
--ds-rgb-neutral-700: var(--light-gray2);
6463
--dsr-bg: var(--black);

Discord-Dark+-Default-Member-List.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ article.embedWrapper_b558d0.embedFlexGrow_b558d0.embedFull_b0068a.embed_b0068a.m
542542
background-color: var(--darkplus-bg);
543543
}
544544

545-
/*.members_cbd271 {
545+
/* .members_cbd271 {
546546
height: auto;
547547
max-height: 100vh;
548548
}
@@ -592,9 +592,9 @@ justify-content: unset;
592592
593593
.members_cbd271:hover .membersGroup-2YoqY {
594594
height: 40px;
595-
}*/
595+
} */
596596

597-
/*.membersWrap_cbd271 {
597+
/* .membersWrap_cbd271 {
598598
min-width: unset;
599599
}
600600
.membersWrap_cbd271 .members_cbd271 {

FandomDark.user.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#primaryNav > div > div.primary-links > ul,
4343
#content {
4444
background-color: #000 !important;
45+
4546
--theme-page-background-color: #000000 !important;
4647
/* Ensure body stays dark */
4748
}

GarminConnectDark.user.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@
108108
.fade,
109109
:not(.help-icon))
110110
{
111-
/*Manipulations stuff*/
111+
/* Manipulations stuff */
112112
filter: invert(1) hue-rotate(180deg);
113-
/*Box model stuff*/
113+
/* Box model stuff */
114114
border-color: var(--border);
115115
background-color: var(--inverted-background2) !important;
116-
/*Typography stuff*/
116+
/* Typography stuff */
117117
color: var(--primary-text2) !important;
118118
}
119119

Gyazo-DarkMode.user.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
--color-red: var(red-color);
4343
}
4444

45-
/* stylelint-disable selector-no-vendor-prefix -- Vendor prefixes wanted*/
45+
/* stylelint-disable selector-no-vendor-prefix -- Vendor prefixes wanted */
4646
.related-info-box-component
4747
> div
4848
> div.related-images-grid-view.related-info,

OSRSWorldHeatmap-Dark.user.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@
332332
font-size: 0.75rem;
333333
line-height: 1.5;
334334
font-family:
335-
Helvetica Neue,
335+
"Helvetica Neue",
336336
Arial,
337337
Helvetica,
338338
sans-serif;
@@ -403,7 +403,7 @@
403403
.leaflet-control-zoom-in,
404404
.leaflet-control-zoom-out {
405405
font:
406-
700 18px Lucida Console,
406+
700 18px "Lucida Console",
407407
Monaco,
408408
monospace;
409409
text-indent: 1px;
@@ -483,7 +483,6 @@
483483

484484
.leaflet-container .leaflet-control-attribution {
485485
margin: 0;
486-
background: #fff;
487486
background: #fffc;
488487
}
489488

@@ -758,7 +757,7 @@
758757
padding: 0 5px;
759758
color: #333;
760759
font:
761-
11px/1.5 Helvetica Neue,
760+
11px/1.5 "Helvetica Neue",
762761
Arial,
763762
Helvetica,
764763
sans-serif;

OsrsWikiDarkMode.user.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
* {
1818
color-scheme: dark;
19+
1920
--body-background-image: url('/images/Old_School_RuneScape_Wiki_background_darkmode.jpg?f3b60');
2021
--body-background-color: #000000;
2122
--body-main: #121212;

0 commit comments

Comments
 (0)