Welcome to mirror list, hosted at ThFree Co, Russian Federation.

themedark.scss « css « accessibility « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 685a226f1023a8573a9e700341a9405607d197a9 (plain)
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
// SCSS variables
$color-main-text: #d8d8d8;
$color-main-background: #181818;

$color-background-dark: lighten($color-main-background, 4%);
$color-background-darker: lighten($color-main-background, 8%);

$color-text-maxcontrast: darken($color-main-text, 30%);
$color-text-light: darken($color-main-text, 10%);
$color-text-lighter: darken($color-main-text, 20%);

$color-loading-light: #777;
$color-loading-dark: #ccc;

$color-box-shadow: rgba(darken($color-main-background, 70%), 0.5);

$color-border: lighten($color-main-background, 7%);
$color-border-dark: lighten($color-main-background, 14%);

// invert svg icons colors
$color-white: #000;
$color-black: #fff;

#app-navigation > ul > li > a:first-child,
#app-navigation > ul > li > ul > li > a:first-child,
#expanddiv a {
	img {
		filter: invert(100%);
	}
}
.bubble,
.app-navigation-entry-menu,
.popovermenu {
	li {
		> button,
		> a,
		> .menuitem {
			> img {
				filter: invert(100%);
			}
		}
	}
}
.bubble,
.app-navigation-entry-menu,
.popovermenu,
#header .menu {
	border: 1px solid var(--color-border);
}

// since svg icons are inverted, revert to white for the header
#header-right > * {
	[class^='icon-'], [class*=' icon-'] {
		filter: invert(100%);
	}
}