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

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

remove font icons integrated in core + replace "OK" alert by a blinking message

File size: 4.5 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.right {
51    float:right;
52  }
53  #ato_header>ul>li:not(:first-child) {
54    border-left:1px solid #666;
55  }
56  #ato_header>ul>li:not(:last-child) {
57    border-right:1px solid #222;
58  }
59  #ato_header>ul>li>*, #ato_header_closed:not(.smartpocket)>* {
60    color:#ddd;
61    text-shadow:1px 1px 0px #222;
62  }
63  #ato_header>ul>li.disabled [class*="icon-"] {
64    color:#888;
65    text-shadow:none;
66  }
67  #ato_header>ul>li:not(.disabled):hover, #ato_header_closed:not(.smartpocket):hover {
68    background:#222;
69    background-image:linear-gradient(to bottom, #222, #353535);
70  }
71
72#ato_header>ul ul {
73  display:none;
74  position:absolute;
75  top:27px;
76  left:0;
77  min-width:100%;
78  background:#fefefe;
79  padding:0;
80  margin:0;
81  box-shadow:3px 3px 5px rgba(0,0,0,0.5);
82}
83  #ato_header>ul>li.right ul {
84    left:auto;
85    right:0;
86  }
87  #ato_header>ul ul li {
88  }
89  #ato_header>ul ul li:hover {
90    background:#dedede;
91  }
92  #ato_header>ul ul li>* {
93    color:#444;
94    text-shadow:1px 1px 0px #eee;
95  }
96  #ato_header>ul ul label {
97    font-weight:bold;
98    color:#777;
99    display:inline-block;
100    width:80px;
101    padding:5px;
102    text-align:right;
103    font-size:11px;
104  }
105  #ato_header>ul ul select, #ato_header>ul ul option {
106    font-size:13px;
107    line-height:15px;
108    color:#444;
109    background:#fefefe;
110    border-radius:2px;
111  }
112    #ato_header>ul ul select {
113      border:1px solid #777;
114      height:22px;
115      padding:2px 3px;
116    }
117
118#ato_header_closed:not(.smartpocket) {
119  left:10px;
120  font-size:20px;
121  border-radius:0 0 20% 20%;
122  box-shadow:1px 1px 1px rgba(0,0,0,0.5);
123  width:35px;
124  height:35px;
125}
126  #ato_header_closed:not(.smartpocket)>* {
127    padding:4px;
128  }
129#ato_header_closed.smartpocket {
130  float:left;
131  margin-right:10px;
132}
133  #ato_header_closed.smartpocket .ui-btn-inner {
134    display:none;
135  }
136
137#ato_header>ul .close-panel {
138  padding:6px 1px 4px 5px;
139}
140#ato_header>ul .close-panel:hover {
141  color:#d00;
142}
143#ato_header>ul .saved {
144  display:none;
145  border:none !important;
146  -webkit-animation:blink 0.8s infinite;
147  animation:blink 0.8s infinite;
148}
149  #ato_header>ul .saved>* {
150    color:#5f5;
151  }
152
153#ato_quick_edit {
154  padding:10px;
155}
156  #ato_quick_edit fieldset {
157    margin:0;
158    padding:0;
159    border:none;
160  }
161  #ato_quick_edit fieldset.left {
162    float:left;
163    width:100px;
164    text-align:center;
165  }
166    #ato_quick_edit fieldset.left img {
167      border-radius:2px;
168      border:1px solid #111;
169    }
170  #ato_quick_edit fieldset.main {
171    margin:0 0 0 110px;
172  }
173    #ato_quick_edit label {
174      display:block;
175      font-weight:bold;
176    }
177    #ato_quick_edit input, #ato_quick_edit textarea, #ato_quick_edit select {
178      width:100%;
179      margin:0 0 1em 0;
180      border-radius:2px;
181      padding:2px;
182      -moz-box-sizing:border-box;
183      box-sizing:border-box;
184    }
185    #ato_quick_edit textarea {
186      height:110px;
187    }
188    #ato_quick_edit input[type="submit"] {
189      margin:1.5em 0;
190      cursor:pointer;
191      background:#e60;
192      border:none;
193      color:#fff;
194    }
195      #ato_quick_edit input[type="submit"]:hover {
196        background:#EF962F;
197      }
198    #ato_quick_edit ul.token-input-list {
199      width:100%;
200      margin:0 0 1em 0;
201    }
202
203@-webkit-keyframes blink {
204  0% { opacity:0; }
205  50% { opacity:1; }
206  100% { opacity:0; }
207}
208@keyframes blink {
209  0% { opacity:0; }
210  50% { opacity:1; }
211  100% { opacity:0; }
212}
213
214@media (max-width:640px) {
215  #ato_header>ul li>.ato-hide-1 {
216    font-size:0px;
217    line-height:0px;
218  }
219  #ato_header>ul li>.ato-hide-1:before {
220    margin-right:0;
221  }
222}
223
224@media (max-width:500px) {
225  #ato_header>ul li>.ato-hide-2 {
226    font-size:0px;
227    line-height:0px;
228  }
229  #ato_header>ul li>.ato-hide-2:before {
230    margin-right:0;
231  }
232}
Note: See TracBrowser for help on using the repository browser.