Project

General

Profile

Download (2.19 KB) Statistics
| Branch: | Tag: | Revision:
1
/*
2
 * pfSense-BETA.css
3
 *
4
 * part of pfSense (https://www.pfsense.org)
5
 * Copyright (c) 2016 Electric Sheep Fencing
6
 * Copyright (c) 2016-2020 Rubicon Communications, LLC (Netgate)
7
 * All rights reserved.
8
 *
9
 * Licensed under the Apache License, Version 2.0 (the "License");
10
 * you may not use this file except in compliance with the License.
11
 * You may obtain a copy of the License at
12
 *
13
 * http://www.apache.org/licenses/LICENSE-2.0
14
 *
15
 * Unless required by applicable law or agreed to in writing, software
16
 * distributed under the License is distributed on an "AS IS" BASIS,
17
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
 * See the License for the specific language governing permissions and
19
 * limitations under the License.
20
 */
21

    
22
@import url("/css/pfSense.css");
23

    
24
/*** Experimental Changes Go Here ***/
25

    
26
body {
27
    font-size: 12px;
28
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
29
}
30

    
31
.navbar-nav {
32
    padding: 5px 5px 0px 5px;
33
}
34

    
35
table[data-sortable].sortable-theme-bootstrap {
36
    font-size: 12px;
37
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
38
}
39

    
40
.table>tbody>tr>td {
41
    padding: 4px 4px 4px 10px;
42
}
43

    
44
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
45
    padding: 4px 5px;
46
}
47

    
48
a.fa, i.fa {
49
    font-size: 14px;
50
}
51

    
52
.breadcrumb {
53
    padding: 8px 15px;
54
    margin-bottom: 16px;
55
    font-size: 18px;
56
}
57

    
58
.nav>li>a {
59
    padding: 10px 15px 10px 15px;
60
}
61

    
62
.nav-pills {
63
    margin-bottom: 16px;
64
}
65

    
66
.dropdown-menu>li>a {
67
    padding: 3px 20px;
68
}
69

    
70
.panel-title {
71
    font-size: 14px;
72
}
73

    
74
.form-group {
75
    padding: 5px 5px 5px 5px;
76
}
77

    
78
.icon-embed-btn {
79
    padding-right: 16px;
80
    padding-bottom: 13px;
81
}
82

    
83
.panel-heading {
84
    padding: 5px 10px;
85
}
86

    
87
.ui-widget {
88
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
89
}
90

    
91
/** This style adds a gray outline around unchecked checkboxes to
92
make them more visible. Unfortunately the exact alignment of those
93
outlines varies considerably with browser/OS **/
94
input[type="checkbox"]:not(:checked) {
95
  outline: 1px solid #888888;
96
}
(4-4/7)