forked from marcrobledo/retroarch-playlist-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretroarch-playlist-editor.css
331 lines (265 loc) · 6.09 KB
/
retroarch-playlist-editor.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/* classes */
.text-right{text-align:right}
.hidden{display:none}
.clickable:hover{cursor:pointer;text-decoration:underline}
.editable:hover{cursor:text;text-decoration:underline}
.text-ellipsis{/*white-space:nowrap;*/overflow:hidden;text-overflow:ellipsis}
.unselectable{-moz-user-select:none;-webkit-user-select: none;-ms-user-select:none;-o-user-select:none;user-select:none}
body{
font:15px -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
background-color:#e2e3de;
margin:0;
color:black;
cursor:default;
}
span.icon{
display:inline-block;
width:16px;
height:16px;
vertical-align:middle;
background-image:url('icons.png');
background-size: 144px 16px;
}
.icon.donate{background-position: -16px}
.icon.select{background-position: -32px}
.icon.selectall{background-position: -48px}
.icon.add{background-position: -64px}
.icon.save{background-position: -80px}
.icon.edit{background-position: -96px}
.icon.trash{background-position: -112px}
.icon.tweak{background-position: -128px}
button,input,select{
font-family:inherit;
font-size:inherit;
box-sizing:border-box;
}
button{
font-size:95%;
background-color:#eee;
border:none;
border-radius:2px;
padding: 5px 8px;
}
button:hover{
background-color:#ddd;
cursor:pointer;
}
button:disabled{opacity:.35}
button.colored{background-color:#2663d2;color:white}
button.colored:hover{background-color:#3673e2}
#main-panel{
overflow:hidden
}
#table-panel{
height:100%;
overflow-y:scroll
}
h1{
margin:0;
padding:12px 20px;
font-size:135%;
font-weight:normal;
color:white;
}
h1 small{font-size:70%;color:#777;display:none}
h1:hover small{display:inline}
h1 img{
max-width:32px;
vertical-align: middle;
margin-right:8px;
}
#topright{
position:absolute;
top:10px;right:10px;
font-size:90%
}
h2{
font-size:100%;
font-weight:normal;
display:inline-block;
}
h2 a{
border-bottom: 1px solid #80a8f1;
color:white;
text-decoration:none;
}
#topright .extlink{
border:none;
padding: 10px 20px;
border-radius: 3px;
background-color:#383838;
vertical-align:middle;
color:white;
text-decoration:none;
}
#topright .extlink:hover{
background-color:#282828;
}
#topright .extlink.donate{
background-color:#db3754;
}
#topright .extlink.donate:hover{
background-color:#c9344e;
}
#topbar{
background-color:#454545;
color:#9d9d9d;
}
#toolbar{
padding:10px;
}
#toolbar button{
background-color:transparent;
color:#fff;
opacity:.25;
transition: opacity .1s;
}
#toolbar button:hover,#toolbar button.active{
opacity:1
}
#warning-core-path{
color:red
}
#toolbar-right{
visibility:hidden;
float:right;
}
table{
width:100%;
border-collapse:collapse;
}
hr{
margin:0;
width:0px;
height:20px;
display:inline-block;
border:none;
border-right:1px solid black;
vertical-align:middle;
}
td,th{
padding: 7px;
}
th{
font-size:80%;
text-align:left;
background-color:#fff;
border-bottom:1px solid #e2e3de;
}
tbody tr:nth-child(odd){background-color:#fff}
tbody tr:nth-child(even){background-color:#fafafa}
tbody>*.row-selected:nth-child(odd){background-color:#de8c33;color:white}
tbody>*.row-selected:nth-child(even){background-color:#d58329;color:white}
tbody>*.row-focused{box-shadow: #ab6100 0 0 0 1px inset}
tr.row-over{
background-color:#f3f3f3 !important;
}
tr.row-over-top{box-shadow: inset 0 2px 0px orange}
tr.row-over-bottom{box-shadow: inset 0 -2px 0px orange}
body.moving-rows{cursor:grabbing}
tbody.moving-rows .row-selected{background-color:#e1b889}
/*tbody tr.selected{background-color:#ffebd6;color:#b66d1e}*/
td:nth-child(2){
font-size:80%;
max-width:300px;
}
td:nth-child(4){
font-family:monospace;
font-size:90%;
}
#drop-message{
text-align:center;
border: 1px dotted #858683;
border-radius:3px;
padding: 20px;
max-width:500px;
margin: 60px auto;
}
#drop-message span{text-decoration:underline}
#drop-message span:hover{color:#de8c33}
tbody small{opacity:.6}
/* MarcDragAndDrop */
#drop-overlay{
z-index: 9000;
background: white; /* Old browsers */
background: radial-gradient(ellipse at center, #fff 0%,transparent 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
padding:50px 0;
font-size:22px;
text-align: center;
text-shadow: white 0 0 8px;
opacity:0;
visibility:hidden;
transition: visibility .2s,opacity .2s;
}
#drop-overlay:before{
content:"";
display:block;
height:40%
}
body.dragging-files #drop-overlay{visibility:visible;opacity:1;}
body.dragging-files #drop-message{visibility:hidden !important}
/* ballons */
.balloon{
visibility:hidden;opacity:0;
position:absolute;top:0;/* fix for reserved space */
transform:translateY(-15px);
transition:visibility 0s .20s, opacity .20s ease-in, transform .20s ease-in;
background-color:#454545;
color:#9d9d9d;
padding:18px;
min-width:440px;
max-width:85%;
border-radius:2px;
line-height:1.8;
box-shadow: rgba(0,0,0,.3) 0 1px 2px;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
.balloon.open{visibility:visible;opacity:1;transform:translateY(0px);transition-delay:0s/* fixes fade-in/fade-out*/}
@media only screen and (max-width:480px){
.balloon{min-width:auto}
}
/* arrow */
.balloon:before{width:0;height:0;position:absolute;content:"";
top:-8px;border-bottom:8px solid #454545;border-left:8px solid transparent;border-right:8px solid transparent
}
#balloon-save:before{left:10px}
#balloon-edit:before{right:10px}
.row-tweak-toggled{
padding-left:30px;
}
.balloon label{
font-weight:bold;
font-size:80%;
}
.balloon input[type=text], .balloon select{
background-color:#303030;
border:0;
color:#9a9a9a;
padding: 6px 8px;
width:100%;
}
.balloon input[type=text]:hover, .balloon select:hover{
background-color:#282828;
}
.balloon input[type=text]:focus, .balloon select:focus{
background-color:#232323;
color:#fff;
}
.balloon button{min-width:120px}
.balloon input.full-width,.balloon select.full-width{width:100%}
/*input.transparent{
padding:0;
margin:-1px 0;
background-color:inherit;
color:inherit;
border: 1px solid #e2e3de;
}*/
.buttons{
margin-top:20px;
text-align:right
}