Subversion Repositories oidplus

Rev

Rev 95 | 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
}
62
#system_title_bar a.icon {
63
        color: white;
64
        padding: 15px 17px;
65
        text-decoration: none;
66
        font-size: 17px;
67
        display: block;
68
        background: black;
69
        position: absolute;
70
        left: 0;
71
        top: 0;
72
}
73
 
74
#system_title_bar a.icon:hover {
75
        background-color: #ddd;
76
        color: black;
77
}
78
 
4 daniel-mar 79
#system_title_bar {
80
        line-height:1.75em;
2 daniel-mar 81
 
4 daniel-mar 82
        height:55px !important;
2 daniel-mar 83
 
4 daniel-mar 84
        font-style:italic;
85
        font-weight:bolder;
86
        float:left;
87
        border-bottom:1px;
2 daniel-mar 88
 
4 daniel-mar 89
        width:100%; /* brauchen wir fuer NoScript */
90
        padding-left:5px;/* brauchen wir fuer NoScript */
91
        padding-right:5px;/* brauchen wir fuer NoScript */
2 daniel-mar 92
 
4 daniel-mar 93
        padding-left:0px;
9 daniel-mar 94
        margin-left:0px;
2 daniel-mar 95
 
4 daniel-mar 96
        display:block; /* TODO: geht nicht */
2 daniel-mar 97
 
4 daniel-mar 98
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a0d8ef+0,ddf1f9+65,feffff+100 */
99
        background: #a0d8ef; /* Old browsers */
100
        background: -moz-linear-gradient(left, #a0d8ef 0%, #ddf1f9 65%, #feffff 100%); /* FF3.6-15 */
101
        background: -webkit-linear-gradient(left, #a0d8ef 0%,#ddf1f9 65%,#feffff 100%); /* Chrome10-25,Safari5.1-6 */
102
        background: linear-gradient(to right, #a0d8ef 0%,#ddf1f9 65%,#feffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
103
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0d8ef', endColorstr='#feffff',GradientType=1 ); /* IE6-9 */
95 daniel-mar 104
 
105
        overflow:hidden;
4 daniel-mar 106
}
13 daniel-mar 107
#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 108
        text-decoration:none;
109
}
95 daniel-mar 110
#oidtree.pc {
4 daniel-mar 111
        position:absolute;
112
        left:0px;
113
        bottom:0px;
114
        padding-left:5px;/* brauchen wir fuer NoScript */
115
        padding-right:5px;/* brauchen wir fuer NoScript */
116
        top:55px; /* brauchen wir fuer NoScript */
117
        width:400px; /* brauchen wir fuer NoScript */
118
}
95 daniel-mar 119
#oidtree.mobile {
120
        display: none;
121
        margin-top:45px;
122
}
123
#content_window.mobile {
124
        padding-left:16px;
125
        padding-top:28px;
126
}
127
#content_window.pc {
4 daniel-mar 128
        position:absolute;
129
        left:400px;
130
        right:0px;
131
        bottom:0px;
132
        top:55px; /* brauchen wir fuer NoScript */
133
        padding-left:20px;
134
        padding-right:20px;
135
}
136
html {
137
        margin:0;
138
        padding:0;
139
        height:100%;
140
        font-family:Helvetica;
141
}
142
body {
143
        margin:0px;
144
        padding:0px;
145
        font-size:0.85em;
146
        height:100%;
147
}
95 daniel-mar 148
body.pc {
149
        overflow:hidden;
150
}
4 daniel-mar 151
h1 {
152
        font-size:1.8em;
153
}
11 daniel-mar 154
h2 {
155
        font-size:1.6em !important;
156
}
4 daniel-mar 157
.borderbox {
158
        overflow:auto;
159
        border:1px solid silver;
160
}
161
 
162
/**
163
 *      Splitter / uiLayout
164
 */
165
.ui-layout-pane { /* all 'panes' */
166
        border: 1px solid #BBB;
167
}
168
.ui-layout-pane-center { /* content body */
169
        padding: 0;
170
        margin:  0;
171
}
172
.ui-layout-pane-west { /* west pane */
173
        padding: 0 10px;
174
        background-color: #f9f9f9 !important;
175
        overflow: auto;
176
}
177
.ui-layout-resizer { /* all 'resizer-bars' */
178
        background: #DDD;
179
        top:55px !important; /* DM 13.03.2019 */
180
}
181
.ui-layout-resizer-open:hover { /* mouse-over */
182
        background: #9D9;
183
}
184
.ui-layout-resizer-north {
185
        background:#2b336f !important;
186
        z-index:10 !important; /* DM 13.03.30291 */
187
}
188
.ui-layout-toggler { /* all 'toggler-buttons' */
189
        background: #AAA;
2 daniel-mar 190
        }
4 daniel-mar 191
.ui-layout-toggler-closed { /* closed toggler-button */
192
        background: #CCC;
193
        border-bottom: 1px solid #BBB;
194
}
195
.ui-layout-toggler .content { /* toggler-text */
196
        font: 14px bold Verdana, Verdana, Arial, Helvetica, sans-serif;
197
}
198
.ui-layout-toggler:hover { /* mouse-over */
199
        background: #DCA;
200
}
201
.ui-layout-toggler:hover .content { /* mouse-over */
202
        color: #009;
203
}
2 daniel-mar 204
 
4 daniel-mar 205
/* masks are usually transparent - make them visible (must 'override' default) */
206
.ui-layout-mask {
6 daniel-mar 207
        background: #C00 !important;
208
        opacity: .20 !important;
209
        filter: alpha(opacity=20) !important;
4 daniel-mar 210
}
10 daniel-mar 211
 
212
/* Tabs */
213
 
214
#loginTab .tab-content {
215
        color: black;
216
        background-color: #eeeeee;
217
        padding : 5px 15px;
218
}
219
 
220
#loginTab .nav-pills > li > a {
221
        border-radius: 0;
222
}
223
 
224
#loginTab .nav-pills > li.active > a {
225
        color: black;
226
        font-weight: bold;
227
        background-color: #eeeeee;
228
}
229