rocket_cms 0.15.5 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea514224d9c3716dfee3fa9acc61dbb28dd78487
4
- data.tar.gz: 8d3d12ec8756ce47268d48689deeaa9d66b10c4d
3
+ metadata.gz: 0e0d000d086cff7b1de0267cb4d597c6bb672bf4
4
+ data.tar.gz: 0b3a5cfa6176f94c2c9e16d89b53489b52254824
5
5
  SHA512:
6
- metadata.gz: a36b3d8798202c087a48a8aa564484734b741e8e33a96c91765c25f1aa1e19d75d5acd062d9783dc3ae9596df440ebd76f8671c55256fef8db4d62e37051b660
7
- data.tar.gz: 4407679edf73811374122e2729650a4ae3bd1118db40c5c59ef386095b68eaa1b094233107edd4caa9aca0650f94a0e954c11dd6efe6f1dd545efa633df557c3
6
+ metadata.gz: 051ae377dcb68956d51cfc622595d3c1772ad21acbe057bf043d4d27cd61752cc95ffebbde216ee0d70f262cd0663d3a75984cdd2189220599b501dfbbdf345c
7
+ data.tar.gz: dd51cbfe007fbbad84c2c0c28bf63ef8b1123ee4fce28c10336d06f69cc9f608be3a8f419fbb54016b364653244dcab6fc24007f56f7d79c5559066ffa307132
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rocket_cms (0.15.5)
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.12.5
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
- +background(linear-gradient(top, #02bb6f, #019f4b))
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
- +background(linear-gradient(top, #79cdee, #56b6e5))
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
- +background(linear-gradient(top, #fbae5c, #f9903b))
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
- +background(linear-gradient(top, #f0565b, #e83639))
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 v2.1.3 | MIT License | git.io/normalize */
1
+ /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
2
2
 
3
- /* ==========================================================================
4
- HTML5 display definitions
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
- * Correct `block` display not defined in IE 8/9.
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
- summary {
23
- display: block;
40
+ section {
41
+ display: block;
24
42
  }
25
43
 
26
44
  /**
27
- * Correct `inline-block` display not defined in IE 8/9.
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
- audio,
31
- canvas,
32
- video {
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
- * Prevent modern browsers from displaying `audio` without controls.
38
- * Remove excess height in iOS 5 devices.
58
+ * Add the correct display in IE 9-.
59
+ * 1. Add the correct display in IE.
39
60
  */
40
61
 
41
- audio:not([controls]) {
42
- display: none;
43
- height: 0;
62
+ figcaption,
63
+ figure,
64
+ main { /* 1 */
65
+ display: block;
44
66
  }
45
67
 
46
68
  /**
47
- * Address `[hidden]` styling not present in IE 8/9.
48
- * Hide the `template` element in IE, Safari, and Firefox < 22.
69
+ * Add the correct margin in IE 8.
49
70
  */
50
71
 
51
- [hidden],
52
- template {
53
- display: none;
72
+ figure {
73
+ margin: 1em 40px;
54
74
  }
55
75
 
56
- /* ==========================================================================
57
- Base
58
- ========================================================================== */
59
-
60
76
  /**
61
- * 1. Set default font family to sans-serif.
62
- * 2. Prevent iOS text size adjust after orientation change, without disabling
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
- html {
67
- font-family: sans-serif; /* 1 */
68
- -ms-text-size-adjust: 100%; /* 2 */
69
- -webkit-text-size-adjust: 100%; /* 2 */
81
+ hr {
82
+ box-sizing: content-box; /* 1 */
83
+ height: 0; /* 1 */
84
+ overflow: visible; /* 2 */
70
85
  }
71
86
 
72
87
  /**
73
- * Remove default margin.
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
- body {
77
- margin: 0;
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 color from active links in IE 10.
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
- background: transparent;
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
- * Improve readability when focused and also mouse hovered in all browsers.
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
- outline: 0;
117
+ outline-width: 0;
107
118
  }
108
119
 
109
- /* ==========================================================================
110
- Typography
111
- ========================================================================== */
112
-
113
120
  /**
114
- * Address variable `h1` font-size and margin within `section` and `article`
115
- * contexts in Firefox 4+, Safari 5, and Chrome.
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
- h1 {
119
- font-size: 2em;
120
- margin: 0.67em 0;
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
- * Address styling not present in IE 8/9, Safari 5, and Chrome.
132
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
125
133
  */
126
134
 
127
- abbr[title] {
128
- border-bottom: 1px dotted;
135
+ b,
136
+ strong {
137
+ font-weight: inherit;
129
138
  }
130
139
 
131
140
  /**
132
- * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
141
+ * Add the correct font weight in Chrome, Edge, and Safari.
133
142
  */
134
143
 
135
144
  b,
136
145
  strong {
137
- font-weight: bold;
146
+ font-weight: bolder;
138
147
  }
139
148
 
140
149
  /**
141
- * Address styling not present in Safari 5 and Chrome.
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
- dfn {
145
- font-style: italic;
154
+ code,
155
+ kbd,
156
+ samp {
157
+ font-family: monospace, monospace; /* 1 */
158
+ font-size: 1em; /* 2 */
146
159
  }
147
160
 
148
161
  /**
149
- * Address differences between Firefox and other browsers.
162
+ * Add the correct font style in Android 4.3-.
150
163
  */
151
164
 
152
- hr {
153
- -moz-box-sizing: content-box;
154
- box-sizing: content-box;
155
- height: 0;
165
+ dfn {
166
+ font-style: italic;
156
167
  }
157
168
 
158
169
  /**
159
- * Address styling not present in IE 8/9.
170
+ * Add the correct background and color in IE 9-.
160
171
  */
161
172
 
162
173
  mark {
163
- background: #ff0;
164
- color: #000;
174
+ background-color: #ff0;
175
+ color: #000;
165
176
  }
166
177
 
167
178
  /**
168
- * Correct font family set oddly in Safari 5 and Chrome.
179
+ * Add the correct font size in all browsers.
169
180
  */
170
181
 
171
- code,
172
- kbd,
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
- * Improve readability of pre-formatted text in all browsers.
187
+ * Prevent `sub` and `sup` elements from affecting the line height in
188
+ * all browsers.
181
189
  */
182
190
 
183
- pre {
184
- white-space: pre-wrap;
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
- * Set consistent quote types.
211
+ * Add the correct display in IE 9-.
189
212
  */
190
213
 
191
- q {
192
- quotes: "\201C" "\201D" "\2018" "\2019";
214
+ audio,
215
+ video {
216
+ display: inline-block;
193
217
  }
194
218
 
195
219
  /**
196
- * Address inconsistent and variable font size in all browsers.
220
+ * Add the correct display in iOS 4-7.
197
221
  */
198
222
 
199
- small {
200
- font-size: 80%;
223
+ audio:not([controls]) {
224
+ display: none;
225
+ height: 0;
201
226
  }
202
227
 
203
228
  /**
204
- * Prevent `sub` and `sup` affecting `line-height` in all browsers.
229
+ * Remove the border on images inside links in IE 10-.
205
230
  */
206
231
 
207
- sub,
208
- sup {
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
- sup {
216
- top: -0.5em;
217
- }
236
+ /**
237
+ * Hide the overflow in IE.
238
+ */
218
239
 
219
- sub {
220
- bottom: -0.25em;
240
+ svg:not(:root) {
241
+ overflow: hidden;
221
242
  }
222
243
 
223
- /* ==========================================================================
224
- Embedded content
244
+ /* Forms
225
245
  ========================================================================== */
226
246
 
227
247
  /**
228
- * Remove border when inside `a` element in IE 8/9.
248
+ * 1. Change the font styles in all browsers (opinionated).
249
+ * 2. Remove the margin in Firefox and Safari.
229
250
  */
230
251
 
231
- img {
232
- border: 0;
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
- * Correct overflow displayed oddly in IE 9.
264
+ * Show the overflow in IE.
265
+ * 1. Show the overflow in Edge.
237
266
  */
238
267
 
239
- svg:not(:root) {
240
- overflow: hidden;
268
+ button,
269
+ input { /* 1 */
270
+ overflow: visible;
241
271
  }
242
272
 
243
- /* ==========================================================================
244
- Figures
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
- * Address margin not present in IE 8/9 and Safari 5.
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
- figure {
252
- margin: 0;
289
+ button,
290
+ html [type="button"], /* 1 */
291
+ [type="reset"],
292
+ [type="submit"] {
293
+ -webkit-appearance: button; /* 2 */
253
294
  }
254
295
 
255
- /* ==========================================================================
256
- Forms
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
- * Define consistent border, margin, and padding.
320
+ * Change the border, margin, and padding in all browsers (opinionated).
261
321
  */
262
322
 
263
323
  fieldset {
264
- border: 1px solid #c0c0c0;
265
- margin: 0 2px;
266
- padding: 0.35em 0.625em 0.75em;
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 `color` not being inherited in IE 8/9.
271
- * 2. Remove padding so people aren't caught out if they zero out fieldsets.
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
- border: 0; /* 1 */
276
- padding: 0; /* 2 */
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. Correct font family not being inherited in all browsers.
281
- * 2. Correct font size not being inherited in all browsers.
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
- button,
286
- input,
287
- select,
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
- * Address Firefox 4+ setting `line-height` on `input` using `!important` in
296
- * the UA stylesheet.
356
+ * Remove the default vertical scrollbar in IE.
297
357
  */
298
358
 
299
- button,
300
- input {
301
- line-height: normal;
359
+ textarea {
360
+ overflow: auto;
302
361
  }
303
362
 
304
363
  /**
305
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
306
- * All other form control elements do not inherit `text-transform` values.
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
- button,
312
- select {
313
- text-transform: none;
368
+ [type="checkbox"],
369
+ [type="radio"] {
370
+ box-sizing: border-box; /* 1 */
371
+ padding: 0; /* 2 */
314
372
  }
315
373
 
316
374
  /**
317
- * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
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
- html input[type="button"], /* 1 */
326
- input[type="reset"],
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
- * Re-set default cursor for disabled elements.
384
+ * 1. Correct the odd appearance in Chrome and Safari.
385
+ * 2. Correct the outline style in Safari.
334
386
  */
335
387
 
336
- button[disabled],
337
- html input[disabled] {
338
- cursor: default;
388
+ [type="search"] {
389
+ -webkit-appearance: textfield; /* 1 */
390
+ outline-offset: -2px; /* 2 */
339
391
  }
340
392
 
341
393
  /**
342
- * 1. Address box sizing set to `content-box` in IE 8/9/10.
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
- input[type="checkbox"],
347
- input[type="radio"] {
348
- box-sizing: border-box; /* 1 */
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. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
354
- * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
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
- input[type="search"] {
359
- -webkit-appearance: textfield; /* 1 */
360
- -moz-box-sizing: content-box;
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
- * Remove inner padding and search cancel button in Safari 5 and Chrome
367
- * on OS X.
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
- input[type="search"]::-webkit-search-cancel-button,
371
- input[type="search"]::-webkit-search-decoration {
372
- -webkit-appearance: none;
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
- * Remove inner padding and border in Firefox 4+.
437
+ * Add the correct display in IE 9-.
377
438
  */
378
439
 
379
- button::-moz-focus-inner,
380
- input::-moz-focus-inner {
381
- border: 0;
382
- padding: 0;
440
+ canvas {
441
+ display: inline-block;
383
442
  }
384
443
 
385
444
  /**
386
- * 1. Remove default vertical scrollbar in IE 8/9.
387
- * 2. Improve readability and alignment in all browsers.
445
+ * Add the correct display in IE.
388
446
  */
389
447
 
390
- textarea {
391
- overflow: auto; /* 1 */
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
- * Remove most spacing between table cells.
456
+ * Add the correct display in IE 10-.
401
457
  */
402
458
 
403
- table {
404
- border-collapse: collapse;
405
- border-spacing: 0;
406
- }
459
+ [hidden] {
460
+ display: none;
461
+ }
@@ -3,7 +3,7 @@ module ManualSlug::Mongoid
3
3
  include ::Mongoid::Slug
4
4
 
5
5
  def text_slug
6
- self._slugs.empty? ? '' : self._slugs.last
6
+ self._slugs.blank? ? '' : self._slugs.last
7
7
  end
8
8
  def text_slug=(slug)
9
9
  if slug.blank?
@@ -1,3 +1,3 @@
1
1
  module RocketCMS
2
- VERSION = "0.15.5"
2
+ VERSION = "0.16.0"
3
3
  end
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.15.5
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-09-26 00:00:00.000000000 Z
11
+ date: 2016-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler