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

Last change on this file since 25654 was 25654, checked in by mistic100, 10 years ago
  • add quick edit form for picture (todo: album)
  • add "Delete photo" button
File size: 3.3 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:60px;
98    padding:5px 10px;
99    text-align:right;
100  }
101  #ato_header_root ul select, #ato_header_root ul option {
102    font-size:13px;
103    line-height:15px;
104    color:#444;
105    background:#fefefe;
106    border-radius:2px;
107  }
108    #ato_header_root ul select {
109      border:1px solid #777;
110      height:22px;
111      padding:2px 3px;
112    }
113
114#ato_header_closed {
115  left:10px;
116  font-size:20px;
117  border-radius:0 0 20% 20%;
118  box-shadow:1px 1px 1px rgba(0,0,0,0.5);
119  width:35px;
120  height:35px;
121}
122  #ato_header_closed a {
123    padding:4px;
124  }
125#ato_header_root a.close-panel {
126  padding:6px 1px 4px 5px;
127}
128#ato_header_root a.close-panel:hover {
129  color:#d00;
130}
131
132
133#ato_quick_edit {
134  padding:10px;
135}
136  #ato_quick_edit fieldset {
137    margin:0;
138    padding:0;
139    border:none;
140  }
141  #ato_quick_edit fieldset.left {
142    float:left;
143    width:100px;
144    text-align:center;
145  }
146    #ato_quick_edit input[type="submit"] {
147      margin:1.5em 0;
148    }
149  #ato_quick_edit fieldset.main {
150    margin:0 0 0 110px;
151  }
152    #ato_quick_edit label {
153      display:block;
154      font-weight:bold;
155    }
156    #ato_quick_edit input, #ato_quick_edit textarea, #ato_quick_edit select {
157      width:100%;
158      margin:0 0 1em 0;
159      border-radius:2px;
160      padding:2px;
161      -moz-box-sizing:border-box;
162      box-sizing:border-box;
163    }
164    #ato_quick_edit textarea {
165      height:110px;
166    }
167    #ato_quick_edit ul.token-input-list {
168      width:100%;
169      margin:0 0 1em 0;
170    }
Note: See TracBrowser for help on using the repository browser.