annotate admin.css @ 481:259dd7eae46d

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