Project

General

Profile

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

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

    
25
body {
26
    font-size: 12px;
27
    font-family: sans-serif;
28
}
29

    
30
.form-control {
31
    font-size: 12px;
32
}
33

    
34
.container.fixed {
35
    padding-top: 40px;
36
}
37

    
38
/* navigation */
39
.navbar {
40
    margin-bottom: 2px;
41
    min-height:30px;
42
}
43

    
44
.navbar-inverse {
45
    background-color: #600;
46
}
47

    
48
.navbar-brand > svg {
49
    max-width: 65px;
50
}
51
.navbar-brand > span {
52
    font-size:.5em;
53
}
54
.navbar-brand {
55
    line-height: 10px;
56
}
57

    
58
.navbar-brand > img {
59
    max-height: 26px;
60
}
61

    
62
.navbar-brand {
63
    padding: 2px 0 0 5px;
64
    height: 30px;
65
}
66

    
67
.navbar-inverse .navbar-nav >li>a {
68
    border-bottom: 5px solid #212121;
69
    color: #fff;
70
}
71
.navbar-inverse .navbar-nav >li>a:hover{
72
    color: #ccc;
73
}
74
.text-muted {
75
    color: #BDBDBD;
76
}
77
.text-muted > a:hover {
78
    color: #ccc;
79
}
80

    
81
.nav>li>a {
82
    padding: 5px 19px 0px 19px;
83
}
84
.navbar-inverse .navbar-nav >li>a {
85
    border-bottom: 5px solid #600;
86
}
87

    
88
.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover {
89
    color: #fff;
90
    background-color: #600;
91
}
92
.nav-pills {
93
    margin-bottom: 0px;
94
}
95

    
96
.dropdown-menu>li>a {
97
    padding: 0px 20px;
98
    line-height: 26px;
99
}
100

    
101
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
102
    background-color: rgb(224, 224, 224);
103
}
104

    
105
.navbar-right>li>a {
106
    padding: 2px 15px 1px 15px;
107
}
108

    
109
.navbar-toggle {
110
    margin-top:0px;
111
    margin-bottom:0px;
112
}
113
.panel-default>.panel-heading {
114
    background-color: #900;
115
    padding: 2px 5px 2px 15px;
116
}
117

    
118
.panel-title {
119
    line-height: 18px;
120
    font-size: 12px;
121
    font-family: sans-serif;
122
    font-weight: bold;
123
}
124

    
125
.form-control {
126
    margin-bottom: 2px;
127
}
128

    
129
.form-group {
130
    padding: 2px 5px 2px 5px;
131
}
132

    
133
.user-duplication .controls {
134
    margin-top: 0px;
135
}
136

    
137
.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th {
138
     padding:2px;
139
}
140

    
141
.table-striped>tbody>tr:hover {
142
    background-color: rgb(224, 224, 224);
143
}
144

    
145
table.sortable-theme-bootstrap[data-sortable] {
146
    font-size: 12px;
147
    font-family: sans-serif;
148
}
149

    
150
.header .context-links {
151
    top: 1px;
152
}
153

    
154
.breadcrumb {
155
    margin-bottom: 2px;
156
    padding: 0px 15px;
157
    font-size: 14px;
158
}
159

    
160
/** Page footer */
161
.footer {
162
    height: 40px;
163
    background-color: #600;
164
}
165

    
166
.btn
167
{
168
    padding: 2px 12px;
169
}
170

    
171
.dropdown-menu {
172
	font-size:12px;
173
}
174

    
175
.form-horizontal .checkbox {
176
	padding: 2px 16px;
177
}
178

    
179
.chkboxlbl {
180
	padding-top: 0px;
181
}
182

    
183
.form-horizontal .checkbox,.form-horizontal .radio {
184
	min-height:20px;
185
}
186

    
187
@media (min-width: 768px) {
188
	.form-horizontal .control-label {
189
		padding-top: 4px;
190
	}
191
}
192

    
193
/* Experimental styles to correct vertical alignment in forms */
194
.col-sm-10 {
195
	padding-top: 0px;
196
}
(1-1/7)