-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathblue.css.example
More file actions
132 lines (110 loc) · 2.72 KB
/
blue.css.example
File metadata and controls
132 lines (110 loc) · 2.72 KB
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
/* Popup marker content colors */
.leaflet-popup-content-wrapper {
background-color: rgb(33, 37, 31);
color: lightgray;
}
/* Navbar colors */
nav.navbar {
background-color: dodgerblue;
color: black;
}
/* Navbar item colors */
.nav-item > a {
background-color: dodgerblue;
color: black;
}
/* Navbar title colors */
a.navbar-brand {
background-color: dodgerblue;
color: white;
}
/* Filter/Configure button colors */
.btn-sm.btn-primary,
.btn-sm.btn-primary.disabled {
background-color: dodgerblue;
}
/* Cancel button colors */
.btn-sm.btn-secondary {
background-color: gray;
}
/* Filter hide and off button colors */
.btn-sm.btn-off,
.btn-sm.btn-off .active {
background-color: gray;
color: white;
}
/* Filter show and on buttons not selected colors */
.btn-sm.btn-on {
background-color: gray;
color: white;
}
/* Filter show and on buttons selected colors */
.btn-sm.btn-on.active {
background-color: #00AF00;
color: white;
}
/* Filter sizing buttons (M/XL) - Selected */
.btn-size.active.select-button {
background-color: #0000AF;
}
/* Filter sizing buttons (M/XL) - Not Selected */
.btn-size.select-button {
background-color: gray;
}
/* Save/OK/Close button colors */
.btn-danger {
background-color: #DC3545;
}
/* Modal header colors */
.modal > .modal-dialog > .modal-content > .modal-header {
background-color: rgb(33, 37, 31);
color: white;
}
/* Modal table columns */
th {
background-color: dodgerblue;
}
/* Modal body/content colors */
.modal-body, .modal-content {
background-color: rgb(33, 37, 31);
color: white;
}
/* Modal footer colors */
.modal-footer {
background-color: rgb(33, 37, 31);
color: white;
}
/* Odd numbered row in a table */
.table-dark.table-striped tbody tr:nth-of-type(odd) {
background-color: rgb(34, 34, 34);
color: white;
}
/* Even numbered row in a table */
.table-dark.table-striped tbody tr:nth-of-type(even) {
background-color: rgb(33, 37, 41);
color: white;
}
/* Group header colors */
table.dataTable tr.dtrg-group td {
background-color: rgb(33, 37, 41);
color: white;
}
/* Close button (x) colors */
button.close {
background-color: rgb(33, 37, 31);
color: white;
}
/* Button control colors */
.leaflet-control > a {
background-color: seashell;
color: black;
}
/* Button control hover colors */
.leaflet-control > a:hover {
background-color: rgb(202, 202, 202);
color: black;
}
/* Empty space in filters */
div.DTS div.dataTables_scrollBody {
background: repeating-linear-gradient(45deg, #33361f, #33361f 10px, #21251f 10px, #21251f 20px);
}