appcss 0.0.14 → 0.0.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/appcss/app.js +12 -1
- data/app/assets/stylesheets/appcss/app.css +7 -749
- data/lib/appcss/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 298392feea2e6c5daab9cc37e30c247f7f222f4e
|
4
|
+
data.tar.gz: f098dc5aac88985bae38e48f7c7b41cb30145204
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 649e2674c08e62b9b0eb9c9ebda5df789d20efb5c72021a29af6b055df18656352a93e60d0e7b0522b83e09b541cae4f6235e34a0c887c7927189ae7ccab6a6a
|
7
|
+
data.tar.gz: dab3f838ead6efe188c7c4feae1d53159bc11b2d930c7fc7f0bc409947de291aa63f7a92e448563fb42757d43265443b39375d8fdb8544da9e5d3db6bc79662f
|
@@ -59,5 +59,16 @@ $('.se-modal').click(function(e) {
|
|
59
59
|
|
60
60
|
|
61
61
|
/*
|
62
|
-
|
62
|
+
STATUSES
|
63
63
|
*/
|
64
|
+
|
65
|
+
A.status = function(status) {
|
66
|
+
var $statusContainer, delay, id;
|
67
|
+
id = Math.round(Math.random() * 9999999);
|
68
|
+
$statusContainer = $('.acss-status').length ? $('.acss-status') : $(status.selector);
|
69
|
+
$($statusContainer).html("<div id='status-" + id + "' class='status'>" + status.title + "</div>");
|
70
|
+
delay = status.delay || 2000;
|
71
|
+
return setTimeout(function() {
|
72
|
+
return $("#status-" + id).fadeOut('fast');
|
73
|
+
}, delay);
|
74
|
+
};
|
@@ -1,749 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
html {
|
10
|
-
font-family: sans-serif; /* 1 */
|
11
|
-
-ms-text-size-adjust: 100%; /* 2 */
|
12
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
13
|
-
}
|
14
|
-
|
15
|
-
/**
|
16
|
-
* Remove default margin.
|
17
|
-
*/
|
18
|
-
|
19
|
-
body {
|
20
|
-
margin: 0;
|
21
|
-
}
|
22
|
-
|
23
|
-
/* HTML5 display definitions
|
24
|
-
========================================================================== */
|
25
|
-
|
26
|
-
/**
|
27
|
-
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
28
|
-
* Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
|
29
|
-
* Correct `block` display not defined for `main` in IE 11.
|
30
|
-
*/
|
31
|
-
|
32
|
-
article,
|
33
|
-
aside,
|
34
|
-
details,
|
35
|
-
figcaption,
|
36
|
-
figure,
|
37
|
-
footer,
|
38
|
-
header,
|
39
|
-
hgroup,
|
40
|
-
main,
|
41
|
-
nav,
|
42
|
-
section,
|
43
|
-
summary {
|
44
|
-
display: block;
|
45
|
-
}
|
46
|
-
|
47
|
-
/**
|
48
|
-
* 1. Correct `inline-block` display not defined in IE 8/9.
|
49
|
-
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
50
|
-
*/
|
51
|
-
|
52
|
-
audio,
|
53
|
-
canvas,
|
54
|
-
progress,
|
55
|
-
video {
|
56
|
-
display: inline-block; /* 1 */
|
57
|
-
vertical-align: baseline; /* 2 */
|
58
|
-
}
|
59
|
-
|
60
|
-
/**
|
61
|
-
* Prevent modern browsers from displaying `audio` without controls.
|
62
|
-
* Remove excess height in iOS 5 devices.
|
63
|
-
*/
|
64
|
-
|
65
|
-
audio:not([controls]) {
|
66
|
-
display: none;
|
67
|
-
height: 0;
|
68
|
-
}
|
69
|
-
|
70
|
-
/**
|
71
|
-
* Address `[hidden]` styling not present in IE 8/9/10.
|
72
|
-
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
73
|
-
*/
|
74
|
-
|
75
|
-
[hidden],
|
76
|
-
template {
|
77
|
-
display: none;
|
78
|
-
}
|
79
|
-
|
80
|
-
/* Links
|
81
|
-
========================================================================== */
|
82
|
-
|
83
|
-
/**
|
84
|
-
* Remove the gray background color from active links in IE 10.
|
85
|
-
*/
|
86
|
-
|
87
|
-
a {
|
88
|
-
background: transparent;
|
89
|
-
}
|
90
|
-
|
91
|
-
/**
|
92
|
-
* Improve readability when focused and also mouse hovered in all browsers.
|
93
|
-
*/
|
94
|
-
|
95
|
-
a:active,
|
96
|
-
a:hover {
|
97
|
-
outline: 0;
|
98
|
-
}
|
99
|
-
|
100
|
-
/* Text-level semantics
|
101
|
-
========================================================================== */
|
102
|
-
|
103
|
-
/**
|
104
|
-
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
105
|
-
*/
|
106
|
-
|
107
|
-
abbr[title] {
|
108
|
-
border-bottom: 1px dotted;
|
109
|
-
}
|
110
|
-
|
111
|
-
/**
|
112
|
-
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
113
|
-
*/
|
114
|
-
|
115
|
-
b,
|
116
|
-
strong {
|
117
|
-
font-weight: bold;
|
118
|
-
}
|
119
|
-
|
120
|
-
/**
|
121
|
-
* Address styling not present in Safari and Chrome.
|
122
|
-
*/
|
123
|
-
|
124
|
-
dfn {
|
125
|
-
font-style: italic;
|
126
|
-
}
|
127
|
-
|
128
|
-
/**
|
129
|
-
* Address variable `h1` font-size and margin within `section` and `article`
|
130
|
-
* contexts in Firefox 4+, Safari, and Chrome.
|
131
|
-
*/
|
132
|
-
|
133
|
-
h1 {
|
134
|
-
font-size: 2em;
|
135
|
-
margin: 0.67em 0;
|
136
|
-
}
|
137
|
-
|
138
|
-
/**
|
139
|
-
* Address styling not present in IE 8/9.
|
140
|
-
*/
|
141
|
-
|
142
|
-
mark {
|
143
|
-
background: #ff0;
|
144
|
-
color: #000;
|
145
|
-
}
|
146
|
-
|
147
|
-
/**
|
148
|
-
* Address inconsistent and variable font size in all browsers.
|
149
|
-
*/
|
150
|
-
|
151
|
-
small {
|
152
|
-
font-size: 80%;
|
153
|
-
}
|
154
|
-
|
155
|
-
/**
|
156
|
-
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
157
|
-
*/
|
158
|
-
|
159
|
-
sub,
|
160
|
-
sup {
|
161
|
-
font-size: 75%;
|
162
|
-
line-height: 0;
|
163
|
-
position: relative;
|
164
|
-
vertical-align: baseline;
|
165
|
-
}
|
166
|
-
|
167
|
-
sup {
|
168
|
-
top: -0.5em;
|
169
|
-
}
|
170
|
-
|
171
|
-
sub {
|
172
|
-
bottom: -0.25em;
|
173
|
-
}
|
174
|
-
|
175
|
-
/* Embedded content
|
176
|
-
========================================================================== */
|
177
|
-
|
178
|
-
/**
|
179
|
-
* Remove border when inside `a` element in IE 8/9/10.
|
180
|
-
*/
|
181
|
-
|
182
|
-
img {
|
183
|
-
border: 0;
|
184
|
-
}
|
185
|
-
|
186
|
-
/**
|
187
|
-
* Correct overflow not hidden in IE 9/10/11.
|
188
|
-
*/
|
189
|
-
|
190
|
-
svg:not(:root) {
|
191
|
-
overflow: hidden;
|
192
|
-
}
|
193
|
-
|
194
|
-
/* Grouping content
|
195
|
-
========================================================================== */
|
196
|
-
|
197
|
-
/**
|
198
|
-
* Address margin not present in IE 8/9 and Safari.
|
199
|
-
*/
|
200
|
-
|
201
|
-
figure {
|
202
|
-
margin: 1em 40px;
|
203
|
-
}
|
204
|
-
|
205
|
-
/**
|
206
|
-
* Address differences between Firefox and other browsers.
|
207
|
-
*/
|
208
|
-
|
209
|
-
hr {
|
210
|
-
-moz-box-sizing: content-box;
|
211
|
-
box-sizing: content-box;
|
212
|
-
height: 0;
|
213
|
-
}
|
214
|
-
|
215
|
-
/**
|
216
|
-
* Contain overflow in all browsers.
|
217
|
-
*/
|
218
|
-
|
219
|
-
pre {
|
220
|
-
overflow: auto;
|
221
|
-
}
|
222
|
-
|
223
|
-
/**
|
224
|
-
* Address odd `em`-unit font size rendering in all browsers.
|
225
|
-
*/
|
226
|
-
|
227
|
-
code,
|
228
|
-
kbd,
|
229
|
-
pre,
|
230
|
-
samp {
|
231
|
-
font-family: monospace, monospace;
|
232
|
-
font-size: 1em;
|
233
|
-
}
|
234
|
-
|
235
|
-
/* Forms
|
236
|
-
========================================================================== */
|
237
|
-
|
238
|
-
/**
|
239
|
-
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
240
|
-
* styling of `select`, unless a `border` property is set.
|
241
|
-
*/
|
242
|
-
|
243
|
-
/**
|
244
|
-
* 1. Correct color not being inherited.
|
245
|
-
* Known issue: affects color of disabled elements.
|
246
|
-
* 2. Correct font properties not being inherited.
|
247
|
-
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
248
|
-
*/
|
249
|
-
|
250
|
-
button,
|
251
|
-
input,
|
252
|
-
optgroup,
|
253
|
-
select,
|
254
|
-
textarea {
|
255
|
-
color: inherit; /* 1 */
|
256
|
-
font: inherit; /* 2 */
|
257
|
-
margin: 0; /* 3 */
|
258
|
-
}
|
259
|
-
|
260
|
-
/**
|
261
|
-
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
262
|
-
*/
|
263
|
-
|
264
|
-
button {
|
265
|
-
overflow: visible;
|
266
|
-
}
|
267
|
-
|
268
|
-
/**
|
269
|
-
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
270
|
-
* All other form control elements do not inherit `text-transform` values.
|
271
|
-
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
272
|
-
* Correct `select` style inheritance in Firefox.
|
273
|
-
*/
|
274
|
-
|
275
|
-
button,
|
276
|
-
select {
|
277
|
-
text-transform: none;
|
278
|
-
}
|
279
|
-
|
280
|
-
/**
|
281
|
-
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
282
|
-
* and `video` controls.
|
283
|
-
* 2. Correct inability to style clickable `input` types in iOS.
|
284
|
-
* 3. Improve usability and consistency of cursor style between image-type
|
285
|
-
* `input` and others.
|
286
|
-
*/
|
287
|
-
|
288
|
-
button,
|
289
|
-
html input[type="button"], /* 1 */
|
290
|
-
input[type="reset"],
|
291
|
-
input[type="submit"] {
|
292
|
-
-webkit-appearance: button; /* 2 */
|
293
|
-
cursor: pointer; /* 3 */
|
294
|
-
}
|
295
|
-
|
296
|
-
/**
|
297
|
-
* Re-set default cursor for disabled elements.
|
298
|
-
*/
|
299
|
-
|
300
|
-
button[disabled],
|
301
|
-
html input[disabled] {
|
302
|
-
cursor: default;
|
303
|
-
}
|
304
|
-
|
305
|
-
/**
|
306
|
-
* Remove inner padding and border in Firefox 4+.
|
307
|
-
*/
|
308
|
-
|
309
|
-
button::-moz-focus-inner,
|
310
|
-
input::-moz-focus-inner {
|
311
|
-
border: 0;
|
312
|
-
padding: 0;
|
313
|
-
}
|
314
|
-
|
315
|
-
/**
|
316
|
-
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
317
|
-
* the UA stylesheet.
|
318
|
-
*/
|
319
|
-
|
320
|
-
input {
|
321
|
-
line-height: normal;
|
322
|
-
}
|
323
|
-
|
324
|
-
/**
|
325
|
-
* It's recommended that you don't attempt to style these elements.
|
326
|
-
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
327
|
-
*
|
328
|
-
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
329
|
-
* 2. Remove excess padding in IE 8/9/10.
|
330
|
-
*/
|
331
|
-
|
332
|
-
input[type="checkbox"],
|
333
|
-
input[type="radio"] {
|
334
|
-
box-sizing: border-box; /* 1 */
|
335
|
-
padding: 0; /* 2 */
|
336
|
-
}
|
337
|
-
|
338
|
-
/**
|
339
|
-
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
340
|
-
* `font-size` values of the `input`, it causes the cursor style of the
|
341
|
-
* decrement button to change from `default` to `text`.
|
342
|
-
*/
|
343
|
-
|
344
|
-
input[type="number"]::-webkit-inner-spin-button,
|
345
|
-
input[type="number"]::-webkit-outer-spin-button {
|
346
|
-
height: auto;
|
347
|
-
}
|
348
|
-
|
349
|
-
/**
|
350
|
-
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
351
|
-
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
352
|
-
* (include `-moz` to future-proof).
|
353
|
-
*/
|
354
|
-
|
355
|
-
input[type="search"] {
|
356
|
-
-webkit-appearance: textfield; /* 1 */
|
357
|
-
-moz-box-sizing: content-box;
|
358
|
-
-webkit-box-sizing: content-box; /* 2 */
|
359
|
-
box-sizing: content-box;
|
360
|
-
}
|
361
|
-
|
362
|
-
/**
|
363
|
-
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
364
|
-
* Safari (but not Chrome) clips the cancel button when the search input has
|
365
|
-
* padding (and `textfield` appearance).
|
366
|
-
*/
|
367
|
-
|
368
|
-
input[type="search"]::-webkit-search-cancel-button,
|
369
|
-
input[type="search"]::-webkit-search-decoration {
|
370
|
-
-webkit-appearance: none;
|
371
|
-
}
|
372
|
-
|
373
|
-
/**
|
374
|
-
* Define consistent border, margin, and padding.
|
375
|
-
*/
|
376
|
-
|
377
|
-
fieldset {
|
378
|
-
border: 1px solid #c0c0c0;
|
379
|
-
margin: 0 2px;
|
380
|
-
padding: 0.35em 0.625em 0.75em;
|
381
|
-
}
|
382
|
-
|
383
|
-
/**
|
384
|
-
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
385
|
-
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
386
|
-
*/
|
387
|
-
|
388
|
-
legend {
|
389
|
-
border: 0; /* 1 */
|
390
|
-
padding: 0; /* 2 */
|
391
|
-
}
|
392
|
-
|
393
|
-
/**
|
394
|
-
* Remove default vertical scrollbar in IE 8/9/10/11.
|
395
|
-
*/
|
396
|
-
|
397
|
-
textarea {
|
398
|
-
overflow: auto;
|
399
|
-
}
|
400
|
-
|
401
|
-
/**
|
402
|
-
* Don't inherit the `font-weight` (applied by a rule above).
|
403
|
-
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
404
|
-
*/
|
405
|
-
|
406
|
-
optgroup {
|
407
|
-
font-weight: bold;
|
408
|
-
}
|
409
|
-
|
410
|
-
/* Tables
|
411
|
-
========================================================================== */
|
412
|
-
|
413
|
-
/**
|
414
|
-
* Remove most spacing between table cells.
|
415
|
-
*/
|
416
|
-
|
417
|
-
table {
|
418
|
-
border-collapse: collapse;
|
419
|
-
border-spacing: 0;
|
420
|
-
}
|
421
|
-
|
422
|
-
td,
|
423
|
-
th {
|
424
|
-
padding: 0;
|
425
|
-
}
|
426
|
-
|
427
|
-
* {
|
428
|
-
box-sizing: border-box; }
|
429
|
-
|
430
|
-
html {
|
431
|
-
background: #394956;
|
432
|
-
color: white; }
|
433
|
-
|
434
|
-
html, body {
|
435
|
-
height: 100%;
|
436
|
-
font-size: 16px; }
|
437
|
-
|
438
|
-
.acss-readable-container {
|
439
|
-
max-width: 768px; }
|
440
|
-
|
441
|
-
.grid-row {
|
442
|
-
display: -moz-box;
|
443
|
-
display: -webkit-box;
|
444
|
-
display: -webkit-flex;
|
445
|
-
display: -ms-flexbox;
|
446
|
-
display: flex;
|
447
|
-
width: 100%;
|
448
|
-
-webkit-justify-content: space-between;
|
449
|
-
-moz-justify-content: space-between;
|
450
|
-
justify-content: space-between;
|
451
|
-
-webkit-align-items: stretch;
|
452
|
-
-moz-align-items: stretch;
|
453
|
-
align-items: stretch;
|
454
|
-
-webkit-flex-wrap: wrap;
|
455
|
-
-moz-flex-wrap: wrap;
|
456
|
-
flex-wrap: wrap; }
|
457
|
-
|
458
|
-
.acss-sidebar {
|
459
|
-
height: 100%;
|
460
|
-
width: 100%;
|
461
|
-
display: block;
|
462
|
-
margin-left: 0;
|
463
|
-
font-size: 0.75rem;
|
464
|
-
z-index: 990; }
|
465
|
-
@media screen and (min-width: 768px) {
|
466
|
-
.acss-sidebar {
|
467
|
-
width: calc(100% - 15px);
|
468
|
-
clear: none; } }
|
469
|
-
@media screen and (min-width: 480px) {
|
470
|
-
.acss-sidebar {
|
471
|
-
width: 100%;
|
472
|
-
display: block;
|
473
|
-
margin-left: 0; } }
|
474
|
-
@media screen and (min-width: 480px) and (min-width: 768px) {
|
475
|
-
.acss-sidebar {
|
476
|
-
width: calc(50% - 15px);
|
477
|
-
clear: none; } }
|
478
|
-
|
479
|
-
@media screen and (min-width: 768px) {
|
480
|
-
.acss-sidebar {
|
481
|
-
width: 100%;
|
482
|
-
display: block;
|
483
|
-
margin-left: 0; } }
|
484
|
-
@media screen and (min-width: 768px) and (min-width: 768px) {
|
485
|
-
.acss-sidebar {
|
486
|
-
width: calc(33.33333% - 15px);
|
487
|
-
clear: none; } }
|
488
|
-
|
489
|
-
.acss-sidebar h1 {
|
490
|
-
font-size: 1rem;
|
491
|
-
font-weight: normal;
|
492
|
-
margin: 0;
|
493
|
-
margin-bottom: 7px;
|
494
|
-
padding: 5px 15px;
|
495
|
-
position: relative; }
|
496
|
-
.acss-sidebar a {
|
497
|
-
color: white; }
|
498
|
-
@media screen and (min-width: 960px) {
|
499
|
-
.acss-sidebar {
|
500
|
-
width: 200px;
|
501
|
-
position: absolute;
|
502
|
-
top: 50px;
|
503
|
-
left: 0;
|
504
|
-
height: calc(100vh - 50px);
|
505
|
-
overflow: auto; } }
|
506
|
-
.acss-sidebar ul {
|
507
|
-
list-style: none;
|
508
|
-
padding: 0;
|
509
|
-
margin: 0; }
|
510
|
-
.acss-sidebar ul li {
|
511
|
-
position: relative; }
|
512
|
-
.acss-sidebar ul li:last-child {
|
513
|
-
margin-bottom: 25px; }
|
514
|
-
.acss-sidebar ul li ul {
|
515
|
-
margin-left: 15px; }
|
516
|
-
.acss-sidebar ul li ul li a, .acss-sidebar ul li ul li input {
|
517
|
-
margin-left: -15px;
|
518
|
-
padding-left: 30px; }
|
519
|
-
.acss-sidebar ul li ul li:last-child {
|
520
|
-
margin-bottom: 0; }
|
521
|
-
.acss-sidebar ul li > a, .acss-sidebar ul li > em, .acss-sidebar ul li > strong {
|
522
|
-
padding: 5px 15px;
|
523
|
-
display: block; }
|
524
|
-
.acss-sidebar ul li > a + input, .acss-sidebar ul li > em + input, .acss-sidebar ul li > strong + input {
|
525
|
-
display: none; }
|
526
|
-
.acss-sidebar ul li > a:hover, .acss-sidebar ul li > em:hover, .acss-sidebar ul li > strong:hover {
|
527
|
-
background-color: rgba(255, 255, 255, 0.2);
|
528
|
-
text-decoration: none; }
|
529
|
-
.acss-sidebar ul li input[type="text"] {
|
530
|
-
border: 0px;
|
531
|
-
background: transparent;
|
532
|
-
padding: 5px 15px;
|
533
|
-
font-size: 0.75rem;
|
534
|
-
width: 100%; }
|
535
|
-
.acss-sidebar ul li input[type="text"]:hover {
|
536
|
-
background: rgba(255, 255, 255, 0.1); }
|
537
|
-
.acss-sidebar ul li input[type="text"]:focus {
|
538
|
-
background: white;
|
539
|
-
color: #333333;
|
540
|
-
outline: 0px; }
|
541
|
-
.acss-sidebar ul li.edit a, .acss-sidebar ul li.edit .tools {
|
542
|
-
display: none; }
|
543
|
-
.acss-sidebar ul li.edit a + input {
|
544
|
-
display: block; }
|
545
|
-
.acss-sidebar .tools {
|
546
|
-
display: none;
|
547
|
-
position: absolute;
|
548
|
-
top: 0;
|
549
|
-
right: 0;
|
550
|
-
bottom: 0;
|
551
|
-
padding: 5px 15px; }
|
552
|
-
.acss-sidebar .tools span, .acss-sidebar .tools a {
|
553
|
-
cursor: pointer;
|
554
|
-
display: inline-block;
|
555
|
-
text-align: center;
|
556
|
-
width: 15px;
|
557
|
-
border-radius: 50%;
|
558
|
-
position: relative; }
|
559
|
-
.acss-sidebar .tools span .tooltip, .acss-sidebar .tools a .tooltip {
|
560
|
-
display: none;
|
561
|
-
position: absolute;
|
562
|
-
top: 30px;
|
563
|
-
right: 0px;
|
564
|
-
background: rgba(255, 255, 255, 0.7);
|
565
|
-
padding: 5px;
|
566
|
-
color: #333333;
|
567
|
-
text-shadow: none;
|
568
|
-
border-radius: 3px;
|
569
|
-
z-index: 999;
|
570
|
-
font-size: 0.75rem;
|
571
|
-
font-weight: bold; }
|
572
|
-
.acss-sidebar .tools span:hover, .acss-sidebar .tools a:hover {
|
573
|
-
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), -1px 1px 1px rgba(0, 0, 0, 0.3), 1px -1px 1px rgba(0, 0, 0, 0.3), -1px -1px 1px rgba(0, 0, 0, 0.3); }
|
574
|
-
.acss-sidebar .tools span:hover .tooltip, .acss-sidebar .tools a:hover .tooltip {
|
575
|
-
display: block; }
|
576
|
-
.acss-sidebar ul li:hover .tools, .acss-sidebar h1:hover .tools {
|
577
|
-
display: block; }
|
578
|
-
.acss-sidebar ul li:hover.edit .tools, .acss-sidebar h1:hover.edit .tools {
|
579
|
-
display: none; }
|
580
|
-
|
581
|
-
.acss-mainpane {
|
582
|
-
width: 100%;
|
583
|
-
display: block;
|
584
|
-
margin-left: 0;
|
585
|
-
padding: 15px;
|
586
|
-
background: white;
|
587
|
-
color: #333333; }
|
588
|
-
@media screen and (min-width: 768px) {
|
589
|
-
.acss-mainpane {
|
590
|
-
width: calc(100% - 15px);
|
591
|
-
clear: none; } }
|
592
|
-
@media screen and (min-width: 480px) {
|
593
|
-
.acss-mainpane {
|
594
|
-
width: 100%;
|
595
|
-
display: block;
|
596
|
-
margin-left: 0; } }
|
597
|
-
@media screen and (min-width: 480px) and (min-width: 768px) {
|
598
|
-
.acss-mainpane {
|
599
|
-
width: calc(50% - 15px);
|
600
|
-
clear: none; } }
|
601
|
-
|
602
|
-
@media screen and (min-width: 768px) {
|
603
|
-
.acss-mainpane {
|
604
|
-
width: 100%;
|
605
|
-
display: block;
|
606
|
-
margin-left: 0; } }
|
607
|
-
@media screen and (min-width: 768px) and (min-width: 768px) {
|
608
|
-
.acss-mainpane {
|
609
|
-
width: calc(66.66667% - 15px);
|
610
|
-
clear: none; } }
|
611
|
-
|
612
|
-
@media screen and (min-width: 960px) {
|
613
|
-
.acss-mainpane {
|
614
|
-
width: calc(100% - 200px);
|
615
|
-
position: absolute;
|
616
|
-
z-index: 980;
|
617
|
-
left: 200px;
|
618
|
-
top: 50px;
|
619
|
-
height: calc(100vh - 50px);
|
620
|
-
right: 0;
|
621
|
-
overflow: auto; } }
|
622
|
-
.acss-mainpane section:target {
|
623
|
-
padding-top: 20px; }
|
624
|
-
|
625
|
-
.acss-navbar {
|
626
|
-
display: -moz-box;
|
627
|
-
display: -webkit-box;
|
628
|
-
display: -webkit-flex;
|
629
|
-
display: -ms-flexbox;
|
630
|
-
display: inline-flex;
|
631
|
-
-webkit-align-items: flex-start;
|
632
|
-
-moz-align-items: flex-start;
|
633
|
-
align-items: flex-start;
|
634
|
-
-webkit-flex-wrap: wrap;
|
635
|
-
-moz-flex-wrap: wrap;
|
636
|
-
flex-wrap: wrap;
|
637
|
-
-webkit-justify-content: space-between;
|
638
|
-
-moz-justify-content: space-between;
|
639
|
-
justify-content: space-between;
|
640
|
-
-webkit-align-content: space-between;
|
641
|
-
-moz-align-content: space-between;
|
642
|
-
align-content: space-between;
|
643
|
-
width: 100%;
|
644
|
-
padding: 0 10px; }
|
645
|
-
.acss-navbar a {
|
646
|
-
color: white; }
|
647
|
-
.acss-navbar p {
|
648
|
-
margin: 0; }
|
649
|
-
.acss-navbar ul {
|
650
|
-
margin: 15px 0;
|
651
|
-
padding: 0;
|
652
|
-
display: -moz-box;
|
653
|
-
display: -webkit-box;
|
654
|
-
display: -webkit-flex;
|
655
|
-
display: -ms-flexbox;
|
656
|
-
display: inline-flex;
|
657
|
-
-webkit-justify-content: space-between;
|
658
|
-
-moz-justify-content: space-between;
|
659
|
-
justify-content: space-between;
|
660
|
-
-webkit-align-content: space-between;
|
661
|
-
-moz-align-content: space-between;
|
662
|
-
align-content: space-between;
|
663
|
-
-webkit-align-items: center;
|
664
|
-
-moz-align-items: center;
|
665
|
-
align-items: center;
|
666
|
-
-webkit-flex-wrap: wrap;
|
667
|
-
-moz-flex-wrap: wrap;
|
668
|
-
flex-wrap: wrap; }
|
669
|
-
.acss-navbar ul li {
|
670
|
-
list-style: none;
|
671
|
-
margin: 0px 5px; }
|
672
|
-
.acss-navbar ul:first-child li:first-child a {
|
673
|
-
font-size: 1.25rem; }
|
674
|
-
|
675
|
-
.acss-btn {
|
676
|
-
padding: 4px 10px;
|
677
|
-
background-color: rgba(0, 0, 0, 0.3);
|
678
|
-
color: white;
|
679
|
-
text-decoration: none;
|
680
|
-
border: 0px;
|
681
|
-
outline: none;
|
682
|
-
cursor: pointer;
|
683
|
-
display: inline-block;
|
684
|
-
-moz-border-radius: 3px;
|
685
|
-
-webkit-border-radius: 3px;
|
686
|
-
border-radius: 3px;
|
687
|
-
margin-bottom: 15px;
|
688
|
-
font-size: 0.75rem; }
|
689
|
-
.acss-btn:hover {
|
690
|
-
text-decoration: none;
|
691
|
-
box-shadow: inset 0px 0px 0px 100px rgba(0, 0, 0, 0.05); }
|
692
|
-
.acss-btn:active {
|
693
|
-
text-decoration: none;
|
694
|
-
box-shadow: inset 0px 0px 0px 100px rgba(0, 0, 0, 0.1); }
|
695
|
-
|
696
|
-
input[type="text"], input[type="email"], input[type="search"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="number"], input[type="password"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] {
|
697
|
-
border: 1px solid #a1a1a1;
|
698
|
-
background-color: transparent;
|
699
|
-
font-size: 0.85rem;
|
700
|
-
padding: 5px;
|
701
|
-
width: 100%; }
|
702
|
-
input[type="text"]:hover, input[type="email"]:hover, input[type="search"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="tel"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover {
|
703
|
-
background-color: white; }
|
704
|
-
input[type="text"]:active, input[type="text"]:focus, input[type="email"]:active, input[type="email"]:focus, input[type="search"]:active, input[type="search"]:focus, input[type="date"]:active, input[type="date"]:focus, input[type="datetime"]:active, input[type="datetime"]:focus, input[type="datetime-local"]:active, input[type="datetime-local"]:focus, input[type="month"]:active, input[type="month"]:focus, input[type="number"]:active, input[type="number"]:focus, input[type="password"]:active, input[type="password"]:focus, input[type="tel"]:active, input[type="tel"]:focus, input[type="time"]:active, input[type="time"]:focus, input[type="url"]:active, input[type="url"]:focus, input[type="week"]:active, input[type="week"]:focus {
|
705
|
-
outline: none;
|
706
|
-
background-color: white;
|
707
|
-
border-color: #7f7f7f; }
|
708
|
-
|
709
|
-
progress {
|
710
|
-
width: 100%;
|
711
|
-
height: 15px; }
|
712
|
-
progress::-webkit-progress-bar {
|
713
|
-
min-height: 15px;
|
714
|
-
-webkit-appearance: none;
|
715
|
-
appearance: none;
|
716
|
-
-moz-appearance: none; }
|
717
|
-
progress::-webkit-progress-value {
|
718
|
-
display: block; }
|
719
|
-
|
720
|
-
body {
|
721
|
-
display: -moz-box;
|
722
|
-
display: -webkit-box;
|
723
|
-
display: -webkit-flex;
|
724
|
-
display: -ms-flexbox;
|
725
|
-
display: flex;
|
726
|
-
width: 100%;
|
727
|
-
-webkit-justify-content: space-between;
|
728
|
-
-moz-justify-content: space-between;
|
729
|
-
justify-content: space-between;
|
730
|
-
-webkit-align-items: stretch;
|
731
|
-
-moz-align-items: stretch;
|
732
|
-
align-items: stretch;
|
733
|
-
-webkit-flex-wrap: wrap;
|
734
|
-
-moz-flex-wrap: wrap;
|
735
|
-
flex-wrap: wrap; }
|
736
|
-
|
737
|
-
a {
|
738
|
-
text-decoration: none; }
|
739
|
-
|
740
|
-
a:link {
|
741
|
-
text-decoration: none; }
|
742
|
-
a:link:hover {
|
743
|
-
text-decoration: underline; }
|
744
|
-
|
745
|
-
h1, h2, h3, h4, h5, p {
|
746
|
-
margin-top: 0; }
|
747
|
-
|
748
|
-
.test {
|
749
|
-
display: bloct; }
|
1
|
+
{
|
2
|
+
"version": 3,
|
3
|
+
"mappings": ";AAuBA,CAAC;EACC,UAAU,EAAE,UAAU;;AAExB,IAAI;EACF,UAAU,EAAE,OAAkB;EAC9B,KAAK,EAAE,KAAK;;AAEd,UAAU;EACR,MAAM,EAAE,IAAI;EACZ,SAAS,EAAE,IAAI;;AAKjB,wBAAwB;EAFtB,SAAS,EAdF,KAAK;;AC6Bd,SAAS;EDTP,OAAO,EAAE,QAAQ;EACjB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,WAAW;EACpB,OAAO,EALI,IAAI;EC3Bf,KAAK,EAAE,IAAI;ED6CX,uBAAuB,EC5CN,aAAa;ED6C9B,oBAAoB,EC7CH,aAAa;ED8C9B,eAAe,EC9CE,aAAa;EDsD9B,mBAAmB,ECrDN,OAAO;EDsDpB,gBAAgB,ECtDH,OAAO;EDuDpB,WAAW,ECvDE,OAAO;EDsCpB,iBAAiB,EADD,IAAI;EAEpB,cAAc,EAFE,IAAI;EAGpB,SAAS,EAHO,IAAI;;AEkFtB,aAAa;EA3HX,MAAM,EAAE,IAAI;EDQZ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;EACd,WAAW,EAAE,CAAC;ECRd,SAAS,EAAE,OAAO;EAClB,OAAO,EAAE,GAAG;EDSZ,oCAAsC;IC+GxC,aAAa;MD9GT,KAAK,EAAE,iBAA6D;MACpE,KAAK,EAAE,IAAI;EAYX,oCAAuC;ICiG3C,aAAa;MDnHX,KAAK,EAAE,IAAI;MACX,OAAO,EAAE,KAAK;MACd,WAAW,EAAE,CAAC;EAEd,2DAAsC;IC+GxC,aAAa;MD9GT,KAAK,EAAE,gBAA6D;MACpE,KAAK,EAAE,IAAI;;EAcX,oCAAsC;IC+F1C,aAAa;MDnHX,KAAK,EAAE,IAAI;MACX,OAAO,EAAE,KAAK;MACd,WAAW,EAAE,CAAC;EAEd,2DAAsC;IC+GxC,aAAa;MD9GT,KAAK,EAAE,sBAA6D;MACpE,KAAK,EAAE,IAAI;;ECTb,gBAAE;IACA,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,MAAM;IACnB,MAAM,EAAE,CAAC;MACP,aAAM,EAAE,GAAG;IACb,OAAO,EAAE,QAAY;IACrB,QAAQ,EAAE,QAAQ;EAEpB,eAAC;IACC,KAAK,EAAE,KAAK;EAEd,oCAAgD;IA2GlD,aAAa;MA1GT,KAAK,EAAE,KAAK;MACZ,QAAQ,EAAE,QAAQ;MAClB,GAAG,EAAE,IAAI;MACT,IAAI,EAAE,CAAC;MACP,MAAM,EAAE,kBAAkB;MAC1B,QAAQ,EAAE,IAAI;EAEhB,gBAAE;IACA,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;IAET,mBAAE;MACA,QAAQ,EAAE,QAAQ;MAElB,8BAAY;QACV,aAAa,EAAE,IAAI;MAErB,sBAAE;QACA,WAAW,EAAE,IAAI;QAGf,4DAAQ;UACN,WAAW,EAAE,KAAK;UAClB,YAAY,EAAE,IAAgB;QAEhC,oCAAY;UACV,aAAa,EAAE,CAAC;MAEtB,+EAAmB;QACjB,OAAO,EAAE,QAAY;QACrB,OAAO,EAAE,KAAK;QAEd,uGAAO;UACL,OAAO,EAAE,IAAI;QAEf,iGAAO;UACL,gBAAgB,EAAE,wBAAwB;UAC1C,eAAe,EAAE,IAAI;MAEzB,sCAAkB;QAChB,MAAM,EAAE,GAAG;QACX,UAAU,EAAE,WAAW;QACvB,OAAO,EAAE,QAAQ;QACjB,SAAS,EAAE,MAAM;QACjB,KAAK,EAAE,IAAI;QAEX,4CAAO;UACL,UAAU,EAAE,wBAAwB;QAEtC,4CAAO;UACL,UAAU,EAAE,KAAK;UACjB,KAAK,EAAE,IAAI;UACX,OAAO,EAAE,GAAG;MAGd,2DAAS;QACP,OAAO,EAAE,IAAI;MAEf,kCAAS;QACP,OAAO,EAAE,KAAK;EAEtB,oBAAM;IACJ,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,CAAC;IACN,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;IACT,OAAO,EAAE,QAAQ;IAEjB,iDAAO;MACL,MAAM,EAAE,OAAO;MACf,OAAO,EAAE,YAAY;MACrB,UAAU,EAAE,MAAM;MAClB,KAAK,EAAE,IAAI;MACX,aAAa,EAAE,GAAG;MAClB,QAAQ,EAAE,QAAQ;MAElB,mEAAQ;QACN,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,QAAQ;QAClB,GAAG,EAAE,IAAI;QACT,KAAK,EAAE,GAAG;QACV,UAAU,EAAE,wBAAwB;QACpC,OAAO,EAAE,GAAG;QACZ,KAAK,EFrGL,IAAa;QEsGb,WAAW,EAAE,IAAI;QACjB,aAAa,EAAE,GAAG;QAClB,OAAO,EAAE,GAAG;QACZ,SAAS,EAAE,OAAO;QAClB,WAAW,EAAE,IAAI;MAEnB,6DAAO;QACL,WAAW,EAAE,kIAA8B;QAE3C,+EAAQ;UACN,OAAO,EAAE,KAAK;EAGpB,+DAAM;IACJ,OAAO,EAAE,KAAK;EAGd,yEAAM;IACJ,OAAO,EAAE,IAAI;;AChHrB,cAAc;EFDZ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;EACd,WAAW,EAAE,CAAC;EEnBd,OAAO,EHgBC,IAAI;EGfZ,UAAU,EAAE,KAAK;EACjB,KAAK,EHQC,IAAa;ECWnB,oCAAsC;IEHxC,cAAc;MFIV,KAAK,EAAE,iBAA6D;MACpE,KAAK,EAAE,IAAI;EAiBX,oCAAuC;IEtB3C,cAAc;MFDZ,KAAK,EAAE,IAAI;MACX,OAAO,EAAE,KAAK;MACd,WAAW,EAAE,CAAC;EAEd,2DAAsC;IEHxC,cAAc;MFIV,KAAK,EAAE,gBAA6D;MACpE,KAAK,EAAE,IAAI;;EAmBX,oCAAsC;IExB1C,cAAc;MFDZ,KAAK,EAAE,IAAI;MACX,OAAO,EAAE,KAAK;MACd,WAAW,EAAE,CAAC;EAEd,2DAAsC;IEHxC,cAAc;MFIV,KAAK,EAAE,sBAA6D;MACpE,KAAK,EAAE,IAAI;;EEnBb,oCAAgD;IAclD,cAAc;MAbV,KAAK,EAAE,kBAAkB;MACzB,QAAQ,EAAE,QAAQ;MAClB,OAAO,EAAE,GAAG;MACZ,IAAI,EAAE,KAAK;MACX,GAAG,EAAE,IAAI;MACT,MAAM,EAAE,kBAAkB;MAC1B,KAAK,EAAE,CAAC;MACR,QAAQ,EAAE,IAAI;EAGd,6BAAQ;IACN,WAAW,EAAE,IAAI;;ACcvB,YAAY;EJSV,OAAO,EAAE,QAAQ;EACjB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,WAAW;EACpB,OAAO,EIzCD,WAAW;EJgEjB,mBAAmB,EI/DN,UAAU;EJgEvB,gBAAgB,EIhEH,UAAU;EJiEvB,WAAW,EIjEE,UAAU;EJgDvB,iBAAiB,EADD,IAAI;EAEpB,cAAc,EAFE,IAAI;EAGpB,SAAS,EAHO,IAAI;EAMpB,uBAAuB,EInDN,aAAa;EJoD9B,oBAAoB,EIpDH,aAAa;EJqD9B,eAAe,EIrDE,aAAa;EJwD9B,qBAAqB,EIvDN,aAAa;EJwD5B,kBAAkB,EIxDH,aAAa;EJyD5B,aAAa,EIzDE,aAAa;EAC5B,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,MAAuC;EAChD,cAAC;IACC,KAAK,EAAE,KAAK;EACd,cAAC;IACC,MAAM,EAAE,CAAC;EACX,eAAE;IACA,MAAM,EAAE,MAAgB;IACxB,OAAO,EAAE,CAAC;IJwBZ,OAAO,EAAE,QAAQ;IACjB,OAAO,EAAE,WAAW;IACpB,OAAO,EAAE,YAAY;IACrB,OAAO,EAAE,WAAW;IACpB,OAAO,EI3BC,WAAW;IJwCnB,uBAAuB,EIvCJ,aAAa;IJwChC,oBAAoB,EIxCD,aAAa;IJyChC,eAAe,EIzCI,aAAa;IJ4ChC,qBAAqB,EI3CJ,aAAa;IJ4C9B,kBAAkB,EI5CD,aAAa;IJ6C9B,aAAa,EI7CI,aAAa;IJgD9B,mBAAmB,EI/CJ,MAAM;IJgDrB,gBAAgB,EIhDD,MAAM;IJiDrB,WAAW,EIjDI,MAAM;IJgCrB,iBAAiB,EADD,IAAI;IAEpB,cAAc,EAFE,IAAI;IAGpB,SAAS,EAHO,IAAI;II7BlB,kBAAE;MACA,UAAU,EAAE,IAAI;MAChB,MAAM,EAAE,OAAsB;IAI5B,4CAAC;MACC,SAAS,EAAE,OAAO;;ACP5B,SAAS;EAtBP,OAAO,EAAE,QAAQ;EACjB,gBAAgB,EAAE,kBAAM;EACxB,KAAK,EAAE,KAAK;EACZ,eAAe,EAAE,IAAI;EACrB,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,YAAY;EACrB,kBAAkB,EAAE,GAAG;EACvB,qBAAqB,EAAE,GAAG;EAC1B,aAAa,EAAE,GAAG;EAClB,aAAa,EAAE,IAAI;EACnB,SAAS,EAAE,OAAO;EAElB,eAAO;IACL,eAAe,EAAE,IAAI;IACrB,UAAU,EAAE,2CAA2C;EAEzD,gBAAQ;IACN,eAAe,EAAE,IAAI;IACrB,UAAU,EAAE,0CAA0C;;ACpBxD,wRAAe;EAab,MAAM,EAAE,iBAAe;EACvB,gBAAgB,EAAE,WAAW;EAC7B,SAAS,EAAE,OAAO;EAClB,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,IAAI;EAEX,sWAAO;IACL,gBAAgB,EAAE,KAAK;EAEzB,2tBAAiB;IACf,OAAO,EAAE,IAAI;IACb,gBAAgB,EAAE,KAAK;IACvB,YAAY,ENlBD,OAAO;;AORxB,QAAQ;EACN,KAAK,EAAE,IAAI;EACX,MAAM,EPgBE,IAAI;EOfZ,8BAAuB;IACrB,UAAU,EPcJ,IAAI;IObV,kBAAkB,EAAE,IAAI;IACxB,UAAU,EAAE,IAAI;IAChB,eAAe,EAAE,IAAI;EACvB,gCAAyB;IACvB,OAAO,EAAE,KAAK;;ACMlB,YAAY;EAdV,QAAQ,EAAE,KAAK;EACf,GAAG,EAAE,IAAI;EACT,KAAK,EAAE,KAAK;EACZ,WAAW,EAAE,MAAM;EACnB,IAAI,EAAE,GAAG;EAET,oBAAO;IACL,UAAU,ERKL,MAAM;IQJX,KAAK,ERGD,IAAa;IQFjB,OAAO,EAAE,GAAG;IACZ,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,MAAM;IAClB,SAAS,EAAE,OAAO;;ARoEtB,IAAI;EAxCF,OAAO,EAAE,QAAQ;EACjB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,WAAW;EACpB,OAAO,EALI,IAAI;EC3Bf,KAAK,EAAE,IAAI;ED6CX,uBAAuB,EC5CN,aAAa;ED6C9B,oBAAoB,EC7CH,aAAa;ED8C9B,eAAe,EC9CE,aAAa;EDsD9B,mBAAmB,ECrDN,OAAO;EDsDpB,gBAAgB,ECtDH,OAAO;EDuDpB,WAAW,ECvDE,OAAO;EDsCpB,iBAAiB,EADD,IAAI;EAEpB,cAAc,EAFE,IAAI;EAGpB,SAAS,EAHO,IAAI;;AAgCtB,CAAC;EACC,eAAe,EAAE,IAAI;;AAEvB,MAAM;EACJ,eAAe,EAAE,IAAI;EAErB,YAAO;IACL,eAAe,EAAE,SAAS;;AAE9B,qBAAqB;EAEjB,UAAG,EAAE,CAAC;;AAYV,KAAK;EACH,OAAO,EAAE,KAAK",
|
4
|
+
"sources": ["../main.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_grid.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_sidebar.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_mainpane.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_navbar.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_buttons.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_forms.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_progress.sass","../../../../../../../Users/adamkochanowicz/Sites/application/lib/sass/_status.sass"],
|
5
|
+
"names": [],
|
6
|
+
"file": "main.css"
|
7
|
+
}
|
data/lib/appcss/version.rb
CHANGED