1
|
/*
|
2
|
* pfSense-dark.css
|
3
|
*
|
4
|
* part of pfSense (https://www.pfsense.org)
|
5
|
* Copyright (c) 2016 Electric Sheep Fencing, LLC
|
6
|
* All rights reserved.
|
7
|
*
|
8
|
* Redistribution and use in source and binary forms, with or without
|
9
|
* modification, are permitted provided that the following conditions are met:
|
10
|
*
|
11
|
* 1. Redistributions of source code must retain the above copyright notice,
|
12
|
* this list of conditions and the following disclaimer.
|
13
|
*
|
14
|
* 2. Redistributions in binary form must reproduce the above copyright
|
15
|
* notice, this list of conditions and the following disclaimer in
|
16
|
* the documentation and/or other materials provided with the
|
17
|
* distribution.
|
18
|
*
|
19
|
* 3. All advertising materials mentioning features or use of this software
|
20
|
* must display the following acknowledgment:
|
21
|
* "This product includes software developed by the pfSense Project
|
22
|
* for use in the pfSense® software distribution. (http://www.pfsense.org/).
|
23
|
*
|
24
|
* 4. The names "pfSense" and "pfSense Project" must not be used to
|
25
|
* endorse or promote products derived from this software without
|
26
|
* prior written permission. For written permission, please contact
|
27
|
* coreteam@pfsense.org.
|
28
|
*
|
29
|
* 5. Products derived from this software may not be called "pfSense"
|
30
|
* nor may "pfSense" appear in their names without prior written
|
31
|
* permission of the Electric Sheep Fencing, LLC.
|
32
|
*
|
33
|
* 6. Redistributions of any form whatsoever must retain the following
|
34
|
* acknowledgment:
|
35
|
*
|
36
|
* "This product includes software developed by the pfSense Project
|
37
|
* for use in the pfSense software distribution (http://www.pfsense.org/).
|
38
|
*
|
39
|
* THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
|
40
|
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
41
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
42
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
|
43
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
44
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
45
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
46
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
47
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
48
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
49
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
50
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
51
|
*/
|
52
|
|
53
|
@import url("/css/pfSense.css");
|
54
|
@import url("/vendor/jquery/jquery-ui/themes/dark-hive/theme.css");
|
55
|
|
56
|
body {
|
57
|
background-color: #212121;
|
58
|
color: #ffffff;
|
59
|
}
|
60
|
|
61
|
body.no-menu {
|
62
|
background-color: #616161;
|
63
|
}
|
64
|
|
65
|
a {
|
66
|
color: #009688;
|
67
|
}
|
68
|
|
69
|
a:hover {
|
70
|
color: #00796B;
|
71
|
text-decoration: none;
|
72
|
}
|
73
|
|
74
|
h1 a:link, h1 a:visited {
|
75
|
color: #fff;
|
76
|
}
|
77
|
|
78
|
h1 a:hover, h1 a:active {
|
79
|
color: #fff;
|
80
|
text-decoration: none !important;
|
81
|
}
|
82
|
|
83
|
/** Content structure */
|
84
|
|
85
|
.contains-table table {
|
86
|
border: 1px solid #ddd;
|
87
|
}
|
88
|
|
89
|
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
|
90
|
border-color: #303030;
|
91
|
}
|
92
|
|
93
|
.table-hover>tbody>tr:hover, .table-striped>tbody>tr:nth-of-type(odd):hover {
|
94
|
background-color: #757575;
|
95
|
}
|
96
|
|
97
|
table.sortable-theme-bootstrap {
|
98
|
color: #e0e0e0 !important;
|
99
|
background-color: #212121 !important;
|
100
|
}
|
101
|
|
102
|
.table>tbody+tbody {
|
103
|
border-top: 2px solid #616161;
|
104
|
}
|
105
|
|
106
|
.dropdown-menu {
|
107
|
background-color: #000;
|
108
|
opacity: .93;
|
109
|
border-radius: 10px;
|
110
|
}
|
111
|
|
112
|
.dropdown-menu>li>a {
|
113
|
color: #e0e0e0;
|
114
|
}
|
115
|
|
116
|
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
|
117
|
background-color: #303030;
|
118
|
color: #e0e0e0;
|
119
|
}
|
120
|
|
121
|
/** Page header with title and breadcrumb */
|
122
|
.header {
|
123
|
background-color: #303030;
|
124
|
box-shadow: 1px 1px 3px #151515;
|
125
|
}
|
126
|
|
127
|
.breadcrumb {
|
128
|
background-color: #303030;
|
129
|
}
|
130
|
|
131
|
.breadcrumb>li+li:before {
|
132
|
color: #9E9E9E;
|
133
|
}
|
134
|
|
135
|
ul.context-links li a {
|
136
|
color: #009688;
|
137
|
}
|
138
|
|
139
|
/* navigation */
|
140
|
.navbar-inverse {
|
141
|
background-color: #000000;
|
142
|
}
|
143
|
|
144
|
.nav>li>a {
|
145
|
border-bottom: 5px solid #212121;
|
146
|
color: #009688;
|
147
|
}
|
148
|
|
149
|
.nav>li>a:focus, .nav>li>a:hover {
|
150
|
background-color: #212121;
|
151
|
box-shadow: 2px 2px 8px #080808;
|
152
|
border-bottom: 5px solid #009688;
|
153
|
}
|
154
|
|
155
|
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav li.open>a, .nav li.open>a:focus, .nav-pills>li.active>a:hover {
|
156
|
background-color: #212121;
|
157
|
box-shadow: 2px 2px 8px #151515;
|
158
|
border-bottom: 5px solid #009688;
|
159
|
color: #009688;
|
160
|
}
|
161
|
|
162
|
.navbar-inverse .navbar-nav >li>a {
|
163
|
border-bottom: 5px solid #000000;
|
164
|
}
|
165
|
|
166
|
.nav-tabs>li>a {
|
167
|
border-bottom: 5px solid #212121;
|
168
|
}
|
169
|
|
170
|
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover, .nav-tabs>li>a:hover {
|
171
|
border-left: 1px solid #212121;
|
172
|
border-right: 1px solid #212121;
|
173
|
border-top: 1px solid #212121;
|
174
|
border-bottom: 5px solid #009688;
|
175
|
background-color: #212121;
|
176
|
color: #009688;
|
177
|
}
|
178
|
|
179
|
.nav-tabs {
|
180
|
border-bottom: 1px solid #009688;
|
181
|
}
|
182
|
/* end navigation */
|
183
|
|
184
|
/* start common colors */
|
185
|
.alert-warning {
|
186
|
border-top: 1px solid #FFECB3;
|
187
|
}
|
188
|
|
189
|
.alert-success {
|
190
|
border-top: 1px solid #DCEDC8;
|
191
|
}
|
192
|
|
193
|
.alert-info {
|
194
|
border-top: 1px solid #B2EBF2;
|
195
|
}
|
196
|
|
197
|
.bg-primary {
|
198
|
color: #000;
|
199
|
background-color: #009688;
|
200
|
}
|
201
|
|
202
|
.bg-success {
|
203
|
color: #000;
|
204
|
background-color: #80CBC4;
|
205
|
}
|
206
|
|
207
|
.btn-default {
|
208
|
color: #ffffff;
|
209
|
background-color: #757575;
|
210
|
border-color: #212121;
|
211
|
}
|
212
|
|
213
|
.btn-default.active, .btn-default.focus, .btn-default:active, .btn-default:focus, .btn-default:hover, .open>.dropdown-toggle.btn-default {
|
214
|
color: #ffffff;
|
215
|
background-color: #424242;
|
216
|
border-color: #212121;
|
217
|
}
|
218
|
|
219
|
.btn-info {
|
220
|
background-color: #2196F3;
|
221
|
border-color: #1976D2;
|
222
|
}
|
223
|
|
224
|
.btn-info.active, .btn-info.focus, .btn-info:active, .btn-info:focus, .btn-info:hover, .open>.dropdown-toggle.btn-info {
|
225
|
background-color: #1565C0;
|
226
|
border-color: #0D47A1;
|
227
|
}
|
228
|
|
229
|
.btn-primary {
|
230
|
background-color: #009688;
|
231
|
border-color: #00796B;
|
232
|
}
|
233
|
|
234
|
.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open>.dropdown-toggle.btn-primary {
|
235
|
background-color: #00796B;
|
236
|
border-color: #00695C;
|
237
|
}
|
238
|
|
239
|
.btn-success {
|
240
|
background-color: #009688;
|
241
|
border-color: #009688;
|
242
|
}
|
243
|
|
244
|
.btn-success.active, .btn-success.focus, .btn-success:active, .btn-success:focus, .btn-success:hover, .open>.dropdown-toggle.btn-success {
|
245
|
background-color: #00796B;
|
246
|
border-color: #00796B;
|
247
|
}
|
248
|
|
249
|
.btn-danger {
|
250
|
background-color: #D32F2F;
|
251
|
border-color: #D32F2F;
|
252
|
}
|
253
|
|
254
|
.btn-danger.active, .btn-danger.focus, .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .open>.dropdown-toggle.btn-danger {
|
255
|
background-color: #C62828;
|
256
|
border-color: #B71C1C;
|
257
|
}
|
258
|
|
259
|
.btn-warning {
|
260
|
background-color: #FFA000;
|
261
|
border-color: #FF8F00;
|
262
|
}
|
263
|
|
264
|
.btn-warning.active, .btn-warning.focus, .btn-warning:active, .btn-warning:focus, .btn-warning:hover, .open>.dropdown-toggle.btn-warning {
|
265
|
background-color: #FF8F00;
|
266
|
border-color: #FF6F00;
|
267
|
}
|
268
|
|
269
|
/* end common colors */
|
270
|
|
271
|
caption {
|
272
|
color: #E0E0E0;
|
273
|
background-color: #303030;
|
274
|
}
|
275
|
|
276
|
.form-control {
|
277
|
background-color: #e0e0e0;
|
278
|
}
|
279
|
|
280
|
.form-group {
|
281
|
border-bottom: 1px solid #212121;
|
282
|
}
|
283
|
|
284
|
.panel-default>.panel-heading {
|
285
|
color: #fff;
|
286
|
background-color: #303030;
|
287
|
border-color: #212121;
|
288
|
}
|
289
|
|
290
|
.panel {
|
291
|
background-color: #424242;
|
292
|
border-color: #424242;
|
293
|
box-shadow: 0px 3px 7px rgba(0,0,0,.3);
|
294
|
}
|
295
|
|
296
|
.panel-footer {
|
297
|
background-color: #424242;
|
298
|
}
|
299
|
|
300
|
.help-block {
|
301
|
color: #eeeeee;
|
302
|
}
|
303
|
|
304
|
.checkbox label, .radio label {
|
305
|
color: #eeeeee;
|
306
|
}
|
307
|
|
308
|
.table-striped>thead {
|
309
|
background-color: #000;
|
310
|
}
|
311
|
|
312
|
.table-striped>tbody>tr:nth-of-type(odd) {
|
313
|
background-color: #303030;
|
314
|
}
|
315
|
|
316
|
.table-bordered {
|
317
|
border: 1px solid #303030;
|
318
|
}
|
319
|
|
320
|
.table-bordered>thead {
|
321
|
background-color: #000;
|
322
|
}
|
323
|
|
324
|
.table .table {
|
325
|
background-color: #424242;
|
326
|
}
|
327
|
|
328
|
/* active table row */
|
329
|
.table>tbody>tr.active>td, .table>tbody>tr.active>th, .table>tbody>tr>td.active, .table>tbody>tr>th.active, .table>tfoot>tr.active>td, .table>tfoot>tr.active>th, .table>tfoot>tr>td.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active {
|
330
|
background-color: #80CBC4;
|
331
|
color: #212121;
|
332
|
}
|
333
|
|
334
|
/* active table row on hover */
|
335
|
.table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr.active:hover>th, .table-hover>tbody>tr:hover>.active, .table-hover>tbody>tr>td.active:hover, .table-hover>tbody>tr>th.active:hover {
|
336
|
background-color: #80CBC4;
|
337
|
color: #212121;
|
338
|
}
|
339
|
|
340
|
.popover-title {
|
341
|
background-color: #424242;
|
342
|
border-bottom: 1px solid #212121;
|
343
|
}
|
344
|
|
345
|
.popover {
|
346
|
background-color: #616161;
|
347
|
}
|
348
|
|
349
|
.popover.right>.arrow:after {
|
350
|
border-right-color: #212121;
|
351
|
}
|
352
|
|
353
|
.modal-content {
|
354
|
background-color: #424242;
|
355
|
}
|
356
|
|
357
|
.modal-header, .modal-footer {
|
358
|
background-color: #303030;
|
359
|
border-color: #212121;
|
360
|
|
361
|
}
|
362
|
|
363
|
/** Page footer */
|
364
|
.footer {
|
365
|
background-color: #000;
|
366
|
}
|
367
|
|
368
|
.footer a {
|
369
|
color: #fff;
|
370
|
}
|
371
|
|
372
|
/** Homepage / dashboard */
|
373
|
.widget .panel-heading {
|
374
|
background-color: #757575;
|
375
|
}
|
376
|
|
377
|
#widgetSequence {
|
378
|
border-top: 1px solid #ddd;
|
379
|
}
|
380
|
|
381
|
a.list-group-item, .list-group-item {
|
382
|
background-color: #424242;
|
383
|
color: #e0e0e0;
|
384
|
border: 1px solid #212121;
|
385
|
}
|
386
|
|
387
|
a.list-group-item:focus, a.list-group-item:hover, .list-group-item:focus, .list-group-item:hover {
|
388
|
background-color: #303030;
|
389
|
color: #e0e0e0;
|
390
|
}
|
391
|
|
392
|
a.list-group-item .list-group-item-heading, .list-group-item .list-group-item-heading {
|
393
|
color: #EEEEEE;
|
394
|
}
|
395
|
|
396
|
.progress {
|
397
|
background-color: #e0e0e0;
|
398
|
}
|
399
|
|
400
|
.progress-bar {
|
401
|
background-color: #009688;
|
402
|
}
|
403
|
|
404
|
.icon-embed-btn
|
405
|
{
|
406
|
color: white;
|
407
|
}
|
408
|
|
409
|
/* Used when you need an icon to act as a submit button **/
|
410
|
.button-icon
|
411
|
{
|
412
|
color: #337AB7;
|
413
|
}
|
414
|
|
415
|
button.close {
|
416
|
padding: 0 4px 1px 4px;
|
417
|
border: 1px solid #6D4C41;
|
418
|
border-radius: 5px;
|
419
|
box-shadow: 1px 1px 1px #6D4C41;
|
420
|
}
|
421
|
|
422
|
.modal-header button.close {
|
423
|
border: 1px solid #fff;
|
424
|
box-shadow: 1px 1px 1px #fff;
|
425
|
color: #fff;
|
426
|
}
|
427
|
|
428
|
input, select, textarea {
|
429
|
color: #212121;
|
430
|
}
|
431
|
|
432
|
/* tree css */
|
433
|
ul.tree li A:link, ul.tree li A:hover, ul.tree li A:visited {
|
434
|
color : #ffffff;
|
435
|
}
|
436
|
|
437
|
/*sortable table*/
|
438
|
|
439
|
table[data-sortable].sortable-theme-bootstrap th[data-sorted="true"] {
|
440
|
background-color: #000;
|
441
|
color: #009688;
|
442
|
border-bottom-color: #009688;
|
443
|
}
|
444
|
|
445
|
table[data-sortable].sortable-theme-bootstrap tbody td {
|
446
|
border-top: 1px solid #303030;
|
447
|
}
|
448
|
|
449
|
textarea {
|
450
|
background-color: #bfbfbf;
|
451
|
}
|
452
|
|
453
|
/** Styling for jQuery autocomplete widget */
|
454
|
.ui-autocomplete {
|
455
|
color: #212121;
|
456
|
background-color: #e0e0e0;
|
457
|
}
|
458
|
|
459
|
/* Callouts */
|
460
|
.bs-callout {
|
461
|
padding: 10px 15px;
|
462
|
margin: 20px 0;
|
463
|
border: 1px solid #424242;
|
464
|
border-left-width: 5px;
|
465
|
border-radius: 3px;
|
466
|
font-size: 13px;
|
467
|
}
|
468
|
|
469
|
.bs-callout h4 {
|
470
|
margin-top: 0;
|
471
|
margin-bottom: 5px;
|
472
|
}
|
473
|
|
474
|
.bs-callout p:last-child {
|
475
|
margin-bottom: 0;
|
476
|
}
|
477
|
|
478
|
.bs-callout code {
|
479
|
border-radius: 3px;
|
480
|
}
|
481
|
|
482
|
.bs-callout+.bs-callout {
|
483
|
margin-top: -5px;
|
484
|
}
|
485
|
|
486
|
/* Callout contextual classes */
|
487
|
.bs-callout-default {
|
488
|
border-left-color: #777;
|
489
|
}
|
490
|
|
491
|
.bs-callout-default h4 {
|
492
|
color: #777;
|
493
|
}
|
494
|
|
495
|
.bs-callout-danger {
|
496
|
border-left-color: #d9534f;
|
497
|
}
|
498
|
|
499
|
.bs-callout-danger h4 {
|
500
|
color: #d9534f;
|
501
|
}
|
502
|
|
503
|
.bs-callout-warning {
|
504
|
border-left-color: #f0ad4e;
|
505
|
}
|
506
|
|
507
|
.bs-callout-warning h4 {
|
508
|
color: #f0ad4e;
|
509
|
}
|
510
|
|
511
|
.bs-callout-info {
|
512
|
border-left-color: #01579B;
|
513
|
}
|
514
|
|
515
|
.bs-callout-info h4 {
|
516
|
color: #01579B;
|
517
|
}
|
518
|
|
519
|
/* D3 Styles */
|
520
|
|
521
|
svg text {
|
522
|
fill: #FFFFFF !important;
|
523
|
}
|
524
|
|
525
|
g.nv-axis text, g.nv-legend text {
|
526
|
fill: #FFFFFF;
|
527
|
}
|
528
|
|
529
|
.nvd3 .nv-axis line, .nvd3 .nv-axis path {
|
530
|
fill: #616161 !important;
|
531
|
stroke: #616161 !important;
|
532
|
}
|
533
|
|
534
|
#chart .nvtooltip > h3 {
|
535
|
background-color: rgba(66,66,66, 0.9);
|
536
|
border-bottom: 1px solid #616161;
|
537
|
color: #e0e0e0;
|
538
|
}
|
539
|
|
540
|
#chart .nvtooltip {
|
541
|
background: rgba(97,97,97, 0.9);
|
542
|
color: #e0e0e0;
|
543
|
}
|