Project

General

Profile

Download (3.48 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-2024 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: 5px;
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-fixed {
97
    max-height: calc(98vh - 35px);
98
    overflow-y: auto;
99
}
100

    
101
.dropdown-menu>li>a {
102
    padding: 0px 20px;
103
    line-height: 26px;
104
}
105

    
106
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
107
    background-color: rgb(224, 224, 224);
108
}
109

    
110
.navbar-right>li>a {
111
    padding: 2px 15px 1px 15px;
112
}
113

    
114
.navbar-toggle {
115
    margin-top:0px;
116
    margin-bottom:0px;
117
}
118
.panel-default>.panel-heading {
119
    background-color: #900;
120
    padding: 2px 5px 2px 15px;
121
}
122

    
123
.panel-title {
124
    line-height: 18px;
125
    font-size: 12px;
126
    font-family: sans-serif;
127
    font-weight: bold;
128
}
129

    
130
.form-control {
131
    margin-bottom: 2px;
132
}
133

    
134
.form-group {
135
    padding: 2px 5px 2px 5px;
136
}
137

    
138
.user-duplication .controls {
139
    margin-top: 0px;
140
}
141

    
142
.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th {
143
     padding:2px;
144
}
145

    
146
.table-striped>tbody>tr:hover {
147
    background-color: rgb(224, 224, 224);
148
}
149

    
150
table.sortable-theme-bootstrap[data-sortable] {
151
    font-size: 12px;
152
    font-family: sans-serif;
153
}
154

    
155
.header .context-links {
156
    top: 1px;
157
}
158

    
159
.breadcrumb {
160
    margin-bottom: 2px;
161
    padding: 0px 15px;
162
    font-size: 14px;
163
}
164

    
165
/** Page footer */
166
.footer {
167
    height: 40px;
168
    background-color: #600;
169
}
170

    
171
.btn
172
{
173
    padding: 2px 12px;
174
}
175

    
176
.dropdown-menu {
177
	font-size:12px;
178
}
179

    
180
.form-horizontal .checkbox {
181
	padding: 2px 16px;
182
}
183

    
184
.chkboxlbl {
185
	padding-top: 0px;
186
}
187

    
188
.form-horizontal .checkbox,.form-horizontal .radio {
189
	min-height:20px;
190
}
191

    
192
@media (min-width: 768px) {
193
	.form-horizontal .control-label {
194
		padding-top: 4px;
195
	}
196
}
197

    
198
/* Experimental styles to correct vertical alignment in forms */
199
.col-sm-10 {
200
	padding-top: 0px;
201
}
(1-1/7)