source: trunk/template/yoga/admin/default-layout.css @ 2260

Last change on this file since 2260 was 2243, checked in by patdenice, 17 years ago

Corections to respect coding conventions.
Change plugins versions to 1.8
Change 3 plugins URI.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1/* $Id: */
2BODY#theAdminPage #theHeader P {
3  display: none;
4}
5
6/* History tables */
7TABLE.table2 {
8  border: 1px solid black;
9  margin: 1em auto;
10  padding: 0;
11}
12
13TABLE.table2 TD, TABLE.table2 TH {
14  padding: 4px 8px;
15}
16
17TABLE.table2 TR {
18  text-align: left;
19}
20
21TABLE.table2 TR.throw {
22  text-align: center;
23}
24
25.hour {
26  white-space: pre;
27}
28
29.number {
30  text-align: right;
31}
32
33TABLE#dailyStats {
34  width: 60%;
35}
36
37TABLE#detailedStats {
38  width: 99%;
39}
40
41/* categoryOrdering */
42SELECT.categoryList {
43  width: 100%;
44}
45
46FORM#categoryOrdering {
47  padding-left: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
48  padding-right: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
49}
50FORM#categoryOrdering p {
51  text-align: left;
52  margin-top: 1em;
53  margin-bottom: 1em;
54}
55UL.categoryUl {
56  list-style: none;
57  padding: 0;
58  margin: 0;
59}
60
61LI.categoryLi {
62  border: 1px solid gray;
63  padding: 0px 5px;
64  margin-bottom: 5px;
65}
66
67FORM#categoryOrdering UL.categoryActions {
68  float: right;
69  margin-top: 5px;
70}
71/* */
72
73FORM#catModify TABLE { width: auto; }
74
75FIELDSET.elementEdit A {
76  display: block;
77  float: right;
78}
79
80TABLE.doubleSelect {
81  text-align: center;
82  margin: 0 auto;
83  width: 100%;
84}
85
86TABLE.doubleSelect TD {
87  padding: 0 5px;
88  width: 50%;
89}
90
91TABLE.doubleSelect SELECT.categoryList {
92  width: 100%;
93}
94
95FORM#categoryPermissions LI {
96  display:inline;
97  white-space: nowrap;
98}
99
100FIELDSET#mainConfCheck SPAN.property,
101FIELDSET#historyConf SPAN.property,
102FIELDSET#commentsConf SPAN.property {
103  float: right;
104  text-align: left;
105}
106FIELDSET#mainConfCheck INPUT,
107FIELDSET#historyConf INPUT,
108FIELDSET#commentsConf INPUT {
109  float: none;
110}
111
112FIELDSET#mainConf SPAN.property {
113  width: 25%;
114}
115FIELDSET#mainConf TEXTAREA.description {
116  width: 70%;
117}
118
119FIELDSET#mainConfCheck SPAN.property,
120FIELDSET#historyConf SPAN.property {
121  width: 90%;
122}
123FIELDSET#mainConfCheck INPUT,
124FIELDSET#historyConf INPUT {
125  margin-left: 5%;
126}
127
128FIELDSET#commentsConf SPAN.property {
129  width: 85%;
130}
131FIELDSET#commentsConf INPUT {
132  margin-left: 5%;
133}
134
135/* PWG Links Menu is fixed Graphic charts */
136.pwgmenu {
137  display: table;
138  list-style-type: none;
139  list-style-image: none; /* for firefox */
140  white-space: nowrap; 
141  position: relative;
142  text-decoration : none;
143  font-family: verdana, arial, helvetica, sans-serif;
144  font-size: 70%;
145  line-height: 1.1em;
146  width: 66em;
147  margin: 1px 8px 1px auto;
148  padding: 3px;
149  background: transparent;
150}
151.pwgmenu li {
152  float: left;
153  width: 10em !important;
154  text-align: center;
155  margin: 0 6px;
156  padding: 0;
157
158}
159.pwgmenu a {
160  width: 9em !important;
161  display: block;
162  padding: 4px 8px;
163  background: #69c; /* PWG Graphic charts */
164  color: white;
165  text-align: center; 
166  text-decoration: none;
167  font-weight: bold;
168  border: 1px solid #fff; /* Why bordered? in case of #69c background */ 
169}
170.pwgmenu a:hover {
171  background: #f92;
172  color: white;
173} /* PWG Graphic charts */
174
175
176.statBar {
177  height: 10px;
178  background-color: #66f;
179  border: 1px solid black;
180}
181
182/* Tabsheet */
183UL.tabsheet {
184  list-style: none;
185  white-space: nowrap; 
186  text-decoration: none;
187  border-bottom: 1px solid #fff;
188  margin-left: 5px; margin-right: 5px;
189  padding: 3px 5px;
190}
191
192UL.tabsheet LI {
193  display: inline;
194  margin: 0px 6px;
195  font-size: 120%;
196  font-weight: normal;
197  border: 1px solid #fff;
198  border-bottom: none;
199  padding: 3px 2em;
200}
201
202UL.tabsheet LI.selected_tab {
203  font-weight: bold;
204  position: relative;
205  top: 1px;
206  padding-top: 4px;
207}
208
209.over{
210position: relative;
211z-index: 0;
212}
213
214.over:hover{
215background-color: transparent;
216z-index: 50;
217}
218
219.over span{ /*CSS for enlarged image*/
220position: absolute;
221background-color: #eee;
222padding: 5px;
223left: -1000px;
224border: 1px solid #69c;
225visibility: hidden;
226color: black;
227text-decoration: none;
228}
229
230.over span img{ /*CSS for enlarged image*/
231border-width: 0;
232padding: 2px;
233}
234
235.over:hover span{ /*CSS for enlarged image on hover*/
236visibility: visible;
237top: 0;
238left: 60px; /*position where enlarged image should offset horizontally */
239}
Note: See TracBrowser for help on using the repository browser.