annotate examples/css/admin.css @ 1090:04495bb47dc9

Update example admin stylesheet.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 26 Jan 2017 01:59:07 +0200
parents c2839190ca54
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
1 @font-face {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
2 font-family: 'Oswald';
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
3 font-style: normal;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
4 font-weight: 300;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
5 src: local('Oswald Light'), local('Oswald-Light'), url(oswald.ttf) format('truetype');
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
6 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
7
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
8 html {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
9 -webkit-backface-visibility: hidden;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
10 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
11
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
12 body {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
13 font-size: 16px;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
14 font-family: 'Oswald', sans-serif;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
15 background: black;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
16 margin: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
17 padding: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
18 color: #0f0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
19 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
20
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
21 a {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
22 color: white;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
23 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
24
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
25 a:active, a:focus {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
26 outline: none;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
27 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
28
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
29 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
30 * Message and image preview boxes
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
31 */
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
32 #messageBox {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
33 position: absolute;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
34 top: 0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
35 bottom: 0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
36 left: 0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
37 right: 0;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
38 z-index: 60;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
39 display: none;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
40 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
41
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
42 #messageBox div.messageBoxControls {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
43 text-align: right;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
44 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
45
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
46 #messageBox > div {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
47 position: absolute;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
48 z-index: 62;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
49 padding: 0.5em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
50 border-radius: 0.5em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
51 }
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
52
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
53 #messageBox div.messageBoxInner {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
54 top: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
55 left: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
56 min-width: 50%;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
57 height: auto;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
58 background: #080;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
59 border: 2px solid black;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
60 color: white;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
61 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
62
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
63 #messageBox div.imageBoxInner {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
64 top: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
65 left: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
66 background: #444;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
67 border: 2px solid black;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
68 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
69
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
70 #messageBox div.imageBoxInner img {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
71 position: relative;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
72 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
73
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
74
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
75 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
76 * Administration popup box
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
77 */
474
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
78 #adminPopup {
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
79 position: absolute;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
80 top: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
81 bottom: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
82 left: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
83 right: 0px;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
84 z-index: 50;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
85 display: none;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
86 }
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
87
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
88 #adminPopup > div {
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
89 position: absolute;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
90 top: 25%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
91 left: 10%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
92 height: auto;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
93 min-width: 80%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
94 max-width: 80%;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
95 z-index: 52;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
96 background: black;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
97 border: 1px solid green;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
98 padding: 1.5em;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
99
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
100 border-radius: 1em;
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
101 }
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
102
481
259dd7eae46d Make the show mode selector look nicer.
Matti Hamalainen <ccr@tnsp.org>
parents: 475
diff changeset
103
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
104 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
105 * Page tabs / tab headers
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
106 */
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
107 #tabHeadersCC {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
108 position: relative;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
109 top: 0.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
110 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
111 right: 0;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
112 height: 3em;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
113
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
114 z-index: 10;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
115 margin: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
116 padding-left: 1em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
117 background: #440;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
118 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
120
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
121 div.tabHeadersSub {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
122 font-size: 1em;
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
123 line-height: 2.7em;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
124 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
125
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
126 div.tabHeadersSub a, div.ctrlModeControls a {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
127 z-index: 15;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
128 text-decoration: none;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
129 padding-left: 0.25em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
130 padding-right: 0.25em;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
131 background: #060;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
132 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
133 border-radius: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
134
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
135 white-space: nowrap;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
136 display: inline-block;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
137 margin-bottom: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
138 min-width: 6em;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
139 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
140
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
141 #tabHeadersCC a.active, div.tabHeaders a.active, div.tabHeadersSub a.active {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
142 background: #800;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
143 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
144
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
145 #tabHeadersCC a.inactive, div.tabHeaders a.inactive, div.tabHeadersSub a.inactive {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
146 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
147
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
148 #tabHeadersCC a {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
149 position: relative;
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
150 display: inline-block;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
151 z-index: 15;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
152 padding: 0.5em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
153 text-decoration: none;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
154 background: #060;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
156 border-top-left-radius: 0.2em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
157 border-top-right-radius: 0.2em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
158 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
159
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
160 #tabHeadersCC a:hover, div.tabHeadersSub a:hover, div.ctrlModeControls a:hover {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
161 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
162 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
163
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
164 #tabHeadersCC a:active, div.tabHeadersSub a:active {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
165 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
166 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
167
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
168 #tabHeadersCC a.admin {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
169 right: -5em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
170 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
171
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
172
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
173 div.tabContents {
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
174 position: absolute;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
175 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
176 right: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
177 top: 4.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
178 bottom: 0;
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
179 padding: 1em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
180 margin: 0px;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
181 overflow-y: scroll;
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
182 }
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
183
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
184
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
185 span.cnotice {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
186 font-weight: bold;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
187 color: #f00;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
188 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
189
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
190 #adminContent {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
191 position: absolute;
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
192 top: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
193 bottom: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
194 left: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
195 right: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
196 padding: 0;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
197 margin: 0;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
198 }
279
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
199
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
200
279
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
201 div.info {
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
202 padding: 1em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
203 background: black;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
204 border-radius: 0.7em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
205 border: 0.2em solid rgba(255,0,0,0.6);
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
206 }
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
207
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
208
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
209 div.votekey {
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
210 display: inline-block;
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
211 width: 8em;
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
212
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
213 margin: 0px;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
214 text-align: center;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
215 padding: 0.5em;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
216 background: black;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
217
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
218 border-right: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
219 border-bottom: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
220 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
221
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
222 div.votekey span.keyid {
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
223 font-weight: bold;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
224 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
225
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
226 div.votekey:hover, tr.votekey:hover td {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
227 background: #800;
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
228 }
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
229
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
230 div.vkeyActive, tr.vkeyActive {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
231 background: #044;
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
232 }
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
233
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
234 .vkeyUsed {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
235 color: #0f0;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
236 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
237
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
238 .vkeyUnused {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
239 color: red;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
240 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
241
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
242
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
243 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
244 * Compo/infoscreen controls
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
245 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
246 div.ctrlModeControls input[type="radio"] {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
247 display: none;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
248 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
249
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
250 div.ctrlModeControls input[type="radio"] + label:before {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
251 content: "O";
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
252 display: inline-block;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
253 color: green;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
254 font-size: 1.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
255 margin-right: 0.15em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
256 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
257
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
258 div.ctrlModeControls input[type="radio"]:checked + label:before {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
259 content: "X";
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
260 display: inline-block;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
261 color: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
262 font-weight: bold;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
263 font-size: 1.5em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
264 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
265
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
266 div.ctrlModeControls input[type="radio"]:checked + label {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
267 color: white;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
268 font-weight: bold;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
269 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
270
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
271
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
272 div.ctrlModeControls, #ctrlSystemControls {
378
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
273 border: 2px solid green;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
274 padding: 0.5em;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
275 border-radius: 0.5em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
276 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
277 margin: 0.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
278 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
279
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
280
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
281 #ctrlEditDisplaySlide {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
282 position: absolute;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
283 top: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
284 min-width: 25%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
285 height: auto;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
286 left: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
287 min-width: 50%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
288 z-index: 52;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
289
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
290 display: none;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
291 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
292
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
293 div.ctrlTitle {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
294 font-size: 1.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
295 font-weight: bold;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
296 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
297
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
298 div.ctrlBox {
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
299 position: relative;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
300 display: inline-block;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
301 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
302 border: 2px solid green;
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
303 padding: 0.5em;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
304 border-radius: 0.5em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
305 min-height: 12em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
306 vertical-align: top;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
307 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
308
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
309 div.ctrlButtons {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
310 padding: 0.3em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
311 text-align: right;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
312 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
313
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
314 #ctrlEditRotationList input {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
315 display: inline;
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
316 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
317
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
318 #ctrlListRotationLists {
450
c7cc689071aa Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 447
diff changeset
319 width: 30em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
320 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
321
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
322 #ctrlListDisplaySlides {
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
323 width: 25em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
324 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
325
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
326 #ctrlCompoControl {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
327 display: block;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
328 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
329
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
330 div.ctrlDBox1, div.ctrlDBox2 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
331 vertical-align: top;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
332 border-radius: 0.5em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
333 display: inline-block;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
334 }
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
335
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
336 div.ctrlDBox1 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
337 background: #060;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
338 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
339
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
340 div.ctrlDBox2 {
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
341 width: 25em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
342 border: 2pt solid #060;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
343 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
344
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
345 #ctrlCurrCompoData {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
346 position: absolute;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
347 background: black;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
348 right: 0.5em;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
349 top: 0.5em;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
350 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
351
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
352 #ctrlCurrCompoData div.entryData {
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
353 background: #020;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
354 padding: 0.5em;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
355 margin: 0.5em;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
356 border-radius: 0.5em;
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
357 overflow: hidden;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
358 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
359
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
360 #ctrlCurrCompoData .entryAuthor, #ctrlCurrCompoData .entryName {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
361 font-weight: bold;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
362 color: white;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
363 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
364
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
365 #ctrlCurrCompoData span.entryFileTitle {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
366 font-weight: bold;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
367 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
368
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
369 #ctrlCurrCompoData span.entryFileName {
475
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
370 color: red;
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
371 }
350e68dc6599 Make filename text red.
Matti Hamalainen <ccr@tnsp.org>
parents: 474
diff changeset
372
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
373 #ctrlCurrCompoData div.entryNotes {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
374 padding: 0.2em;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
375 border-radius: 0.2em;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
376 background: #630;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
377 color: white;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
378 }
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
379
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
380 div.ctrlBox .selectBox {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
381 width: 100%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
382 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
383
427
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
384
443
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
385 div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
386 position: fixed;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
387 top: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
388 left: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
389
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
390 z-index: 52;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
391 background: black;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
392 border: 1px solid white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
393 padding: 1.5em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
394 color: white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
395
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
396 border-radius: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
397 display: none;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
398 }
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
399
474
9d6bd24f0400 Move stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 470
diff changeset
400
443
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
401 div.ctrlBox:hover div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
402 display: block;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
403 }
447
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
404
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
405 option {
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
406 font-family: monospace;
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
407 }
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
408
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
409 #nstatus {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
410
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
411 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
412
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
413 #adminLogin {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
414 padding: 1em;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
415 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
416
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
417
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
418 .overbooked {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
419 color: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
420 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
421
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
422 table.attendees,table.vote {
617
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
423 width: 100%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
424 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
425
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
426 table td, table th {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
427 border-radius: 2pt;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
428 overflow-x: hidden;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
429 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
430
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
431 table th {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
432 background: #040;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
433 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
434
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
435 table.attendees .regtime {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
436 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
437 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
438
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
439 table.attendees .oneliner {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
440 width: 50%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
441 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
442
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
443 table.attendees .name {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
444 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
445 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
446
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
447 table.attendees .groups {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
448 width: 15%;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
449 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
450
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
451 tr.rodd td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
452 background: #010;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
453 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
454
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
455 tr.reven td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
456 background: #020;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
457 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
458
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
459 table.attendees tr:hover td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
460 background: #750;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
461 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
462
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
463
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
464 .deleteWarning {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
465 background: red;
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
466 }
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
467
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
468 table.attendees tr.deleteWarning td {
11c10958abd4 Updated.
Matti Hamalainen <ccr@tnsp.org>
parents: 595
diff changeset
469 background: red;
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
470 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
471
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
472 div.compoItem, div.newsItem {
694
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
473 margin: 0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
474 padding: 1em;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
475 border-top: 1px solid #0f0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
476 border-bottom: 1px solid #0f0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
477 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
478
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
479 h1, h2, h3 {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
480 margin: 0;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
481 }
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
482
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
483 tr.active td {
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
484 background: green;
b4e0501f5588 Updated CSS example.
Matti Hamalainen <ccr@tnsp.org>
parents: 617
diff changeset
485 }
829
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
486
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
487
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
488
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
489 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
490 * Entries
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
491 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
492 div.rodd {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
493 background: #020;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
494 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
495
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
496 div.reven {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
497 background: #030;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
498 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
499
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
500 div.active {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
501 border: 1px solid #0f0;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
502 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
503
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
504 div.deleteWarning {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
505 background: red;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
506 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
507
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
508
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
509 div.entryRow {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
510 position: relative;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
511 margin-top: 1em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
512 margin-bottom: 1em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
513 padding: 0.5em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
514 vertical-align: top;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
515 border-radius: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
516 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
517
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
518 div.entryCell {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
519 display: inline-block;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
520 vertical-align: top;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
521 min-width: 15em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
522 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
523
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
524
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
525 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
526 * Individual edit controls
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
527 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
528 div.editControl {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
529 vertical-align: top;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
530 padding: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
531 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
532
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
533 span.editControlTitle {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
534 background: black;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
535 display: block;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
536 text-align: center;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
537 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
538
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
539
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
540 /*
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
541 * Specific entry items
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
542 */
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
543 div.entryShowID {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
544 background: #800;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
545 width: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
546 min-width: 2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
547 text-align: center;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
548 }
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
549
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
550 div.entryActions {
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
551 position: absolute;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
552 right: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
553 bottom: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
554
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
555 min-width: 1em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
556 width: auto;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
557
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
558 vertical-align: bottom;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
559 text-align: right;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
560
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
561 padding: 0.2em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
562 background: #050;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
563 border-radius: 0.4em;
c2839190ca54 Update example CSS files.
Matti Hamalainen <ccr@tnsp.org>
parents: 694
diff changeset
564 }
1090
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
565
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
566
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
567 div.compoDesc {
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
568 display: inline-block;
04495bb47dc9 Update example admin stylesheet.
Matti Hamalainen <ccr@tnsp.org>
parents: 829
diff changeset
569 }