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

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

quick edit for album
add language files
force default language for the toolbar
fix $_GET collision
orange save button
fix popup background color

File size: 3.6 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  position:fixed;
10  top:0;
11  left:0;
12  background:#464646;
13  background-image:linear-gradient(to bottom, #383838 0%, #464646 20%, #464646 80%, #383838 100%);
14  z-index:1000;
15}
16  #ato_header {
17    width:100%;
18  }
19  #ato_header_root {
20    padding:0;
21    margin:0;
22  }
23
24#ato_header_root li {
25  list-style:none;
26  line-height:16px;
27  font-size:13px;
28  white-space:nowrap;
29}
30  #ato_header_root li a, #ato_header_closed a {
31    display:inline-block;
32    padding:5px 10px;
33    border:none;
34    text-decoration:none;
35  }
36  #ato_header_root li a:before {
37    font-size:16px;
38    margin-right:0.5em;
39  }
40
41#ato_header_root>li {
42  float:left;
43  display:inline-block;
44  position:relative;
45  overflow:visible;
46}
47  #ato_header_root>li.right {
48    float:right;
49  }
50  #ato_header_root>li:not(:first-child) {
51    border-left:1px solid #666;
52  }
53  #ato_header_root>li:not(:last-child) {
54    border-right:1px solid #222;
55  }
56  #ato_header_root>li a, #ato_header_closed a {
57    color:#ddd;
58    text-shadow:1px 1px 0px #222;
59  }
60  #ato_header_root>li.disabled a {
61    color:#888;
62    text-shadow:none;
63  }
64  #ato_header_root>li:not(.disabled):hover, #ato_header_closed:hover {
65    background:#222;
66    background-image:linear-gradient(to bottom, #222, #353535);
67  }
68
69#ato_header_root ul {
70  display:none;
71  position:absolute;
72  top:27px;
73  left:0;
74  min-width:100%;
75  background:#fefefe;
76  padding:0;
77  margin:0;
78  box-shadow:3px 3px 5px rgba(0,0,0,0.5);
79}
80  #ato_header_root>li.right ul {
81    left:auto;
82    right:0;
83  }
84  #ato_header_root ul li {
85  }
86  #ato_header_root ul li:hover {
87    background:#dedede;
88  }
89  #ato_header_root ul li a {
90    color:#444;
91    text-shadow:1px 1px 0px #eee;
92  }
93  #ato_header_root ul label {
94    font-weight:bold;
95    color:#777;
96    display:inline-block;
97    width:80px;
98    padding:5px;
99    text-align:right;
100    font-size:11px;
101  }
102  #ato_header_root ul select, #ato_header_root ul option {
103    font-size:13px;
104    line-height:15px;
105    color:#444;
106    background:#fefefe;
107    border-radius:2px;
108  }
109    #ato_header_root ul select {
110      border:1px solid #777;
111      height:22px;
112      padding:2px 3px;
113    }
114
115#ato_header_closed {
116  left:10px;
117  font-size:20px;
118  border-radius:0 0 20% 20%;
119  box-shadow:1px 1px 1px rgba(0,0,0,0.5);
120  width:35px;
121  height:35px;
122}
123  #ato_header_closed a {
124    padding:4px;
125  }
126#ato_header_root a.close-panel {
127  padding:6px 1px 4px 5px;
128}
129#ato_header_root a.close-panel:hover {
130  color:#d00;
131}
132
133
134#ato_quick_edit {
135  padding:10px;
136}
137  #ato_quick_edit fieldset {
138    margin:0;
139    padding:0;
140    border:none;
141  }
142  #ato_quick_edit fieldset.left {
143    float:left;
144    width:100px;
145    text-align:center;
146  }
147    #ato_quick_edit fieldset.left img {
148      border-radius:2px;
149      border:1px solid #111;
150    }
151  #ato_quick_edit fieldset.main {
152    margin:0 0 0 110px;
153  }
154    #ato_quick_edit label {
155      display:block;
156      font-weight:bold;
157    }
158    #ato_quick_edit input, #ato_quick_edit textarea, #ato_quick_edit select {
159      width:100%;
160      margin:0 0 1em 0;
161      border-radius:2px;
162      padding:2px;
163      -moz-box-sizing:border-box;
164      box-sizing:border-box;
165    }
166    #ato_quick_edit textarea {
167      height:110px;
168    }
169    #ato_quick_edit input[type="submit"] {
170      margin:1.5em 0;
171      cursor:pointer;
172      background:#e60;
173      border:none;
174      color:#fff;
175    }
176      #ato_quick_edit input[type="submit"]:hover {
177        background:#EF962F;
178      }
179    #ato_quick_edit ul.token-input-list {
180      width:100%;
181      margin:0 0 1em 0;
182    }
Note: See TracBrowser for help on using the repository browser.