annotate admin.css @ 470:a65a00599a68

Some visual adjustments.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 06 Dec 2013 20:42:25 +0200
parents cf591bb4c93c
children 9d6bd24f0400
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
1 #ctrlModeControls input[type="radio"] {
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
2 display: none;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
3 }
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
4
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
5 #ctrlModeControls input[type="radio"] + label:before {
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
6 content: "O";
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
7 display: inline-block;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
8 color: green;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
9 font-size: 2em;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
10 }
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
11
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
12 #ctrlModeControls input[type="radio"]:checked + label:before {
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
13 content: "X";
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
14 display: inline-block;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
15 color: red;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
16 font-weight: bold;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
17 font-size: 2em;
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
18 }
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
19
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
20
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
21 div.tabHeaders {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 margin-top: 10pt;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23 margin-bottom: 0px;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 border-bottom: 5pt solid #595F23;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
27 div.tabHeadersSub {
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
28 margin-top: 10pt;
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
29 margin-bottom: 0px;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
30 font-size: 0.7em;
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
31 line-height: 2.7em;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
32 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
33
418
0688a1d2122e Add link for opening the info view window.
Matti Hamalainen <ccr@tnsp.org>
parents: 405
diff changeset
34 div.tabHeadersSub a, #ctrlModeControls a {
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
35 text-decoration: none;
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
36 margin: 0px;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
37 padding: 5pt;
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
38 background: #595F23;
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
39 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
40 border-radius: 5pt;
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
41 }
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
42
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
43 div.tabHeaders a {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 text-decoration: none;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45 padding: 5pt;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46 margin: 5pt;
263
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
47 margin-left: 0px;
8c3922a65231 Work on entry admin looks.
Matti Hamalainen <ccr@tnsp.org>
parents: 259
diff changeset
48 margin-right: 0px;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 background: #595F23;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50 text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
51 border-top-left-radius: 5pt;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 border-top-right-radius: 5pt;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
53 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
54
418
0688a1d2122e Add link for opening the info view window.
Matti Hamalainen <ccr@tnsp.org>
parents: 405
diff changeset
55 div.tabHeaders a:hover, div.tabHeadersSub a:hover, #ctrlModeControls a:hover {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
57 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
59 div.tabHeaders 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
60 background: #C8D286;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
61 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
62
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
63 div.tabHeaders a.admin {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
64 position: relative;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65 right: -2em;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
66 }
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
67
259
a7aa20dec154 Some more work.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
68
201
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
69 div.tabContents {
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
70 position: absolute;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
71 left: 0em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
72 right: 0em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
73 top: 4em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
74 bottom: 0em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
75 padding: 1em;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
76 margin: 0px;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
77 color: #0f0;
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
78 }
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
79
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
80
a4be19c4d99d Modularize admin pages tab system.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
81 #adminContent {
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
82 position: absolute;
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
83 top: 0em;
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
84 bottom: 0em;
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
85 left: 0em;
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
86 right: 0em;
180
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
87 padding: 1em;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
88 background: rgba(0,0,0,0.7);
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
89 color: #0f0;
a3f0f2a3551a Split stylesheets into separate files for different platforms and also split
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
90 }
279
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
91
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
92 div.info {
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
93 padding: 1em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
94 background: black;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
95 border-radius: 0.7em;
954ab8c9e11a Add CSS for information blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 263
diff changeset
96 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
97 }
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
98
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
99
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
100 div.votekey {
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
101 display: inline-block;
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
102
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
103 margin: 0px;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
104 text-align: center;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
105 padding: 0.5em;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
106 background: black;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
107
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
108 border-right: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
109 border-bottom: 1pt dashed green;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
110 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
111
283
85d74b8b7ae8 Use CSS instead of a table for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 281
diff changeset
112 div.votekey span.keyid {
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
113 font-weight: bold;
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
114 }
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
115
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
116 div.votekey:hover, tr.votekey:hover td {
322
a11975659f38 Improve colours.
Matti Hamalainen <ccr@tnsp.org>
parents: 321
diff changeset
117 background: rgba(255,0,0,0.5);
281
ec56f08c4cc4 Add some CSS for votekey admin.
Matti Hamalainen <ccr@tnsp.org>
parents: 279
diff changeset
118 }
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
119
331
5cc19baf9318 Fixes in CSS.
Matti Hamalainen <ccr@tnsp.org>
parents: 322
diff changeset
120 div.vkeyActive, tr.vkeyActive {
322
a11975659f38 Improve colours.
Matti Hamalainen <ccr@tnsp.org>
parents: 321
diff changeset
121 background: rgba(0,255,0,0.2);
321
9462a59d3ab3 Votekey activation usability improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 283
diff changeset
122 }
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
123
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
124
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
125
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
126 #ctrlModeControls, #ctrlSystemControls {
378
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
127 border: 2px solid green;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
128 padding: 0.5em;
5722c37aba2a It has begun.
Matti Hamalainen <ccr@tnsp.org>
parents: 353
diff changeset
129 border-radius: 0.5em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
130 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
131 margin: 0.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
132 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
133
396
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
134 #ctrlSystemControls {
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
135 }
Matti Hamalainen <ccr@tnsp.org>
parents: 393
diff changeset
136
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
137
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
138 #ctrlEditDisplaySlide {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
139 position: absolute;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
140 top: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
141 min-width: 25%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
142 height: auto;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
143 left: 15%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
144 min-width: 50%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
145 z-index: 52;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
146
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
147 display: none;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
148 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
149
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
150 div.ctrlTitle {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
151 font-size: 1.2em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
152 font-weight: bold;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
153 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
154
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
155 div.ctrlBox {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
156 display: inline-block;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
157 background: black;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
158 border: 2px solid green;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
159 padding: 1em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
160 border-radius: 1em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
161 min-height: 12em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
162 vertical-align: top;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
163 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
164
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
165 div.ctrlButtons {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
166 padding: 0.3em;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
167 text-align: right;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
168 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
169
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
170 #ctrlEditRotationList input {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
171 display: inline;
353
d805f6f2a83d Add some CSS for select boxes.
Matti Hamalainen <ccr@tnsp.org>
parents: 331
diff changeset
172 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
173
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
174 #ctrlListRotationLists {
450
c7cc689071aa Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 447
diff changeset
175 width: 30em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
176 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
177
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
178 #ctrlListDisplaySlides {
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
179 width: 25em;
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
180 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
181
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
182 #ctrlCompoControl {
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
183 display: block;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
184 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
185
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
186 div.ctrlDBox1, div.ctrlDBox2 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
187 vertical-align: top;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
188 border-radius: 0.5em;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
189 display: inline-block;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
190 }
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
191
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
192 div.ctrlDBox1 {
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
193 background: #060;
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
194 }
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
195
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
196 div.ctrlDBox2 {
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
197 width: 25em;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
198 border: 2pt solid #060;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
199 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
200
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
201 #ctrlCurrEntryData {
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
202 background: black;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
203 position: relative;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
204 }
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
205
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
206 #ctrlCurrEntryData div {
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
207 background: #020;
397
d8fd57e7b90e Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 396
diff changeset
208 padding: 0.5em;
405
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
209 margin: 0.5em;
Matti Hamalainen <ccr@tnsp.org>
parents: 397
diff changeset
210 border-radius: 0.5em;
470
a65a00599a68 Some visual adjustments.
Matti Hamalainen <ccr@tnsp.org>
parents: 458
diff changeset
211 overflow: hidden;
393
14cdbeb331b6 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 390
diff changeset
212 }
390
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
213
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
214 div.ctrlBox .selectBox {
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
215 width: 100%;
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
216 }
3257ae94ba1c Work on show display backend logic.
Matti Hamalainen <ccr@tnsp.org>
parents: 378
diff changeset
217
427
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
218
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
219 #adminPopup {
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
220 position: absolute;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
221 top: 0px;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
222 bottom: 0px;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
223 left: 0px;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
224 right: 0px;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
225 z-index: 50;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
226 display: none;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
227 }
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
228
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
229 #adminPopup > div {
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
230 position: absolute;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
231 top: 25%;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
232 left: 10%;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
233 height: auto;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
234 min-width: 80%;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
235 max-width: 80%;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
236 z-index: 52;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
237 background: black;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
238 border: 1px solid green;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
239 padding: 1.5em;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
240
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
241 border-radius: 1em;
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
242 }
707213312891 Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents: 418
diff changeset
243
443
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
244 div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
245 position: fixed;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
246 top: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
247 left: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
248
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
249 z-index: 52;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
250 background: black;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
251 border: 1px solid white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
252 padding: 1.5em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
253 color: white;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
254
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
255 border-radius: 1em;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
256 display: none;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
257 }
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
258
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
259 div.ctrlBox:hover div.ctrlInfo {
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
260 display: block;
2a4d5ded6c79 Add helpful information popups.
Matti Hamalainen <ccr@tnsp.org>
parents: 427
diff changeset
261 }
447
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
262
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
263 option {
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
264 font-family: monospace;
643edf88053e Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 443
diff changeset
265 }