Project

General

Profile

Download (3.17 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 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
body {
25
    font-size: 12px;
26
    font-family: sans-serif;
27
}
28

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

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

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

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

    
47
.navbar-brand > img {
48
    max-height: 26px;
49
}
50

    
51
.navbar-brand {
52
    padding: 2px 0 0 5px;
53
    height: 30px;
54
}
55

    
56
.navbar-inverse .navbar-nav >li>a {
57
    border-bottom: 5px solid #212121;
58
    color: #fff;
59
}
60
.navbar-inverse .navbar-nav >li>a:hover{
61
    color: #ccc;
62
}
63
.text-muted {
64
    color: #BDBDBD;
65
}
66
.text-muted > a:hover {
67
    color: #ccc;
68
}
69

    
70
.nav>li>a {
71
    padding: 5px 19px 0px 19px;
72
}
73
.navbar-inverse .navbar-nav >li>a {
74
    border-bottom: 5px solid #600;
75
}
76

    
77
.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover {
78
    color: #fff;
79
    background-color: #600;
80
}
81
.nav-pills {
82
    margin-bottom: 0px;
83
}
84

    
85
.dropdown-menu>li>a {
86
    padding: 0px 20px;
87
    line-height: 26px;
88
}
89

    
90
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
91
    background-color: rgb(224, 224, 224);
92
}
93

    
94
.navbar-right>li>a {
95
    padding: 2px 15px 1px 15px;
96
}
97

    
98
.navbar-toggle {
99
    margin-top:0px;
100
    margin-bottom:0px;
101
}
102
.panel-default>.panel-heading {
103
    background-color: #900;
104
    padding: 2px 5px 2px 15px;
105
}
106

    
107
.panel-title {
108
    line-height: 18px;
109
    font-size: 12px;
110
    font-family: sans-serif;
111
    font-weight: bold;
112
}
113

    
114
.form-control {
115
    margin-bottom: 2px;
116
}
117

    
118
.form-group {
119
    padding: 2px 5px 2px 5px;
120
}
121
.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th {
122
     padding:2px;
123
}
124

    
125
.table-striped>tbody>tr:hover {
126
    background-color: rgb(224, 224, 224);
127
}
128

    
129
table.sortable-theme-bootstrap[data-sortable] {
130
    font-size: 12px;
131
    font-family: sans-serif;
132
}
133

    
134
.header .context-links {
135
    top: 1px;
136
}
137

    
138
.breadcrumb {
139
    margin-bottom: 2px;
140
    padding: 0px 15px;
141
    font-size: 14px;
142
}
143

    
144
/** Page footer */
145
.footer {
146
    height: 40px;
147
    background-color: #600;
148
}
149

    
150
.btn
151
{
152
    padding: 2px 12px;
153
}
154

    
155
.dropdown-menu {
156
	font-size:12px;
157
}
158

    
159
.form-horizontal .checkbox {
160
	padding: 2px 16px;
161
}
162

    
163
.chkboxlbl {
164
	padding-top: 0px;
165
}
166

    
167
.form-horizontal .checkbox,.form-horizontal .radio {
168
	min-height:20px;
169
}
170

    
171
@media (min-width: 768px) {
172
	.form-horizontal .control-label {
173
		padding-top: 4px;
174
	}
175
}
176
	
177
/* Experimental styles to correct vertical alignment in forms */
178
.col-sm-10 {
179
	padding-top: 0px;
180
}
(1-1/6)