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

themes.less « less « ngax « webroot « Server « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90ce33d7f656a2fd1b78a1843465dda5ae35e49b (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
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
@import 'variables.less';

@tColor: #a5a5a5; // Text-color
@hColor: #609301; // Heading-color
@lColor: #2A89C0; // Link-color


h1.theme-dark,
h2.theme-dark
{
    color: @hColor;
}
body.theme-dark
{
  background-color: #1a1a1a !important;
  color: #a5a5a5;
}

body.theme-dark .footer
{
  background-color: #333333 !important;
}

body.theme-dark .header
{
  background-color: #333333 !important;
}

body.theme-dark .header a 
{
    color: @lColor;
}

body.theme-dark .body a
{
    color: @lColor;
}

body.theme-dark #mainmenu {
    background: #1a1a1a;
}

body.theme-dark .header a.hover, body.theme-dark .header a.active
{
    color: lighten(@tColor, 25%);
}

body.theme-dark .container .header .state {
    color: lighten(@hColor, 10%);
    border: 1px lighten(@hColor, 10%) solid;
}

body.theme-dark .container .header .menubutton
{
    color: @tColor;
}

body.theme-dark .state
{
    background-color: #1a1a1a !important;
}

body.theme-dark form.styled .buttons input, body.theme-dark form.styled .buttons a
{
    background: #4a5879;
}

body.theme-dark form.styled .buttons input:hover, body.theme-dark form.styled .buttons a:hover
{
    background: #6089b5;
}

body.theme-dark .button
{
    background: #4a5879;
}

body.theme-dark .button:hover
{
    background: #6089b5;
}

body.theme-dark .container .body .mainmenu>ul>li>a.active
{
  color: black;
}

body.theme-dark .container .body .content div.add .steps .step, body.theme-dark .container .body .content div.restore .steps .step
{
  color: #2780b3;
}

body.theme-dark .step3 source-folder-picker, body.theme-dark #folder_path_picker, body.theme-dark #restore_file_picker
{
  background-color: #ffffff;
}

body.theme-dark form.styled input, body.theme-dark form.styled textarea, body.theme-dark form.styled select, body.theme-dark form.styled .input.select select
{
    color: @tColor;
    background-color: #1a1a1a;
}