source: extensions/AdminTools/template/style.css @ 26603

Last change on this file since 26603 was 26603, checked in by mistic100, 10 years ago

add "Home" (admin) link, hide <select> until they are populated

File size: 4.7 KB
Line 
1.icon-ato-null:before { content:' '; }
2
3.token-input-dropdown {
4  z-index:10000 !important;
5}
6
7#ato_header, #ato_header_closed {
8  display:none;
9}
10#ato_header {
11  width:100%;
12}
13#ato_header, #ato_header_closed:not(.smartpocket) {
14  position:fixed;
15  top:0;
16  left:0;
17  background:#464646;
18  background-image:linear-gradient(to bottom, #383838 0%, #464646 20%, #464646 80%, #383838 100%);
19  z-index:1000;
20}
21
22#ato_header>ul {
23  padding:0;
24  margin:0;
25}
26
27#ato_header>ul li {
28  list-style:none;
29  line-height:16px;
30  font-size:13px;
31  white-space:nowrap;
32}
33  #ato_header>ul li>*, #ato_header_closed:not(.smartpocket)>* {
34    display:inline-block;
35    padding:5px 10px;
36    border:none;
37    text-decoration:none;
38  }
39  #ato_header>ul li>*:before {
40    font-size:16px;
41    margin-right:0.5em;
42  }
43
44#ato_header>ul>li {
45  float:left;
46  display:inline-block;
47  position:relative;
48  overflow:visible;
49}
50  #ato_header>ul>li a {
51    color:white;
52  }
53  #ato_header>ul>li.right {
54    float:right;
55  }
56  #ato_header>ul>li {
57    border-left:1px solid #666;
58  }
59  #ato_header>ul>li {
60    border-right:1px solid #222;
61  }
62  #ato_header>ul>li>*, #ato_header_closed:not(.smartpocket)>* {
63    color:#ddd;
64    text-shadow:1px 1px 0px #222;
65  }
66  #ato_header>ul>li.disabled [class*="icon-"] {
67    color:#888;
68    text-shadow:none;
69  }
70  #ato_header>ul>li:not(.disabled):hover, #ato_header_closed:not(.smartpocket):hover {
71    background:#222;
72    background-image:linear-gradient(to bottom, #222, #353535);
73  }
74
75#ato_header>ul ul {
76  display:none;
77  position:absolute;
78  top:27px;
79  left:0;
80  min-width:100%;
81  background:#fefefe;
82  padding:0;
83  margin:0;
84  box-shadow:3px 3px 5px rgba(0,0,0,0.5);
85}
86  #ato_header>ul>li.right ul {
87    left:auto;
88    right:0;
89  }
90  #ato_header>ul ul li {
91  }
92  #ato_header>ul ul li:hover {
93    background:#dedede;
94  }
95  #ato_header>ul ul li>* {
96    color:#444;
97    text-shadow:1px 1px 0px #eee;
98  }
99  #ato_header>ul ul label {
100    font-weight:bold;
101    color:#777;
102    display:inline-block;
103    width:80px;
104    padding:5px;
105    text-align:right;
106    font-size:11px;
107  }
108  #ato_header>ul ul select, #ato_header>ul ul option {
109    font-size:13px;
110    line-height:15px;
111    color:#444;
112    background:#fefefe;
113    border-radius:2px;
114    text-shadow:none;
115  }
116    #ato_header>ul ul select {
117      border:1px solid #777;
118      height:22px;
119      padding:2px 3px;
120    }
121  #ato_header .switcher {
122    display:none;
123  }
124
125#ato_header_closed:not(.smartpocket) {
126  left:10px;
127  font-size:20px;
128  border-radius:0 0 20% 20%;
129  box-shadow:1px 1px 1px rgba(0,0,0,0.5);
130  width:35px;
131  height:35px;
132}
133  #ato_header_closed:not(.smartpocket).right {
134    left:auto;
135    right:10px;
136  }
137  #ato_header_closed:not(.smartpocket)>* {
138    padding:4px;
139  }
140#ato_header_closed.smartpocket {
141  float:left;
142  margin-right:10px;
143}
144  #ato_header_closed.smartpocket .ui-btn-inner {
145    display:none;
146  }
147
148#ato_header>ul .close-panel {
149  padding:6px 1px 4px 5px;
150}
151#ato_header>ul .close-panel:hover {
152  color:#d00;
153}
154#ato_header>ul .saved {
155  display:none;
156  border:none !important;
157  -webkit-animation:blink 0.8s infinite;
158  animation:blink 0.8s infinite;
159}
160  #ato_header>ul .saved>* {
161    color:#5f5;
162  }
163
164#ato_quick_edit {
165  padding:10px;
166}
167  #ato_quick_edit fieldset {
168    margin:0;
169    padding:0;
170    border:none;
171  }
172  #ato_quick_edit fieldset.left {
173    float:left;
174    width:100px;
175    text-align:center;
176  }
177    #ato_quick_edit fieldset.left img {
178      border-radius:2px;
179      border:1px solid #111;
180    }
181  #ato_quick_edit fieldset.main {
182    margin:0 0 0 110px;
183  }
184    #ato_quick_edit label {
185      display:block;
186      font-weight:bold;
187    }
188    #ato_quick_edit input, #ato_quick_edit textarea, #ato_quick_edit select {
189      width:100%;
190      margin:0 0 1em 0;
191      border-radius:2px;
192      padding:2px;
193      -moz-box-sizing:border-box;
194      box-sizing:border-box;
195    }
196    #ato_quick_edit textarea {
197      height:110px;
198    }
199    #ato_quick_edit input[type="submit"] {
200      margin:1.5em 0;
201      cursor:pointer;
202      background:#e60;
203      border:none;
204      color:#fff;
205    }
206      #ato_quick_edit input[type="submit"]:hover {
207        background:#EF962F;
208      }
209    #ato_quick_edit ul.token-input-list {
210      width:100%;
211      margin:0 0 1em 0;
212    }
213
214@-webkit-keyframes blink {
215  0% { opacity:0; }
216  50% { opacity:1; }
217  100% { opacity:0; }
218}
219@keyframes blink {
220  0% { opacity:0; }
221  50% { opacity:1; }
222  100% { opacity:0; }
223}
224
225@media (max-width:900px) {
226  #ato_header .ato-min-1 {
227    font-size:0px;
228    line-height:0px;
229  }
230  #ato_header .ato-min-1:before {
231    margin-right:0;
232  }
233
234  #ato_header .ato-hide-1 {
235    display:none;
236  }
237}
238
239@media (max-width:750px) {
240  #ato_header .ato-min-2 {
241    font-size:0px;
242    line-height:0px;
243  }
244  #ato_header .ato-min-2:before {
245    margin-right:0;
246  }
247
248  #ato_header .ato-hide-2 {
249    display:none;
250  }
251}
Note: See TracBrowser for help on using the repository browser.