Subversion Repositories oidplus

Rev

Rev 96 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 daniel-mar 1
/*
2
 * OIDplus 2.0
3
 * Copyright 2019 Daniel Marschall, ViaThinkSoft
4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at
8
 *
9
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
2 daniel-mar 17
 
96 daniel-mar 18
.wrap {
19
        /* TODO: at the top, there is a weird padding, caused by overflow-x */
20
        overflow-x: auto;
21
        margin: 0 auto;
22
        width:100%;
23
}
24
 
43 daniel-mar 25
label.padding_label {
26
        font-weight: normal !important;
27
        display: inline-block;
28
        float: left;
29
        clear: left;
30
        width: 100px;
31
        text-align: right;
32
        padding-top: 3px;
33
        margin-right: 8px;
34
}
35
 
4 daniel-mar 36
.box {
37
        width:auto !important;
38
        padding:20px;
39
        background-color:#fff;
40
        border:1px solid #ccc;
41
        border-radius:5px;
42
        margin-top:10px;
43
}
44
#titleedit {
45
        width:100%;
46
}
47
#system_title_1 {
11 daniel-mar 48
        color:#2D6A9F;
4 daniel-mar 49
}
95 daniel-mar 50
#system_title_1.mobile {
51
        margin-left:50px;
52
        padding-left:13px;
53
}
4 daniel-mar 54
#system_title_2 {
11 daniel-mar 55
        color:#2B336F;
4 daniel-mar 56
        font-size:2em;
57
}
95 daniel-mar 58
#system_title_2.mobile {
59
        margin-left:50px;
60
        padding-left:13px;
61
}
99 daniel-mar 62
a#system_title_menu {
63
        color: orange;
64
        padding: 15.3px 17px;
95 daniel-mar 65
        text-decoration: none;
99 daniel-mar 66
        font-size: 19px;
95 daniel-mar 67
        display: block;
99 daniel-mar 68
        background-color: black;
95 daniel-mar 69
        position: absolute;
70
        left: 0;
71
        top: 0;
72
}
73
 
99 daniel-mar 74
a#system_title_menu:hover {
75
        background-color: black;
76
        color: white;
77
}
78
 
79
a#system_title_menu.active {
80
        background-color: orange;
95 daniel-mar 81
        color: black;
82
}
83
 
99 daniel-mar 84
a#system_title_menu.active:hover {
85
        background-color: orange;
86
        color: white;
87
}
88
 
4 daniel-mar 89
#system_title_bar {
90
        line-height:1.75em;
2 daniel-mar 91
 
4 daniel-mar 92
        height:55px !important;
2 daniel-mar 93
 
4 daniel-mar 94
        font-style:italic;
95
        font-weight:bolder;
96
        float:left;
97
        border-bottom:1px;
2 daniel-mar 98
 
4 daniel-mar 99
        width:100%; /* brauchen wir fuer NoScript */
100
        padding-left:5px;/* brauchen wir fuer NoScript */
101
        padding-right:5px;/* brauchen wir fuer NoScript */
2 daniel-mar 102
 
4 daniel-mar 103
        padding-left:0px;
9 daniel-mar 104
        margin-left:0px;
2 daniel-mar 105
 
4 daniel-mar 106
        display:block; /* TODO: geht nicht */
2 daniel-mar 107
 
4 daniel-mar 108
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a0d8ef+0,ddf1f9+65,feffff+100 */
109
        background: #a0d8ef; /* Old browsers */
110
        background: -moz-linear-gradient(left, #a0d8ef 0%, #ddf1f9 65%, #feffff 100%); /* FF3.6-15 */
111
        background: -webkit-linear-gradient(left, #a0d8ef 0%,#ddf1f9 65%,#feffff 100%); /* Chrome10-25,Safari5.1-6 */
112
        background: linear-gradient(to right, #a0d8ef 0%,#ddf1f9 65%,#feffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
113
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0d8ef', endColorstr='#feffff',GradientType=1 ); /* IE6-9 */
95 daniel-mar 114
 
115
        overflow:hidden;
4 daniel-mar 116
}
13 daniel-mar 117
#system_title_bar a:hover, #system_title_bar a:active, #system_title_bar a:focus, #system_title_bar a:visited, #system_title_bar a:link {
4 daniel-mar 118
        text-decoration:none;
119
}
95 daniel-mar 120
#oidtree.pc {
4 daniel-mar 121
        position:absolute;
122
        left:0px;
123
        bottom:0px;
124
        padding-left:5px;/* brauchen wir fuer NoScript */
125
        padding-right:5px;/* brauchen wir fuer NoScript */
126
        top:55px; /* brauchen wir fuer NoScript */
127
        width:400px; /* brauchen wir fuer NoScript */
128
}
95 daniel-mar 129
#oidtree.mobile {
130
        display: none;
131
        margin-top:45px;
132
}
133
#content_window.mobile {
134
        padding-left:16px;
135
        padding-top:28px;
136
}
137
#content_window.pc {
4 daniel-mar 138
        position:absolute;
139
        left:400px;
140
        right:0px;
141
        bottom:0px;
142
        top:55px; /* brauchen wir fuer NoScript */
143
        padding-left:20px;
144
        padding-right:20px;
145
}
146
html {
147
        margin:0;
148
        padding:0;
149
        height:100%;
150
        font-family:Helvetica;
151
}
152
body {
153
        margin:0px;
154
        padding:0px;
155
        font-size:0.85em;
156
        height:100%;
157
}
95 daniel-mar 158
body.pc {
159
        overflow:hidden;
160
}
4 daniel-mar 161
h1 {
162
        font-size:1.8em;
163
}
11 daniel-mar 164
h2 {
165
        font-size:1.6em !important;
166
}
4 daniel-mar 167
.borderbox {
168
        overflow:auto;
169
        border:1px solid silver;
170
}
171
 
172
/**
173
 *      Splitter / uiLayout
174
 */
175
.ui-layout-pane { /* all 'panes' */
176
        border: 1px solid #BBB;
177
}
178
.ui-layout-pane-center { /* content body */
179
        padding: 0;
180
        margin:  0;
181
}
182
.ui-layout-pane-west { /* west pane */
183
        padding: 0 10px;
184
        background-color: #f9f9f9 !important;
185
        overflow: auto;
186
}
187
.ui-layout-resizer { /* all 'resizer-bars' */
188
        background: #DDD;
189
        top:55px !important; /* DM 13.03.2019 */
190
}
191
.ui-layout-resizer-open:hover { /* mouse-over */
192
        background: #9D9;
193
}
194
.ui-layout-resizer-north {
195
        background:#2b336f !important;
196
        z-index:10 !important; /* DM 13.03.30291 */
197
}
198
.ui-layout-toggler { /* all 'toggler-buttons' */
199
        background: #AAA;
2 daniel-mar 200
        }
4 daniel-mar 201
.ui-layout-toggler-closed { /* closed toggler-button */
202
        background: #CCC;
203
        border-bottom: 1px solid #BBB;
204
}
205
.ui-layout-toggler .content { /* toggler-text */
206
        font: 14px bold Verdana, Verdana, Arial, Helvetica, sans-serif;
207
}
208
.ui-layout-toggler:hover { /* mouse-over */
209
        background: #DCA;
210
}
211
.ui-layout-toggler:hover .content { /* mouse-over */
212
        color: #009;
213
}
2 daniel-mar 214
 
4 daniel-mar 215
/* masks are usually transparent - make them visible (must 'override' default) */
216
.ui-layout-mask {
6 daniel-mar 217
        background: #C00 !important;
218
        opacity: .20 !important;
219
        filter: alpha(opacity=20) !important;
4 daniel-mar 220
}
10 daniel-mar 221
 
222
/* Tabs */
223
 
224
#loginTab .tab-content {
225
        color: black;
226
        background-color: #eeeeee;
227
        padding : 5px 15px;
228
}
229
 
230
#loginTab .nav-pills > li > a {
231
        border-radius: 0;
232
}
233
 
234
#loginTab .nav-pills > li.active > a {
235
        color: black;
236
        font-weight: bold;
237
        background-color: #eeeeee;
238
}
239