rocket_cms 0.15.5 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e0d000d086cff7b1de0267cb4d597c6bb672bf4
|
4
|
+
data.tar.gz: 0b3a5cfa6176f94c2c9e16d89b53489b52254824
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 051ae377dcb68956d51cfc622595d3c1772ad21acbe057bf043d4d27cd61752cc95ffebbde216ee0d70f262cd0663d3a75984cdd2189220599b501dfbbdf345c
|
7
|
+
data.tar.gz: dd51cbfe007fbbad84c2c0c28bf63ef8b1123ee4fce28c10336d06f69cc9f608be3a8f419fbb54016b364653244dcab6fc24007f56f7d79c5559066ffa307132
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rocket_cms (0.
|
4
|
+
rocket_cms (0.16.0)
|
5
5
|
addressable
|
6
6
|
coffee-rails
|
7
7
|
jquery-rails
|
@@ -88,10 +88,8 @@ GEM
|
|
88
88
|
mini_portile2 (2.1.0)
|
89
89
|
minitest (5.9.1)
|
90
90
|
nio4r (1.2.1)
|
91
|
-
nokogiri (1.6.8)
|
91
|
+
nokogiri (1.6.8.1)
|
92
92
|
mini_portile2 (~> 2.1.0)
|
93
|
-
pkg-config (~> 1.1.7)
|
94
|
-
pkg-config (1.1.7)
|
95
93
|
rack (2.0.1)
|
96
94
|
rack-test (0.6.3)
|
97
95
|
rack (>= 1.0)
|
@@ -152,4 +150,4 @@ DEPENDENCIES
|
|
152
150
|
rocket_cms!
|
153
151
|
|
154
152
|
BUNDLED WITH
|
155
|
-
1.
|
153
|
+
1.13.1
|
@@ -7,7 +7,6 @@
|
|
7
7
|
|
8
8
|
.message
|
9
9
|
border-radius: 3px
|
10
|
-
behavior: url('/PIE.htc')
|
11
10
|
text-align: center
|
12
11
|
margin: 0 auto 15px
|
13
12
|
color: white
|
@@ -35,7 +34,7 @@
|
|
35
34
|
.success
|
36
35
|
border: 1px solid #009357
|
37
36
|
background: #02bb6f
|
38
|
-
|
37
|
+
background: linear-gradient(top, #02bb6f, #019f4b)
|
39
38
|
text-shadow: 0px 1px #006d1c
|
40
39
|
a.close_flash
|
41
40
|
color: #004b2c
|
@@ -43,7 +42,7 @@
|
|
43
42
|
.notice
|
44
43
|
border: 1px solid #69b3d1
|
45
44
|
background: #79cdee
|
46
|
-
|
45
|
+
background: linear-gradient(top, #79cdee, #56b6e5)
|
47
46
|
text-shadow: 0px 1px #248cd1
|
48
47
|
a.close_flash
|
49
48
|
color: #2f5f72
|
@@ -51,7 +50,7 @@
|
|
51
50
|
.warning
|
52
51
|
border: 1px solid #ce8f4b
|
53
52
|
background: #fbae5c
|
54
|
-
|
53
|
+
background: linear-gradient(top, #fbae5c, #f9903b)
|
55
54
|
text-shadow: 0px 1px #f57024
|
56
55
|
a.close_flash
|
57
56
|
color: #865623
|
@@ -59,7 +58,7 @@
|
|
59
58
|
.error, .alert
|
60
59
|
border: 1px solid #ce4549
|
61
60
|
background: #f0565b
|
62
|
-
|
61
|
+
background: linear-gradient(top, #f0565b, #e83639)
|
63
62
|
text-shadow: 0px 1px #d71012
|
64
63
|
a.close_flash
|
65
64
|
color: #782124
|
@@ -1,406 +1,461 @@
|
|
1
|
-
/*! normalize.css
|
1
|
+
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
/**
|
4
|
+
* 1. Change the default font family in all browsers (opinionated).
|
5
|
+
* 2. Correct the line height in all browsers.
|
6
|
+
* 3. Prevent adjustments of font size after orientation changes in
|
7
|
+
* IE on Windows Phone and in iOS.
|
8
|
+
*/
|
9
|
+
|
10
|
+
/* Document
|
11
|
+
========================================================================== */
|
12
|
+
|
13
|
+
html {
|
14
|
+
font-family: sans-serif; /* 1 */
|
15
|
+
line-height: 1.15; /* 2 */
|
16
|
+
-ms-text-size-adjust: 100%; /* 3 */
|
17
|
+
-webkit-text-size-adjust: 100%; /* 3 */
|
18
|
+
}
|
19
|
+
|
20
|
+
/* Sections
|
5
21
|
========================================================================== */
|
6
22
|
|
7
23
|
/**
|
8
|
-
*
|
24
|
+
* Remove the margin in all browsers (opinionated).
|
25
|
+
*/
|
26
|
+
|
27
|
+
body {
|
28
|
+
margin: 0;
|
29
|
+
}
|
30
|
+
|
31
|
+
/**
|
32
|
+
* Add the correct display in IE 9-.
|
9
33
|
*/
|
10
34
|
|
11
35
|
article,
|
12
36
|
aside,
|
13
|
-
details,
|
14
|
-
figcaption,
|
15
|
-
figure,
|
16
37
|
footer,
|
17
38
|
header,
|
18
|
-
hgroup,
|
19
|
-
main,
|
20
39
|
nav,
|
21
|
-
section
|
22
|
-
|
23
|
-
display: block;
|
40
|
+
section {
|
41
|
+
display: block;
|
24
42
|
}
|
25
43
|
|
26
44
|
/**
|
27
|
-
* Correct `
|
45
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
46
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
28
47
|
*/
|
29
48
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
display: inline-block;
|
49
|
+
h1 {
|
50
|
+
font-size: 2em;
|
51
|
+
margin: 0.67em 0;
|
34
52
|
}
|
35
53
|
|
54
|
+
/* Grouping content
|
55
|
+
========================================================================== */
|
56
|
+
|
36
57
|
/**
|
37
|
-
*
|
38
|
-
*
|
58
|
+
* Add the correct display in IE 9-.
|
59
|
+
* 1. Add the correct display in IE.
|
39
60
|
*/
|
40
61
|
|
41
|
-
|
42
|
-
|
43
|
-
|
62
|
+
figcaption,
|
63
|
+
figure,
|
64
|
+
main { /* 1 */
|
65
|
+
display: block;
|
44
66
|
}
|
45
67
|
|
46
68
|
/**
|
47
|
-
*
|
48
|
-
* Hide the `template` element in IE, Safari, and Firefox < 22.
|
69
|
+
* Add the correct margin in IE 8.
|
49
70
|
*/
|
50
71
|
|
51
|
-
|
52
|
-
|
53
|
-
display: none;
|
72
|
+
figure {
|
73
|
+
margin: 1em 40px;
|
54
74
|
}
|
55
75
|
|
56
|
-
/* ==========================================================================
|
57
|
-
Base
|
58
|
-
========================================================================== */
|
59
|
-
|
60
76
|
/**
|
61
|
-
* 1.
|
62
|
-
* 2.
|
63
|
-
* user zoom.
|
77
|
+
* 1. Add the correct box sizing in Firefox.
|
78
|
+
* 2. Show the overflow in Edge and IE.
|
64
79
|
*/
|
65
80
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
81
|
+
hr {
|
82
|
+
box-sizing: content-box; /* 1 */
|
83
|
+
height: 0; /* 1 */
|
84
|
+
overflow: visible; /* 2 */
|
70
85
|
}
|
71
86
|
|
72
87
|
/**
|
73
|
-
*
|
88
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
89
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
74
90
|
*/
|
75
91
|
|
76
|
-
|
77
|
-
|
92
|
+
pre {
|
93
|
+
font-family: monospace, monospace; /* 1 */
|
94
|
+
font-size: 1em; /* 2 */
|
78
95
|
}
|
79
96
|
|
80
|
-
/*
|
81
|
-
Links
|
97
|
+
/* Text-level semantics
|
82
98
|
========================================================================== */
|
83
99
|
|
84
100
|
/**
|
85
|
-
* Remove the gray background
|
101
|
+
* 1. Remove the gray background on active links in IE 10.
|
102
|
+
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
86
103
|
*/
|
87
104
|
|
88
105
|
a {
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
/**
|
93
|
-
* Address `outline` inconsistency between Chrome and other browsers.
|
94
|
-
*/
|
95
|
-
|
96
|
-
a:focus {
|
97
|
-
outline: thin dotted;
|
106
|
+
background-color: transparent; /* 1 */
|
107
|
+
-webkit-text-decoration-skip: objects; /* 2 */
|
98
108
|
}
|
99
109
|
|
100
110
|
/**
|
101
|
-
*
|
111
|
+
* Remove the outline on focused links when they are also active or hovered
|
112
|
+
* in all browsers (opinionated).
|
102
113
|
*/
|
103
114
|
|
104
115
|
a:active,
|
105
116
|
a:hover {
|
106
|
-
|
117
|
+
outline-width: 0;
|
107
118
|
}
|
108
119
|
|
109
|
-
/* ==========================================================================
|
110
|
-
Typography
|
111
|
-
========================================================================== */
|
112
|
-
|
113
120
|
/**
|
114
|
-
*
|
115
|
-
*
|
121
|
+
* 1. Remove the bottom border in Firefox 39-.
|
122
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
116
123
|
*/
|
117
124
|
|
118
|
-
|
119
|
-
|
120
|
-
|
125
|
+
abbr[title] {
|
126
|
+
border-bottom: none; /* 1 */
|
127
|
+
text-decoration: underline; /* 2 */
|
128
|
+
text-decoration: underline dotted; /* 2 */
|
121
129
|
}
|
122
130
|
|
123
131
|
/**
|
124
|
-
*
|
132
|
+
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
125
133
|
*/
|
126
134
|
|
127
|
-
|
128
|
-
|
135
|
+
b,
|
136
|
+
strong {
|
137
|
+
font-weight: inherit;
|
129
138
|
}
|
130
139
|
|
131
140
|
/**
|
132
|
-
*
|
141
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
133
142
|
*/
|
134
143
|
|
135
144
|
b,
|
136
145
|
strong {
|
137
|
-
|
146
|
+
font-weight: bolder;
|
138
147
|
}
|
139
148
|
|
140
149
|
/**
|
141
|
-
*
|
150
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
151
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
142
152
|
*/
|
143
153
|
|
144
|
-
|
145
|
-
|
154
|
+
code,
|
155
|
+
kbd,
|
156
|
+
samp {
|
157
|
+
font-family: monospace, monospace; /* 1 */
|
158
|
+
font-size: 1em; /* 2 */
|
146
159
|
}
|
147
160
|
|
148
161
|
/**
|
149
|
-
*
|
162
|
+
* Add the correct font style in Android 4.3-.
|
150
163
|
*/
|
151
164
|
|
152
|
-
|
153
|
-
|
154
|
-
box-sizing: content-box;
|
155
|
-
height: 0;
|
165
|
+
dfn {
|
166
|
+
font-style: italic;
|
156
167
|
}
|
157
168
|
|
158
169
|
/**
|
159
|
-
*
|
170
|
+
* Add the correct background and color in IE 9-.
|
160
171
|
*/
|
161
172
|
|
162
173
|
mark {
|
163
|
-
|
164
|
-
|
174
|
+
background-color: #ff0;
|
175
|
+
color: #000;
|
165
176
|
}
|
166
177
|
|
167
178
|
/**
|
168
|
-
*
|
179
|
+
* Add the correct font size in all browsers.
|
169
180
|
*/
|
170
181
|
|
171
|
-
|
172
|
-
|
173
|
-
pre,
|
174
|
-
samp {
|
175
|
-
font-family: monospace, serif;
|
176
|
-
font-size: 1em;
|
182
|
+
small {
|
183
|
+
font-size: 80%;
|
177
184
|
}
|
178
185
|
|
179
186
|
/**
|
180
|
-
*
|
187
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
188
|
+
* all browsers.
|
181
189
|
*/
|
182
190
|
|
183
|
-
|
184
|
-
|
191
|
+
sub,
|
192
|
+
sup {
|
193
|
+
font-size: 75%;
|
194
|
+
line-height: 0;
|
195
|
+
position: relative;
|
196
|
+
vertical-align: baseline;
|
197
|
+
}
|
198
|
+
|
199
|
+
sub {
|
200
|
+
bottom: -0.25em;
|
201
|
+
}
|
202
|
+
|
203
|
+
sup {
|
204
|
+
top: -0.5em;
|
185
205
|
}
|
186
206
|
|
207
|
+
/* Embedded content
|
208
|
+
========================================================================== */
|
209
|
+
|
187
210
|
/**
|
188
|
-
*
|
211
|
+
* Add the correct display in IE 9-.
|
189
212
|
*/
|
190
213
|
|
191
|
-
|
192
|
-
|
214
|
+
audio,
|
215
|
+
video {
|
216
|
+
display: inline-block;
|
193
217
|
}
|
194
218
|
|
195
219
|
/**
|
196
|
-
*
|
220
|
+
* Add the correct display in iOS 4-7.
|
197
221
|
*/
|
198
222
|
|
199
|
-
|
200
|
-
|
223
|
+
audio:not([controls]) {
|
224
|
+
display: none;
|
225
|
+
height: 0;
|
201
226
|
}
|
202
227
|
|
203
228
|
/**
|
204
|
-
*
|
229
|
+
* Remove the border on images inside links in IE 10-.
|
205
230
|
*/
|
206
231
|
|
207
|
-
|
208
|
-
|
209
|
-
font-size: 75%;
|
210
|
-
line-height: 0;
|
211
|
-
position: relative;
|
212
|
-
vertical-align: baseline;
|
232
|
+
img {
|
233
|
+
border-style: none;
|
213
234
|
}
|
214
235
|
|
215
|
-
|
216
|
-
|
217
|
-
|
236
|
+
/**
|
237
|
+
* Hide the overflow in IE.
|
238
|
+
*/
|
218
239
|
|
219
|
-
|
220
|
-
|
240
|
+
svg:not(:root) {
|
241
|
+
overflow: hidden;
|
221
242
|
}
|
222
243
|
|
223
|
-
/*
|
224
|
-
Embedded content
|
244
|
+
/* Forms
|
225
245
|
========================================================================== */
|
226
246
|
|
227
247
|
/**
|
228
|
-
*
|
248
|
+
* 1. Change the font styles in all browsers (opinionated).
|
249
|
+
* 2. Remove the margin in Firefox and Safari.
|
229
250
|
*/
|
230
251
|
|
231
|
-
|
232
|
-
|
252
|
+
button,
|
253
|
+
input,
|
254
|
+
optgroup,
|
255
|
+
select,
|
256
|
+
textarea {
|
257
|
+
font-family: sans-serif; /* 1 */
|
258
|
+
font-size: 100%; /* 1 */
|
259
|
+
line-height: 1.15; /* 1 */
|
260
|
+
margin: 0; /* 2 */
|
233
261
|
}
|
234
262
|
|
235
263
|
/**
|
236
|
-
*
|
264
|
+
* Show the overflow in IE.
|
265
|
+
* 1. Show the overflow in Edge.
|
237
266
|
*/
|
238
267
|
|
239
|
-
|
240
|
-
|
268
|
+
button,
|
269
|
+
input { /* 1 */
|
270
|
+
overflow: visible;
|
241
271
|
}
|
242
272
|
|
243
|
-
|
244
|
-
|
245
|
-
|
273
|
+
/**
|
274
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
275
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
276
|
+
*/
|
277
|
+
|
278
|
+
button,
|
279
|
+
select { /* 1 */
|
280
|
+
text-transform: none;
|
281
|
+
}
|
246
282
|
|
247
283
|
/**
|
248
|
-
*
|
284
|
+
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
285
|
+
* controls in Android 4.
|
286
|
+
* 2. Correct the inability to style clickable types in iOS and Safari.
|
249
287
|
*/
|
250
288
|
|
251
|
-
|
252
|
-
|
289
|
+
button,
|
290
|
+
html [type="button"], /* 1 */
|
291
|
+
[type="reset"],
|
292
|
+
[type="submit"] {
|
293
|
+
-webkit-appearance: button; /* 2 */
|
253
294
|
}
|
254
295
|
|
255
|
-
|
256
|
-
|
257
|
-
|
296
|
+
/**
|
297
|
+
* Remove the inner border and padding in Firefox.
|
298
|
+
*/
|
299
|
+
|
300
|
+
button::-moz-focus-inner,
|
301
|
+
[type="button"]::-moz-focus-inner,
|
302
|
+
[type="reset"]::-moz-focus-inner,
|
303
|
+
[type="submit"]::-moz-focus-inner {
|
304
|
+
border-style: none;
|
305
|
+
padding: 0;
|
306
|
+
}
|
307
|
+
|
308
|
+
/**
|
309
|
+
* Restore the focus styles unset by the previous rule.
|
310
|
+
*/
|
311
|
+
|
312
|
+
button:-moz-focusring,
|
313
|
+
[type="button"]:-moz-focusring,
|
314
|
+
[type="reset"]:-moz-focusring,
|
315
|
+
[type="submit"]:-moz-focusring {
|
316
|
+
outline: 1px dotted ButtonText;
|
317
|
+
}
|
258
318
|
|
259
319
|
/**
|
260
|
-
*
|
320
|
+
* Change the border, margin, and padding in all browsers (opinionated).
|
261
321
|
*/
|
262
322
|
|
263
323
|
fieldset {
|
264
|
-
|
265
|
-
|
266
|
-
|
324
|
+
border: 1px solid #c0c0c0;
|
325
|
+
margin: 0 2px;
|
326
|
+
padding: 0.35em 0.625em 0.75em;
|
267
327
|
}
|
268
328
|
|
269
329
|
/**
|
270
|
-
* 1. Correct
|
271
|
-
* 2.
|
330
|
+
* 1. Correct the text wrapping in Edge and IE.
|
331
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
332
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
333
|
+
* `fieldset` elements in all browsers.
|
272
334
|
*/
|
273
335
|
|
274
336
|
legend {
|
275
|
-
|
276
|
-
|
337
|
+
box-sizing: border-box; /* 1 */
|
338
|
+
color: inherit; /* 2 */
|
339
|
+
display: table; /* 1 */
|
340
|
+
max-width: 100%; /* 1 */
|
341
|
+
padding: 0; /* 3 */
|
342
|
+
white-space: normal; /* 1 */
|
277
343
|
}
|
278
344
|
|
279
345
|
/**
|
280
|
-
* 1.
|
281
|
-
* 2.
|
282
|
-
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
346
|
+
* 1. Add the correct display in IE 9-.
|
347
|
+
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
283
348
|
*/
|
284
349
|
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
textarea {
|
289
|
-
font-family: inherit; /* 1 */
|
290
|
-
font-size: 100%; /* 2 */
|
291
|
-
margin: 0; /* 3 */
|
350
|
+
progress {
|
351
|
+
display: inline-block; /* 1 */
|
352
|
+
vertical-align: baseline; /* 2 */
|
292
353
|
}
|
293
354
|
|
294
355
|
/**
|
295
|
-
*
|
296
|
-
* the UA stylesheet.
|
356
|
+
* Remove the default vertical scrollbar in IE.
|
297
357
|
*/
|
298
358
|
|
299
|
-
|
300
|
-
|
301
|
-
line-height: normal;
|
359
|
+
textarea {
|
360
|
+
overflow: auto;
|
302
361
|
}
|
303
362
|
|
304
363
|
/**
|
305
|
-
*
|
306
|
-
*
|
307
|
-
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
|
308
|
-
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
364
|
+
* 1. Add the correct box sizing in IE 10-.
|
365
|
+
* 2. Remove the padding in IE 10-.
|
309
366
|
*/
|
310
367
|
|
311
|
-
|
312
|
-
|
313
|
-
|
368
|
+
[type="checkbox"],
|
369
|
+
[type="radio"] {
|
370
|
+
box-sizing: border-box; /* 1 */
|
371
|
+
padding: 0; /* 2 */
|
314
372
|
}
|
315
373
|
|
316
374
|
/**
|
317
|
-
*
|
318
|
-
* and `video` controls.
|
319
|
-
* 2. Correct inability to style clickable `input` types in iOS.
|
320
|
-
* 3. Improve usability and consistency of cursor style between image-type
|
321
|
-
* `input` and others.
|
375
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
322
376
|
*/
|
323
377
|
|
324
|
-
button,
|
325
|
-
|
326
|
-
|
327
|
-
input[type="submit"] {
|
328
|
-
-webkit-appearance: button; /* 2 */
|
329
|
-
cursor: pointer; /* 3 */
|
378
|
+
[type="number"]::-webkit-inner-spin-button,
|
379
|
+
[type="number"]::-webkit-outer-spin-button {
|
380
|
+
height: auto;
|
330
381
|
}
|
331
382
|
|
332
383
|
/**
|
333
|
-
*
|
384
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
385
|
+
* 2. Correct the outline style in Safari.
|
334
386
|
*/
|
335
387
|
|
336
|
-
|
337
|
-
|
338
|
-
|
388
|
+
[type="search"] {
|
389
|
+
-webkit-appearance: textfield; /* 1 */
|
390
|
+
outline-offset: -2px; /* 2 */
|
339
391
|
}
|
340
392
|
|
341
393
|
/**
|
342
|
-
*
|
343
|
-
* 2. Remove excess padding in IE 8/9/10.
|
394
|
+
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
344
395
|
*/
|
345
396
|
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
padding: 0; /* 2 */
|
397
|
+
[type="search"]::-webkit-search-cancel-button,
|
398
|
+
[type="search"]::-webkit-search-decoration {
|
399
|
+
-webkit-appearance: none;
|
350
400
|
}
|
351
401
|
|
352
402
|
/**
|
353
|
-
* 1.
|
354
|
-
* 2.
|
355
|
-
* (include `-moz` to future-proof).
|
403
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
404
|
+
* 2. Change font properties to `inherit` in Safari.
|
356
405
|
*/
|
357
406
|
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
-webkit-box-sizing: content-box; /* 2 */
|
362
|
-
box-sizing: content-box;
|
407
|
+
::-webkit-file-upload-button {
|
408
|
+
-webkit-appearance: button; /* 1 */
|
409
|
+
font: inherit; /* 2 */
|
363
410
|
}
|
364
411
|
|
365
|
-
|
366
|
-
|
367
|
-
|
412
|
+
/* Interactive
|
413
|
+
========================================================================== */
|
414
|
+
|
415
|
+
/*
|
416
|
+
* Add the correct display in IE 9-.
|
417
|
+
* 1. Add the correct display in Edge, IE, and Firefox.
|
368
418
|
*/
|
369
419
|
|
370
|
-
|
371
|
-
|
372
|
-
|
420
|
+
details, /* 1 */
|
421
|
+
menu {
|
422
|
+
display: block;
|
373
423
|
}
|
374
424
|
|
425
|
+
/*
|
426
|
+
* Add the correct display in all browsers.
|
427
|
+
*/
|
428
|
+
|
429
|
+
summary {
|
430
|
+
display: list-item;
|
431
|
+
}
|
432
|
+
|
433
|
+
/* Scripting
|
434
|
+
========================================================================== */
|
435
|
+
|
375
436
|
/**
|
376
|
-
*
|
437
|
+
* Add the correct display in IE 9-.
|
377
438
|
*/
|
378
439
|
|
379
|
-
|
380
|
-
|
381
|
-
border: 0;
|
382
|
-
padding: 0;
|
440
|
+
canvas {
|
441
|
+
display: inline-block;
|
383
442
|
}
|
384
443
|
|
385
444
|
/**
|
386
|
-
*
|
387
|
-
* 2. Improve readability and alignment in all browsers.
|
445
|
+
* Add the correct display in IE.
|
388
446
|
*/
|
389
447
|
|
390
|
-
|
391
|
-
|
392
|
-
vertical-align: top; /* 2 */
|
448
|
+
template {
|
449
|
+
display: none;
|
393
450
|
}
|
394
451
|
|
395
|
-
/*
|
396
|
-
Tables
|
452
|
+
/* Hidden
|
397
453
|
========================================================================== */
|
398
454
|
|
399
455
|
/**
|
400
|
-
*
|
456
|
+
* Add the correct display in IE 10-.
|
401
457
|
*/
|
402
458
|
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
}
|
459
|
+
[hidden] {
|
460
|
+
display: none;
|
461
|
+
}
|
data/lib/manual_slug/mongoid.rb
CHANGED
data/lib/rocket_cms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rocket_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- glebtv
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|