-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgitlab.user.styl
6040 lines (5574 loc) · 183 KB
/
gitlab.user.styl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ==UserStyle==
@name Dark-GitLab
@namespace gitlab.com/vednoc/dark-gitlab
@description Dark and light theme for GitLab and self-hosted GitLab instances.
@author vednoc <[email protected]> (https://gitlab.com/vednoc)
@homepageURL https://gitlab.com/vednoc/dark-gitlab
@supportURL https://gitlab.com/vednoc/dark-gitlab/issues
@updateURL https://gitlab.com/vednoc/dark-gitlab/raw/master/gitlab.user.styl
@preprocessor stylus
@version 2.0.0-rc.14
@license MIT
@var select cg_theme 'Base color-scheme toggle' {
'Custom colors *': 'custom',
'Dark blue (old) ': 'old-colors',
'Dark gray (new) ': 'new-colors',
'Breeze Dark ': 'breeze-dark',
'GitHub Dark ': 'github-dark',
'GitHub Dark Mode ': 'github-dark-mode',
'Gruvbox Dark Soft ': 'gruvbox-dark-soft',
'Gruvbox Dark Medium ': 'gruvbox-dark-medium',
'Gruvbox Dark Hard ': 'gruvbox-dark-hard',
'Solarized Dark ': 'solarized-dark',
'Dracula ': 'dracula',
'Nord Dark ': 'nord-dark',
'Arc Dark ': 'arc-dark',
'Moonlight ': 'moonlight',
'Monokai ': 'monokai',
'Horizon ': 'horizon',
'Doom One ': 'doom-one',
'Deep Dark ': 'deep-dark',
'Brave Dark ': 'brave-dark',
'Twilight ': 'twilight',
'Ubuntu ': 'ubuntu',
}
@var color cg_bg 'Base background color' #292929
@var color cg_fg 'Base foreground color' #e6e6e6
@var color cg_ac 'Base accent color ' #d47d3f
@var range cg_sat 'Adjust saturation of syntax colors' [0, -50, 40, 0.01]
@var range cg_lig 'Adjust lightness of syntax colors' [0, -30, 30, 0.01]
@var color _inverse 'Button inverse color ' #ffffff
@var color _shadow 'Shadow color ' #00000040
@var checkbox pcs_enable 'Apply when `(prefers-color-scheme: dark)` is enabled' 0
@var text ui_font 'Custom UI font' '"font_name"'
@var text mono_font 'Custom mono font' '"font_name"'
@var text emoji_font 'Custom emoji font' '"font_name"'
@var text a_radius 'Avatars: Custom border radius' 25%
@var range md_img_o 'Markdown: Default image opacity' [1, 0.0, 1, 0.01]
@var checkbox ic_invert 'Chromium: Invert icons in Shadow DOM' 1
@var checkbox img_invert 'Invert illustrations to dark colors' 1
@var checkbox nb_height 'Navbar: Increase height' 1
@var checkbox nb_canary 'Navbar: Show canary badge' 1
@var checkbox c_hl_none 'Code: Use theme colors for "none" syntax hl theme' 1
@var checkbox c_ide 'Code: Enable IDE styles' 1
@var checkbox c_monaco 'Code: Enable Monaco Editor styles' 1
@var checkbox pipelines 'CI/CD: Compact pipelines' 0
@var checkbox dgl_alert 'Profile: Enable Dark-GitLab announcements' 0
@var checkbox sb_enable 'Global: Enable theme scrollbars' 1
==/UserStyle== */
/*!
* NOTE: Modifying the code will put auto-update feature of Stylus on pause in
* order to preserve your local changes. That means you need to manually update
* Dark-GitLab and re-do your modifications in order to stay up-to-date.
*
* A way to add domains without modifying the code doesn't exist yet.
* Relevant issue: https://github.com/openstyles/stylus/issues/307
*
* Make sure you have the latest version before submitting bug reports.
*/
// {{{ Helpers.
t = transparent
i = !important
vendors = official
// Convert colors to HSLA format.
/// NOTE: This is done just for consistency of generated colors.
to_hsla(input) {
$h = {}
$h.hue = unquote(split('deg', '%s' % ceil(hue(input), 2))[0])
$h.saturation = ceil(saturation(input), 2)
$h.lightness = ceil(lightness(input), 2)
s('hsla(%s,%s,%s,1)', $h.hue, $h.saturation, $h.lightness)
}
// SVG-friendly colors mixin.
/// NOTE: Compiler does not like HSLA format, so we convert back to HEX.
to_svg(input) {
s('\%23%s', unquote(substr(s('%s', convert(input)), 1, 6)))
}
// Color mixin.
/// All colors: `c: fg bg bg`
/// Only border-color: `c: 0 bg`
c(x, y = 0, z = 0, xi = 1, yi = 1, zi = 1) {
if x != 0 && x != '_' { color: xi is 0 ? x : x i }
if y != 0 && y != '_' { border-color: yi is 0 ? y : y i }
if z != 0 && z != '_' { background-color: zi is 0 ? z : z i }
}
// SVG mixin.
/// Same usage as `c` mixin.
g(x, y = 0, xi = 1, yi = 1) {
if x != 0 && x != '_' { fill: xi is 0 ? x : x i }
if y != 0 && y != '_' { stroke: yi is 0 ? y : y i }
}
// Border radius mixin.
rad() { border-radius: arguments }
// Box-shadow mixin.
b() { box-shadow: arguments }
// }}}
/{ // {{{ Color generator.
// Color-scheme picker.
ColorSchemes = {
'custom': { BG: cg_bg, FG: cg_fg, AC: cg_ac }
'old-colors': { BG: #1f232a, FG: #eeeeee, AC: #7289da }
'new-colors': { BG: #292929, FG: #e6e6e6, AC: #d47d3f }
'breeze-dark': { BG: #232629, FG: #eff0f1, AC: #3daee9 }
'github-dark': { BG: #181818, FG: #e6e6e6, AC: #4f8cc9 }
'github-dark-mode': { BG: #0d1117, FG: #c9d1d9, AC: #58a6ff }
'gruvbox-dark-soft': { BG: #32302f, FG: #fbf1c7, AC: #d65d0e }
'gruvbox-dark-medium': { BG: #282828, FG: #fbf1c7, AC: #d65d0e }
'gruvbox-dark-hard': { BG: #1c2021, FG: #fbf1c7, AC: #d65d0e }
'solarized-dark': { BG: #03303c, FG: #bcc5c5, AC: #859900 }
'dracula': { BG: #282a36, FG: #f8f8f2, AC: #bd93f9 }
'nord-dark': { BG: #2e3440, FG: #eceff4, AC: #5e81ac }
'arc-dark': { BG: #343944, FG: #c1c8d1, AC: #5294e2 }
'moonlight': { BG: #1e2030, FG: #c8d3f5, AC: #82aaff }
'monokai': { BG: #272822, FG: #e8e8e3, AC: #fd9720 }
'horizon': { BG: #1c1e26, FG: #d5c1ac, AC: #E95378 }
'doom-one': { BG: #21242b, FG: #bbc2cf, AC: #51afef }
'deep-dark': { BG: #111111, FG: #eff0f1, AC: #00adee }
'brave-dark': { BG: #222222, FG: #d6d6d6, AC: #f96234 }
'twilight': { BG: #171717, FG: #f7f7f7, AC: #8f9d6a }
'ubuntu': { BG: #2c071a, FG: #f2f1ef, AC: #ef7847 }
}
// Select active color-scheme.
for color-scheme in ColorSchemes {
if (color-scheme == cg_theme) {
// main { dbg: s('%s %s', color-scheme, cg_theme) }
define('BG', ColorSchemes[color-scheme].BG, global)
define('FG', ColorSchemes[color-scheme].FG, global)
define('AC', ColorSchemes[color-scheme].AC, global)
define('ac', var(--ac), global)
}
}
// Color values and hues.
// NOTE: List with anonymous hashes.
colors = (
{ key: bg, color: BG } \
{ key: fg, color: FG } \
{ key: v0, color: AC } \
{ key: v1, hue: 0deg } \
{ key: v2, hue: 30deg } \
{ key: v3, hue: 60deg } \
{ key: v4, hue: 90deg } \
{ key: v5, hue: 180deg } \
{ key: v6, hue: 210deg } \
{ key: v7, hue: 270deg } \
{ key: v8, hue: 300deg } \
{ key: v9, hue: 0deg } \
)
// Alias colors.
$bg = colors[0]
$fg = colors[1]
// $dbg += '%s; %s; :::' % (($bg) ($fg))
// Generate background colors.
for num in 0..5 {
$color = $bg.color
if num == 1 {} // Skip base BG color.
else if num == 0 { $color = darken($color, 10%) }
else { $color = lighten($color, (num+2) * num/2%) }
$color = to_hsla($color)
$key = s('%s%s', $bg.key, num)
$val = 'var(--%s-%s)' % (($bg.key) (num))
define('$' + $key, $color, global)
define('' + $key, $val, global)
}
// Generate foreground colors.
for num in 0..5 {
$color = $fg.color
if num == 1 {} // Skip base FG color.
else if num == 0 { $color = lighten($color, 10%) }
else { $color = darken($color, (num + num/1.25) * 5%) }
$color = desaturate($color, 90%)
$color = to_hsla($color)
// $dbg += '--- FG: ' + $color
$key = s('%s%s', $fg.key, num)
$val = 'var(--%s-%s)' % (($fg.key) (num))
define('$' + $key, $color, global)
define('' + $key, $val, global)
}
// Generate all other colors.
for c, i in colors[2..length(colors)] {
// $dbg += s('::: c: %s, i: %s; ', c, i )
// if c.key == v9 { $dbg += s('::: c: %s, i: %s; ', c, i ) }
$sel = colors[i+2]
$dbg += ' ' + $sel
for num in 0..9 {
/// Case for accent colors.
if ($sel.key == v0) {
$color = darken($sel.color, (80% - ((num + num/3) * 7.5)))
$color = darken($sel.color, (100% - (num+3) * 7.5))
$color = lightness($color, lightness($color) + num)
}
/// Case for gray colors.
else if ($sel.key == v9) {
$color = hsl($sel.hue, 0%, 50% + cg_lig)
$color = darken($color, (100% - (num+2) * 17))
}
/// Case for RGB colors.
else {
$hue = $sel.hue
$color = hsl($hue, 60% + cg_sat, 60% + cg_lig)
$color = darken($color, (100% - (num+2) * 7.5))
$color = lightness($color, lightness($color) + num)
}
/// Convert to HSLA format.
$color = to_hsla($color)
$key = s('%s%s', $sel.key, num)
$val = 'var(--%s-%s)' % (($sel.key) (num))
define('$' + $key, $color, global)
define('' + $key, $val, global)
}
}
} /// }}}
@-moz-document domain('custom.domain'),
domain('invent.kde.org'),
domain('git.pleroma.social'),
domain('gitgud.io'),
domain('salsa.debian.org'),
domain('framagit.org'),
domain('repo.getmonero.org'),
domain('0xacab.org'),
domain('dev.gajim.org'),
domain('devel.trisquel.info'),
domain('git.cit.bcit.ca'),
domain('git.coop'),
domain('git.dev.ctu.univ-fcomte.fr'),
domain('git.drk.sc'),
domain('git.empiresmod.com'),
domain('git.fosscommunity.in'),
domain('git.immc.ucl.ac.be'),
domain('git.jami.net'),
domain('git.linux-kernel.at'),
domain('git.nzoss.org.nz'),
domain('git.silence.dev'),
domain('lab.libreho.st'),
domain('opencode.net'),
domain('skylab.vc.h-brs.de'),
domain('vbscan.fisica.unimib.it'),
domain('git.cardiff.ac.uk'),
domain('git.igwn.org'),
domain('git.ligo.org'),
domain('forge.tedomum.net'),
domain('git.callpipe.com'),
domain('git.happy-dev.fr'),
domain('source.ind.ie'),
domain('mau.dev'),
domain('source.puri.sm'),
domain('git.oeru.org'),
domain('git.najer.info'),
domain('gitplac.si'),
domain('git.rockylinux.org'),
regexp('^https?://(www\.)?git\.(gnu|synz)\.io(/.*)?$'),
regexp('^https?://(www\.)?code\.((videolan|briarproject)\.org|foxkit\.us)(/.*)?$'),
regexp('^https?://(www\.)?source\.(small-tech|joinmastodon)\.org(/.*)?$'),
regexp('^https?://(www\.)?git\.(drupalcode|feneas|ouru|pwmt|regardscitoyens)\.org(/.*)?$'),
regexp('^https?://(www\.)?(joonpc\.skku\.edu/gitlab|mpegx\.int-evry\.fr/software)(/.*)?$'),
regexp('^https?://(web.archive.org/web/.*)?((next|www)\.)?(gitlab\.(?!(io|biterg)).*)(/.*)?$') {
if (pcs_enable) {
{ unquote('@media (prefers-color-scheme: dark) {') }
}
// Dark-GitLab variables.
:root {
--version : '🌚 Dark-GitLab v2.0.0-rc.14';
--bshadow : 0 4px 8px var(--shadow);
--shadow : _shadow
--inverse : _inverse
--avatar : a_radius
--ac : AC
/// Custom UI font.
$fs1 = -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans'
$fs2 = 'Noto Sans', Ubuntu, Cantarell, 'Helvetica Neue', sans-serif
--ui-font: ui_font, $fs1, $fs2, sans-serif, var(--emoji-font)
/// Custom Monospace font.
$fm1 = 'Menlo', 'DejaVu Sans Mono', 'Liberation Mono', 'Consolas'
$fm2 = 'Ubuntu Mono', 'Courier New', 'andale mono', 'lucida console'
--mono-font: mono_font, $fm1, $fm2, monospace
/// Custom Emoji font.
$fe1 = 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'
--emoji-font: emoji_font, $fe1, 'Noto Color Emoji'
/// Generate CSS color variables.
colors = (bg fg v0 v1 v2 v3 v4 v5 v6 v7 v8 v9)
for color in colors[0..1] {
for tone in 0..5 {
{ '--%s-%s' % ((color) (tone)) }: $ + color + tone
}
}
for color in colors[2..length(colors)] {
for tone in 0..9 {
{ '--%s-%s' % ((color) (tone)) }: $ + color + tone
}
}
/// Colors for CI status icons in Firefox.
@supports (-moz-user-select: none) {
--svg-status-bg: var(--bg-1)
}
/// Prevents horizontal overflow. @upstream
overflow-x: hidden;
}
// Interop with new variables.
// TODO: Remove when the refactor is complete.
bb = var(--bg-0)
bg = var(--bg-1)
hl = var(--bg-2)
bd = var(--bg-5)
fg = var(--fg-1)
cm = var(--fg-4)
sh = var(--shadow)
bsh = var(--bshadow)
red = var(--v1-5)
orange = var(--v2-5)
yellow = var(--v3-5)
green = var(--v4-5)
cyan = var(--v5-5)
blue = var(--v6-5)
magenta = var(--v7-5)
violet = var(--v8-5)
white = var(--inverse);
outer = 0 0 0 1px bg5;
inner = inset outer;
/// Feat -> Set 'none' syntax preset to use theme colors.
if (c_hl_none) { c-hl-none = ', .code.none' }
// Base styles.
body {
font-family: var(--ui-font) i;
/// Default page colors.
&, &.navless { c: fg1 0 bg0 }
/// Browser styles.
a { &, &:hover { color: ac }}
hr { border-color: bg3 }
h, .h { &1, &2, &3, &4, &5, &6 { color: fg }}
time { color: inherit }
:not(pre) > code {
c: fg 0 hl 0 0 0;
box-shadow: inner;
}
pre {
c: fg bd hl 0 0 0;
/// Commits -> Messages / Details.
&[class*="description"] {
border-left-width: 4px;
font-size: 0.875rem;
c: fg2 bg5
}
/// Global -> Reset raw file content.
../ > pre:not([class]) { c: 0 0 t }
}
kbd {
rad: 3px
c: fg 0 hl;
box-shadow: inner, inset 0 -3px bg4 i
}
/// Misc link colors.
.gl-link { &, &:hover { color: ac }}
.author-link, /.branch-commit .commit-sha { color: ac }
/// Custom monospace font.
.text-monospace,
.code.diff-table,
pre, code, kbd, samp, .monospace, .ref-name,
.commit-sha, .pipeline-number, .label-branch,
.git-revision-dropdown .dropdown-content ul li a,
table.code, [class *= 'git-commit'] {
font-family: var(--mono-font) i;
}
.container { c: 0 bd }
/// Settings -> Account.
.danger-title, .gl-field-error, .invalid-feedback { c: v16 }
[class^='price-'] { c: v67 }
.warning-title { c: v26 }
.legend-success, .valid-feedback { c: v46 }
.account-well { c: fg bd hl }
/// Settings -> Fix QR code. #108
[class *= 'two-factor-auth'] svg {
c: 0 0 white;
box-shadow: 0 0 0 4px white;
}
/// Global -> Progress bar.
.progress {
c: 0 0 bg5
/// Progress bar percentage.
&-bar.bg-primary { c: 0 0 v09 }
/// Project -> Languages bar.
&.repository-languages-bar {
c: 0 0 bg3
/// Remove whitespace. #149
.progress-bar {
margin-right: unset
/// NOTE: Removing margins leaves out empty space.
&:last-child:nth-child(-n+4) { flex-grow: 1 }
}
}
/// OBSOLETE: Override old colors for languages.
[style*='#375eab'] { c: 0 0 #00ADD8 } /// Go-lang.
[style*='#776791'] { c: 0 0 #000100 } /// Crystal.
}
/// Global color reset.
.text {
&-info:not(#z) { c: v66; > svg { g: v66 }}
&-danger:not(#z) { c: v16; > svg { g: v16 }}
&-success:not(#z) { c: v46; > svg { g: v46 }}
&-warning:not(#z) { c: v26; > svg { g: v26 }}
&-plain, /.light { c: fg1 }
&-secondary, &-muted, &-gl-muted, &-tertiary,
/.cgray, /.description-block, /.help-block,
/.canary-deployment-callout-message, /// (--gray-500) Operations -> Environments.
/[class *= 'gl-text-gray-'], /.help-text, /.stat-text { /// 2: snippets -> new
c: fg4
}
}
/.bg {
&-light { c: 0 0 bd }
&-danger { c: 0 0 red }
&-danger-100 { c: 0 0 v11 }
&-secondary { c: 0 0 hl }
&-success { c: 0 0 green }
&-white, &-gray-light { c: 0 0 bg }
}
.border-bottom, .bordered-box { c: 0 bd }
/// Profile -> Calendar activities.
.bordered, .unstyled { &-list > li { c: 0 bd }}
/// Scrollbars.
if (sb_enable) {
/html { scrollbar-color: bg4 bg2 }
/::-webkit-scrollbar {
width: 12px;
&-track { background: bg2 }
&-thumb { background: bg4 }
}
}
/// Placeholders.
::placeholder { c: cm }
::-webkit-input-placeholder { c: cm }
/// Login page.
.page-wrap {
c: 0 0 t;
.brand-holder p { c: fg3 }
/// Footer styles.
hr.footer-fixed {
padding-top: 24px;
margin-bottom: 0;
c: 0 0 bg1
+ .footer-container { c: 0 0 t }
}
/// Login.
.login-box, .signup-box, .omniauth-container {
rad: 4px
c: 0 bg5 bg2
b: inner i
/.omniauth-btn {
c: 0 0 bg1
&:hover { c: 0 0 bg3 }
}
/.omniauth-divider { &::before, &::after { c: 0 bg5 }}
input.form-control { c: 0 0 bg }
}
/// Reset page height.
/.devise-layout-html body.navless { height: calc(100% - 41px) }
}
/// Global -> FA icons.
/.fa {
c: cm;
&&-triangle, &.merge-icon { c: orange }
/// Global -> Menu icon.
&&-bars:not(#z) { c: fg }
/// CI/CD -> Charts. OBSOLETE
/.legend-success &-circle,
/// Issues -> Export issues.
&.checkmark { c: green }
/// MRs -> First contribution.
&&-certificate { c: ac }
/// Settings -> CI/CD runners.
&[class *= 'paused'] { c: red }
&[class *= 'online'] { c: green }
}
/// Feat -> Invert icons in Shadow DOM.
if (ic_invert) {
@supports not (-moz-user-select: none) {
.created-icon, .opened-icon, .ic-upload,
.gl-icon[data-testid *= 'status_'], // #135
[class *= 'ci-status'] svg {
filter: invert(0.85) hue-rotate(180deg) saturate(100%);
}
/// Increase contrast for gray icons.
:not(#z) .ci-status-icon {
&-created svg, &-skipped svg { g: #333 }
}
}
} else {
/:root { --svg-status-bg : var(--dark) i }
}
/// Global -> Callouts.
.bs-callout {
rad: 4px
c: fg1 bg5 bg3
a:not(.btn) { c: ac }
strong { color: inherit i }
&-warning { c: v98 v25 v21 }
&-success { c: v98 v45 v41 }
&-danger { c: v98 v15 v11 }
&-info { c: v98 v65 v61 }
.btn-default, code:not([class]) { c: 0 0 bg }
/// Project -> Settings -> CI/CD.
&.help-callout,
&.shared-runners-description {
c: fg bd hl;
/// Reset background color.
code, .btn-default { c: 0 0 bg }
}
/// Project -> Settings -> MR promotion.
/.user-callout.promotion-callout {
c: 0 0 hl;
.bordered-box { c: 0 0 hl }
/// Project -> Settings -> Audit events.
&.center {
padding-bottom: 10px;
border: 1px solid bd;
rad: 4px;
}
/// Fix GitLab Gold trial.
&.js-gold-trial-callout > div { margin: 0 -16px }
}
/// Project -> Operations -> K8s.
&.gcp-signup-offer { c: fg blue }
}
/// Project -> Settings -> Pages.
.border-section { c: 0 bd }
/// Global -> Mobile resolution.
.scrolling-tabs-container {
.fade-right { background: linear-gradient(to left, hl 45%, t) }
.fade-left { background: linear-gradient(to right, hl 45%, t) }
}
.toggle-mobile-nav + .breadcrumbs-links { c: 0 bd }
/// Project -> Forks.
/.fork-thumbnail {
c: 0 0 bg;
&:hover:not(.disabled), &.forked { c: 0 0 hl }
}
/// Notes -> Sticky header.
.issue-sticky-header {
top: (nb_height) ? 50px i : 40px i;
c: 0 bg5 bg1
}
/// Settings -> Fix 'preview theme' borders.
.preview { &.ui-dark, &.gl-dark { c: 0 bd }}
}
/// Global -> SVG icons.
svg {
&.s16, &.s24, &.icon { g: fg3 }
/// Activity icons.
/.deleted, /.closed { &-icon svg { g: v16 }}
/.created, /.joined, /.opened { &-icon svg { g: v46 }}
/.commit, /.pushed-new, /.pushed-to { &-icon svg { g: fg4 }}
/.imported, /.commented-on, /.accepted { &-icon svg { g: v66 }}
/// CI/CD runners. #170
&[data-testid="status-active-icon"] { g: v45 }
/// Misc.
&.ic-eye-slash { g: v26 } /// Confidential issues.
&.text-success { g: v46 } /// Green checkmark.
&.text-danger { g: v16 } /// Due date.
/// Diff -> Git status icons.
&.file-addition { &, &-solid { g: v46 }}
&.file-modified { &, &-solid { g: v66 }}
&.file-deletion { &, &-solid { g: v16 }}
&[id*='addition-solid'] { g: v46 }
/// Notes -> Related isses/MRs/epics.
&.issue-token-state-icon {
&-open { g: v46 }
&-closed { g: v66 }
}
&.merge-request-status {
&.open { c: v46; g: v46 }
&.closed { c: v16; g: v16 }
}
/// Notes -> Merge icon.
&.merge-icon:not(#z) {
g: v29
filter: drop-shadow(0 0 0.5px bg2) \
drop-shadow(0 0 1px bg2) \
drop-shadow(0 0 2px bg2) i
}
/// Pipelines -> Jobs.
/// NOTE: Icons in this area are slightly problematic, so this fixes them.
&.s16[data-testid *= 'status_'] { g: currentColor }
/// CI -> Background for old icons.
/[id *= 'status_'] [fill = '#FFF'] { g: bg1 }
/// CI -> Text.
.ci-status-text {
max-width: 100%;
margin-right: 35px;
}
/// CI -> Status icons.
/.ci-status {
c: fg1 bg5 bg1 1 0
/// Badges.
&.ci {
&-failed { c: v16 v16 }
&-success { c: v46 v46 }
&-info, &-running { c: v66 v66 }
&-created, &-skipped { c: fg3 fg3 }
&-canceled, &-disabled, &-scheduled, &-manual { c: fg5 fg5 }
&-pending,
&-waiting-for-resource,
&-failed-with-warnings,
&-success-with-warnings {
c: v26 v26
}
}
/// Icons.
&-icon {
&-success {
&[class *= 'dropdown'], svg { c: 0 v46 }
&:not(#z), &[data-toggle] { svg { g: v46 }}
}
&-running, &-preparing {
&[class *= 'dropdown'], svg { c: 0 v66 }
&:not(#z), &[data-toggle] { svg { g: v66 }}
}
&-failed {
&[class *= 'dropdown'], svg { c: 0 v16 }
&:not(#z), &[data-toggle] { svg { g: v16 }}
}
&-pending, &-waiting-for-resource,
&-failed-with-warnings, &-success-with-warnings {
&[class *= 'dropdown'], svg { c: 0 v26 }
&:not(#z), &[data-toggle] { svg { g: v26 }}
}
&-created, &-skipped {
&[class *= 'dropdown'], svg { c: 0 fg3 }
&:not(#z), &[data-toggle] { svg { g: fg3 }}
}
&-manual, &-canceled, &-disabled, &-scheduled, &-not-found {
&[class *= 'dropdown'], svg { c: 0 fg5 }
&:not(#z), &[data-toggle] { svg { g: fg5 }}
}
}
/// Reset background.
/button[class *= 'ci-status-icon-'] { c: 0 0 bg1 }
}
}
// Global -> Custom checkbox/radio inputs.
input {
r = unquote
prefix = 'data:image/svg+xml;utf8,'
arrows = prefix + '<svg xmlns="http://www.w3.org/2000/svg" '
prefix += '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">'
arrows += 'width="101" height="101" view-box="0 0 101 101" preserveAspectRatio="none">'
&[type='radio'],
&[type='checkbox'] {
&:hover { box-shadow: none i }
&, &:focus, &:hover:active {
-webkit-appearance: none i
-moz-appearance: none i
appearance: none i
cursor: pointer i
height: 1rem i
width: 1rem i
border: 1px solid bg5 i
background-size: cover i
c: fg1 0 bg2
}
/// Custom checkbox/radiobox. #168
&.custom-control-input {
&:checked ~ label::before { c: 0 v08 v04 }
&:focus ~ label::before { b: 0 0 0 0.2rem v01 }
~ label::before { c: 0 bg5 bg2 }
}
}
/// Checkboxes.
&[type='radio'] {
border-radius: 100% i
&:checked {
z = '<circle cx="256" cy="256" r="128" fill="white"/>'
background-image: s("url('%s%s</svg>') %s", r(prefix), r(z), i)
&:checked { c: 0 v08 v04 }
}
}
&[type='checkbox']:checked {
z ='<path fill="white" d="M99 213l-1 89 104 102 205-201v-91L203 315 99 213z"/>'
background-image: s("url('%s%s</svg>') %s", r(prefix), r(z), i)
c: 0 v08 v04
}
&[type='checkbox']:indeterminate {
z = '<rect x="128" y="192" width="256" height="96" fill="white"/>'
background-image: s("url('%s%s</svg>') %s", r(prefix), r(z), i)
c: 0 v18 v15
}
/// Sort arrows.
/[aria-sort='ascending'] {
x = s('<path fill="%s" d="M51 1l25 23 24 22H1l25-22z"/>', to_svg($v09))
y = '<path fill="gray" opacity=".6" d="M51 101l25-23 24-22H1l25 22z"/>'
background-image: s("url('%s%s%s</svg>') %s", r(arrows), r(x), r(y), i)
}
/[aria-sort='descending'] {
x = '<path fill="gray" opacity=".6" d="M51 1l25 23 24 22H1l25-22z"/>'
y = s('<path fill="%s" d="M51 101l25-23 24-22H1l25 22z"/>', to_svg($v09))
background-image: s("url('%s%s%s</svg>') %s", r(arrows), r(x), r(y), i)
}
/// Down chevron.
/.swagger-ui select,
/.select2-arrow {
x = 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" '
x += s('viewBox="0 0 48 48" width="34" height="34" stroke="%s" ', to_svg($fg3))
x += 'stroke-width="3" stroke-linecap="round" stroke-linejoin="round" '
x += 'fill="none"><polyline points="6 9 12 15 18 9"></polyline></svg>'
background: s("url('%s') 10px 9px %s", r(x), i)
}
/// Checkmarks.
/#notifications-button + ul li .is-active,
/.dropdown-menu-selectable > .gl-new-dropdown .is-active,
/.dropdown-menu-toggle + .dropdown-menu-selectable li .is-active {
x = 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" '
x += 'viewBox="0 0 48 48" width="32" height="32" stroke-width="3" '
x += 'stroke-linecap="round" stroke-linejoin="round"><polyline '
x += s('stroke="%s" points="20 6 9 17 4 12"></polyline></svg>', to_svg($v09))
background-image: s("url('%s') %s", r(x), i)
background-position: 14px 8px
background-repeat: no-repeat
}
/// Issues -> Import CSV | Projects -> Import manifest.
&[type='file'][id] {
filter: invert(0.8) hue-rotate(180deg)
c: 0 0 t
}
}
// Admin.
/{
/// -> Performance bar.
.with-performance-bar {
.production {
c: 0 0 bg;
box-shadow: inset 0 -1px bd i;
}
/// Queries -> Rounded corners.
.backtrace-row { rad: 4px }
/// Bar -> Menu.
select {
border: 1px solid bd i;
c: fg 0 hl;
}
/// Feat -> Navbar height option.
if (nb_height) {
.layout-page, .content-wrapper { margin-top: 85px i }
}
}
}
// Global -> Navbar.
.navbar {
display: flex
align-items: center
/// Wrapper.
&-gitlab, &&-empty {
border-bottom: 1px solid bg5 i
c: 0 0 bg2
}
/// Logo.
.title {
> a {
margin: 4px 2px 4px -8px i;
&[href='/'] {
&:hover { c: 0 0 bg3 }
&:active, &:focus { c: 0 0 bg4 }
}
}
.logo-text svg { fill: fg i }
}
/// Feat -> Show canary badge.
if (!nb_canary) {
.canary-badge { display: none i }
} else {
.canary-badge > .badge { c: white green green }
}
/// Lists.
ul[class] {
c: cm;
> li {
> button, > a {
&, > svg { transition: 0.2s ease }
&[data-toggle] { c: fg3 }
&:hover:not([aria-expanded='true']) {
c: fg2 0 bg3
> svg { g: fg2 }
}
}
/// Active menus.
&.active, &.active:hover, &.show {
> button, > a {
c: fg1 0 bg4
> svg { g: fg1 }
}
}
> *:focus { c: fg2 0 bg4; svg { g: currentColor } }
.caret-down { g: cm }
.nav-link { c: fg1 }
}
/// Added in GitLab v14.0.
.top-nav-menu-item {
&:hover, &:focus { c: 0 0 bg3 }
&.active { c: 0 0 bg4 }
}
/// 'Edit status' button.
.current-user + li + li > .btn-link { c: fg3 }
}
/// Help menu.
.header-help li:first-child {
/// Divider-like margin.
> a { margin-top: 0.25rem }
/// Embed theme version.
&::before {
content: var(--version)
display: block;
padding: 4px 12px 6px;
border-bottom: 1px solid bd;
color: fg;
}
/// Added in GitLab v13.8.
/.notification-dot {
c: 0 bg2 fg3
/.show > a & { c: 0 bg4 fg1 }
/.whats-new-notification-count { c: fg1 0 bg4 }
}
}
/// User menu -> Reset avatar.
.header-user-avatar {
border: none i;
c: cm 0 t;
rad: var(--avatar);
}
/// Sign in / register.
.btn-sign-in { color: fg2 }
/// Feat -> Increase navbar height.
if (nb_height) {
min-height: 50px;
/.nav-sidebar { top: 50px }
/.layout-page, /.content-wrapper { margin-top: 50px }
/// Dropdown menu tweaks.
.show > .dropdown-menu { margin-top: 8px i }
.search-input-container .dropdown-menu { margin-top: 14px i }
}
/// 'Skip to content' button.
/.gl-accessibility:focus { c: fg 0 bd }
/// Mobile -> Toggle colors.
&-toggler {
border-left-color: bd i;
svg { g: cm }
}
/// Dark mode tweaks.
.search-form {
> form { b: none i }
&:focus-within > form { b: 0 0 0 0.2rem v63 i }
&.search-active > form { c: 0 v65 }
}
&-gitlab { box-shadow: none i }
/// Fix 'down-arrow' size. @upstream
svg.s16[data-testid='angle-down-icon'] { width: 11px }
/// Navbar -> Fix whitespace on GitLab 10.4. OBSOLETE
> div {
margin: 0 auto i
padding: 0 i
width: 100% i
display: flex i
align-items: center i
justify-content: center i
> .header-content { width: 100% }
}
}
// Global -> Tables.
table {
/// Base styles.
&:not(.code) {
c: fg1
th { c: fg1 0 bg2 }
th, td { c: 0 bg5 }
/// Reset colors.
thead { c: 0 bg5 }
tbody { c: 0 0 t }
}
/// Reset stacked tables. !41
&[class*='table-stacked'] {
thead[role='rowgroup'] th { border-top: 1px solid bg5 }
@media (max-width: 991.98px) {
tr[role='row'] > td[aria-colindex='1'] { c: 0 0 bg2 }
}
}
/// Admin -> SQL queries.
> tr {
td { c: 0 bd }
&:first-child > td { border-top: none }
}
/// AsciiDoc resets.
&.grid-all {
> caption { padding: 10px 16px; c: fg3 0 bg2 }
> tbody > tr {
/// Reset cells.
> th:first-child {
border-top: none i
border-bottom: 1px solid bg5 i
}
}
}
/// Settings -> Striped tables.
&.table-striped, &.active-tokens, &.pipeline-project-metrics {
border: 1px solid bd;
thead > tr > th { border-top: none }
tbody tr {
&:nth-of-type(2n+1) > td { c: 0 0 bg0 }
/// Analytics -> Issues.
&:not(:first-child) > td.issues-analytics-td {
&, ~ td { border-top: none i }
}
}
}