Subversion Repositories oidplus

Rev

Rev 11 | View as "text/css" | Blame | Last modification | View Log | RSS feed

  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.  */
  17.  
  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 {
  30.         color:#2D6A9F;
  31. }
  32. #system_title_2 {
  33.         color:#2B336F;
  34.         font-size:2em;
  35. }
  36. #system_title_bar {
  37.         line-height:1.75em;
  38.  
  39.         height:55px !important;
  40.  
  41.         font-style:italic;
  42.         font-weight:bolder;
  43.         float:left;
  44.         border-bottom:1px;
  45.  
  46.         width:100%; /* brauchen wir fuer NoScript */
  47.         padding-left:5px;/* brauchen wir fuer NoScript */
  48.         padding-right:5px;/* brauchen wir fuer NoScript */
  49.  
  50.         padding-left:0px;
  51.         margin-left:0px;
  52.  
  53.         display:block; /* TODO: geht nicht */
  54.  
  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, #system_title_bar a:active, #system_title_bar a:focus, #system_title_bar a:visited, #system_title_bar 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. h2 {
  100.         font-size:1.6em !important;
  101. }
  102. .borderbox {
  103.         overflow:auto;
  104.         border:1px solid silver;
  105. }
  106.  
  107. /**
  108.  *      Splitter / uiLayout
  109.  */
  110. .ui-layout-pane { /* all 'panes' */
  111.         border: 1px solid #BBB;
  112. }
  113. .ui-layout-pane-center { /* content body */
  114.         padding: 0;
  115.         margin:  0;
  116. }
  117. .ui-layout-pane-west { /* west pane */
  118.         padding: 0 10px;
  119.         background-color: #f9f9f9 !important;
  120.         overflow: auto;
  121. }
  122. .ui-layout-resizer { /* all 'resizer-bars' */
  123.         background: #DDD;
  124.         top:55px !important; /* DM 13.03.2019 */
  125. }
  126. .ui-layout-resizer-open:hover { /* mouse-over */
  127.         background: #9D9;
  128. }
  129. .ui-layout-resizer-north {
  130.         background:#2b336f !important;
  131.         z-index:10 !important; /* DM 13.03.30291 */
  132. }
  133. .ui-layout-toggler { /* all 'toggler-buttons' */
  134.         background: #AAA;
  135.         }
  136. .ui-layout-toggler-closed { /* closed toggler-button */
  137.         background: #CCC;
  138.         border-bottom: 1px solid #BBB;
  139. }
  140. .ui-layout-toggler .content { /* toggler-text */
  141.         font: 14px bold Verdana, Verdana, Arial, Helvetica, sans-serif;
  142. }
  143. .ui-layout-toggler:hover { /* mouse-over */
  144.         background: #DCA;
  145. }
  146. .ui-layout-toggler:hover .content { /* mouse-over */
  147.         color: #009;
  148. }
  149.  
  150. /* masks are usually transparent - make them visible (must 'override' default) */
  151. .ui-layout-mask {
  152.         background: #C00 !important;
  153.         opacity: .20 !important;
  154.         filter: alpha(opacity=20) !important;
  155. }
  156.  
  157. /* Tabs */
  158.  
  159. #loginTab .tab-content {
  160.         color: black;
  161.         background-color: #eeeeee;
  162.         padding : 5px 15px;
  163. }
  164.  
  165. #loginTab .nav-pills > li > a {
  166.         border-radius: 0;
  167. }
  168.  
  169. #loginTab .nav-pills > li.active > a {
  170.         color: black;
  171.         font-weight: bold;
  172.         background-color: #eeeeee;
  173. }
  174.  
  175.