annotate admin.css @ 474:9d6bd24f0400

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