Subversion Repositories oidplus

Rev

Rev 9 | 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
 
4 daniel-mar 18
.box {
19
        width:auto !important;
20
        padding:20px;
21
        background-color:#fff;
22
        border:1px solid #ccc;
23
        border-radius:5px;
24
        margin-top:10px;
25
}
26
#titleedit {
27
        width:100%;
28
}
29
#system_title_1 {
5 daniel-mar 30
        color:#337AB7;
4 daniel-mar 31
}
32
#system_title_2 {
33
        color:#2b336f;
34
        font-size:2em;
35
}
36
#system_title_bar {
37
        line-height:1.75em;
2 daniel-mar 38
 
4 daniel-mar 39
        height:55px !important;
2 daniel-mar 40
 
4 daniel-mar 41
        font-style:italic;
42
        font-weight:bolder;
43
        float:left;
44
        border-bottom:1px;
2 daniel-mar 45
 
4 daniel-mar 46
        width:100%; /* brauchen wir fuer NoScript */
47
        padding-left:5px;/* brauchen wir fuer NoScript */
48
        padding-right:5px;/* brauchen wir fuer NoScript */
2 daniel-mar 49
 
4 daniel-mar 50
        padding-left:0px;
9 daniel-mar 51
        margin-left:0px;
2 daniel-mar 52
 
4 daniel-mar 53
        display:block; /* TODO: geht nicht */
2 daniel-mar 54
 
4 daniel-mar 55
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a0d8ef+0,ddf1f9+65,feffff+100 */
56
        background: #a0d8ef; /* Old browsers */
57
        background: -moz-linear-gradient(left, #a0d8ef 0%, #ddf1f9 65%, #feffff 100%); /* FF3.6-15 */
58
        background: -webkit-linear-gradient(left, #a0d8ef 0%,#ddf1f9 65%,#feffff 100%); /* Chrome10-25,Safari5.1-6 */
59
        background: linear-gradient(to right, #a0d8ef 0%,#ddf1f9 65%,#feffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
60
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0d8ef', endColorstr='#feffff',GradientType=1 ); /* IE6-9 */
61
}
62
#system_title_bar a:hover, #title a:active, #title a:link {
63
        text-decoration:none;
64
}
65
#oidtree {
66
        position:absolute;
67
        left:0px;
68
        bottom:0px;
69
        padding-left:5px;/* brauchen wir fuer NoScript */
70
        padding-right:5px;/* brauchen wir fuer NoScript */
71
        top:55px; /* brauchen wir fuer NoScript */
72
        width:400px; /* brauchen wir fuer NoScript */
73
}
74
#content_window {
75
        position:absolute;
76
        left:400px;
77
        right:0px;
78
        bottom:0px;
79
        top:55px; /* brauchen wir fuer NoScript */
80
        padding-left:20px;
81
        padding-right:20px;
82
}
83
html {
84
        margin:0;
85
        padding:0;
86
        height:100%;
87
        font-family:Helvetica;
88
}
89
body {
90
        margin:0px;
91
        padding:0px;
92
        font-size:0.85em;
93
        height:100%;
94
        overflow: hidden;
95
}
96
h1 {
97
        font-size:1.8em;
98
}
99
.borderbox {
100
        overflow:auto;
101
        border:1px solid silver;
102
}
103
 
104
/**
105
 *      Splitter / uiLayout
106
 */
107
.ui-layout-pane { /* all 'panes' */
108
        border: 1px solid #BBB;
109
}
110
.ui-layout-pane-center { /* content body */
111
        padding: 0;
112
        margin:  0;
113
}
114
.ui-layout-pane-west { /* west pane */
115
        padding: 0 10px;
116
        background-color: #f9f9f9 !important;
117
        overflow: auto;
118
}
119
.ui-layout-resizer { /* all 'resizer-bars' */
120
        background: #DDD;
121
        top:55px !important; /* DM 13.03.2019 */
122
}
123
.ui-layout-resizer-open:hover { /* mouse-over */
124
        background: #9D9;
125
}
126
.ui-layout-resizer-north {
127
        background:#2b336f !important;
128
        z-index:10 !important; /* DM 13.03.30291 */
129
}
130
.ui-layout-toggler { /* all 'toggler-buttons' */
131
        background: #AAA;
2 daniel-mar 132
        }
4 daniel-mar 133
.ui-layout-toggler-closed { /* closed toggler-button */
134
        background: #CCC;
135
        border-bottom: 1px solid #BBB;
136
}
137
.ui-layout-toggler .content { /* toggler-text */
138
        font: 14px bold Verdana, Verdana, Arial, Helvetica, sans-serif;
139
}
140
.ui-layout-toggler:hover { /* mouse-over */
141
        background: #DCA;
142
}
143
.ui-layout-toggler:hover .content { /* mouse-over */
144
        color: #009;
145
}
2 daniel-mar 146
 
4 daniel-mar 147
/* masks are usually transparent - make them visible (must 'override' default) */
148
.ui-layout-mask {
6 daniel-mar 149
        background: #C00 !important;
150
        opacity: .20 !important;
151
        filter: alpha(opacity=20) !important;
4 daniel-mar 152
}
10 daniel-mar 153
 
154
/* Tabs */
155
 
156
#loginTab .tab-content {
157
        color: black;
158
        background-color: #eeeeee;
159
        padding : 5px 15px;
160
}
161
 
162
#loginTab .nav-pills > li > a {
163
        border-radius: 0;
164
}
165
 
166
#loginTab .nav-pills > li.active > a {
167
        color: black;
168
        font-weight: bold;
169
        background-color: #eeeeee;
170
}
171