normalize-rails 2.0.1 → 2.1.1
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 +7 -0
- data/lib/normalize-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/normalize-rails/normalize.css +98 -77
- metadata +9 -19
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8e530b4901b0cbf2708c32aba2a9b111ac1a39f2
|
4
|
+
data.tar.gz: 99e5c12dbeb0c676b8796b4c548bd516e885aa3b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9fdd4b423256dd9e727aa8b9c2bc42ab2e06c3f1ffc8d6846ecf360c9629bb350055ae604e1362d9fab9e63b98d421e273677ba5a50c9a64f295c0fee8a1e4cb
|
7
|
+
data.tar.gz: d4d90b7dfaa01c68c8b450ca75bbbfa726f77a2b3e2f2e08649043f71cfe8dba4611ae98c9f6aead22492d102494d53050dcb63cf5606acfec099e1f7cc43e8f
|
@@ -1,11 +1,11 @@
|
|
1
|
-
/*! normalize.css v2.
|
1
|
+
/*! normalize.css v2.1.1 | MIT License | git.io/normalize */
|
2
2
|
|
3
3
|
/* ==========================================================================
|
4
4
|
HTML5 display definitions
|
5
5
|
========================================================================== */
|
6
6
|
|
7
|
-
|
8
|
-
*
|
7
|
+
/**
|
8
|
+
* Correct `block` display not defined in IE 8/9.
|
9
9
|
*/
|
10
10
|
|
11
11
|
article,
|
@@ -16,14 +16,15 @@ figure,
|
|
16
16
|
footer,
|
17
17
|
header,
|
18
18
|
hgroup,
|
19
|
+
main,
|
19
20
|
nav,
|
20
21
|
section,
|
21
22
|
summary {
|
22
23
|
display: block;
|
23
24
|
}
|
24
25
|
|
25
|
-
|
26
|
-
*
|
26
|
+
/**
|
27
|
+
* Correct `inline-block` display not defined in IE 8/9.
|
27
28
|
*/
|
28
29
|
|
29
30
|
audio,
|
@@ -32,8 +33,8 @@ video {
|
|
32
33
|
display: inline-block;
|
33
34
|
}
|
34
35
|
|
35
|
-
|
36
|
-
*
|
36
|
+
/**
|
37
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
37
38
|
* Remove excess height in iOS 5 devices.
|
38
39
|
*/
|
39
40
|
|
@@ -42,8 +43,8 @@ audio:not([controls]) {
|
|
42
43
|
height: 0;
|
43
44
|
}
|
44
45
|
|
45
|
-
|
46
|
-
*
|
46
|
+
/**
|
47
|
+
* Address styling not present in IE 8/9.
|
47
48
|
*/
|
48
49
|
|
49
50
|
[hidden] {
|
@@ -54,20 +55,20 @@ audio:not([controls]) {
|
|
54
55
|
Base
|
55
56
|
========================================================================== */
|
56
57
|
|
57
|
-
|
58
|
-
* 1.
|
59
|
-
* 2.
|
58
|
+
/**
|
59
|
+
* 1. Set default font family to sans-serif.
|
60
|
+
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
60
61
|
* user zoom.
|
61
62
|
*/
|
62
63
|
|
63
64
|
html {
|
64
65
|
font-family: sans-serif; /* 1 */
|
65
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
66
66
|
-ms-text-size-adjust: 100%; /* 2 */
|
67
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
67
68
|
}
|
68
69
|
|
69
|
-
|
70
|
-
*
|
70
|
+
/**
|
71
|
+
* Remove default margin.
|
71
72
|
*/
|
72
73
|
|
73
74
|
body {
|
@@ -78,16 +79,16 @@ body {
|
|
78
79
|
Links
|
79
80
|
========================================================================== */
|
80
81
|
|
81
|
-
|
82
|
-
*
|
82
|
+
/**
|
83
|
+
* Address `outline` inconsistency between Chrome and other browsers.
|
83
84
|
*/
|
84
85
|
|
85
86
|
a:focus {
|
86
87
|
outline: thin dotted;
|
87
88
|
}
|
88
89
|
|
89
|
-
|
90
|
-
*
|
90
|
+
/**
|
91
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
91
92
|
*/
|
92
93
|
|
93
94
|
a:active,
|
@@ -99,25 +100,26 @@ a:hover {
|
|
99
100
|
Typography
|
100
101
|
========================================================================== */
|
101
102
|
|
102
|
-
|
103
|
-
*
|
104
|
-
* Safari 5, and Chrome.
|
103
|
+
/**
|
104
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
105
|
+
* contexts in Firefox 4+, Safari 5, and Chrome.
|
105
106
|
*/
|
106
107
|
|
107
108
|
h1 {
|
108
109
|
font-size: 2em;
|
110
|
+
margin: 0.67em 0;
|
109
111
|
}
|
110
112
|
|
111
|
-
|
112
|
-
*
|
113
|
+
/**
|
114
|
+
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
113
115
|
*/
|
114
116
|
|
115
117
|
abbr[title] {
|
116
118
|
border-bottom: 1px dotted;
|
117
119
|
}
|
118
120
|
|
119
|
-
|
120
|
-
*
|
121
|
+
/**
|
122
|
+
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
121
123
|
*/
|
122
124
|
|
123
125
|
b,
|
@@ -125,16 +127,26 @@ strong {
|
|
125
127
|
font-weight: bold;
|
126
128
|
}
|
127
129
|
|
128
|
-
|
129
|
-
*
|
130
|
+
/**
|
131
|
+
* Address styling not present in Safari 5 and Chrome.
|
130
132
|
*/
|
131
133
|
|
132
134
|
dfn {
|
133
135
|
font-style: italic;
|
134
136
|
}
|
135
137
|
|
136
|
-
|
137
|
-
*
|
138
|
+
/**
|
139
|
+
* Address differences between Firefox and other browsers.
|
140
|
+
*/
|
141
|
+
|
142
|
+
hr {
|
143
|
+
-moz-box-sizing: content-box;
|
144
|
+
box-sizing: content-box;
|
145
|
+
height: 0;
|
146
|
+
}
|
147
|
+
|
148
|
+
/**
|
149
|
+
* Address styling not present in IE 8/9.
|
138
150
|
*/
|
139
151
|
|
140
152
|
mark {
|
@@ -142,9 +154,8 @@ mark {
|
|
142
154
|
color: #000;
|
143
155
|
}
|
144
156
|
|
145
|
-
|
146
|
-
|
147
|
-
* Corrects font family set oddly in Safari 5 and Chrome.
|
157
|
+
/**
|
158
|
+
* Correct font family set oddly in Safari 5 and Chrome.
|
148
159
|
*/
|
149
160
|
|
150
161
|
code,
|
@@ -155,34 +166,32 @@ samp {
|
|
155
166
|
font-size: 1em;
|
156
167
|
}
|
157
168
|
|
158
|
-
|
159
|
-
*
|
169
|
+
/**
|
170
|
+
* Improve readability of pre-formatted text in all browsers.
|
160
171
|
*/
|
161
172
|
|
162
173
|
pre {
|
163
|
-
white-space: pre;
|
164
174
|
white-space: pre-wrap;
|
165
|
-
word-wrap: break-word;
|
166
175
|
}
|
167
176
|
|
168
|
-
|
169
|
-
*
|
177
|
+
/**
|
178
|
+
* Set consistent quote types.
|
170
179
|
*/
|
171
180
|
|
172
181
|
q {
|
173
182
|
quotes: "\201C" "\201D" "\2018" "\2019";
|
174
183
|
}
|
175
184
|
|
176
|
-
|
177
|
-
*
|
185
|
+
/**
|
186
|
+
* Address inconsistent and variable font size in all browsers.
|
178
187
|
*/
|
179
188
|
|
180
189
|
small {
|
181
190
|
font-size: 80%;
|
182
191
|
}
|
183
192
|
|
184
|
-
|
185
|
-
*
|
193
|
+
/**
|
194
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
186
195
|
*/
|
187
196
|
|
188
197
|
sub,
|
@@ -205,16 +214,16 @@ sub {
|
|
205
214
|
Embedded content
|
206
215
|
========================================================================== */
|
207
216
|
|
208
|
-
|
209
|
-
*
|
217
|
+
/**
|
218
|
+
* Remove border when inside `a` element in IE 8/9.
|
210
219
|
*/
|
211
220
|
|
212
221
|
img {
|
213
222
|
border: 0;
|
214
223
|
}
|
215
224
|
|
216
|
-
|
217
|
-
*
|
225
|
+
/**
|
226
|
+
* Correct overflow displayed oddly in IE 9.
|
218
227
|
*/
|
219
228
|
|
220
229
|
svg:not(:root) {
|
@@ -225,8 +234,8 @@ svg:not(:root) {
|
|
225
234
|
Figures
|
226
235
|
========================================================================== */
|
227
236
|
|
228
|
-
|
229
|
-
*
|
237
|
+
/**
|
238
|
+
* Address margin not present in IE 8/9 and Safari 5.
|
230
239
|
*/
|
231
240
|
|
232
241
|
figure {
|
@@ -237,7 +246,7 @@ figure {
|
|
237
246
|
Forms
|
238
247
|
========================================================================== */
|
239
248
|
|
240
|
-
|
249
|
+
/**
|
241
250
|
* Define consistent border, margin, and padding.
|
242
251
|
*/
|
243
252
|
|
@@ -247,8 +256,8 @@ fieldset {
|
|
247
256
|
padding: 0.35em 0.625em 0.75em;
|
248
257
|
}
|
249
258
|
|
250
|
-
|
251
|
-
* 1.
|
259
|
+
/**
|
260
|
+
* 1. Correct `color` not being inherited in IE 8/9.
|
252
261
|
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
253
262
|
*/
|
254
263
|
|
@@ -257,10 +266,10 @@ legend {
|
|
257
266
|
padding: 0; /* 2 */
|
258
267
|
}
|
259
268
|
|
260
|
-
|
261
|
-
* 1.
|
262
|
-
* 2.
|
263
|
-
* 3.
|
269
|
+
/**
|
270
|
+
* 1. Correct font family not being inherited in all browsers.
|
271
|
+
* 2. Correct font size not being inherited in all browsers.
|
272
|
+
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
264
273
|
*/
|
265
274
|
|
266
275
|
button,
|
@@ -272,8 +281,8 @@ textarea {
|
|
272
281
|
margin: 0; /* 3 */
|
273
282
|
}
|
274
283
|
|
275
|
-
|
276
|
-
*
|
284
|
+
/**
|
285
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
277
286
|
* the UA stylesheet.
|
278
287
|
*/
|
279
288
|
|
@@ -282,11 +291,23 @@ input {
|
|
282
291
|
line-height: normal;
|
283
292
|
}
|
284
293
|
|
285
|
-
|
294
|
+
/**
|
295
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
296
|
+
* All other form control elements do not inherit `text-transform` values.
|
297
|
+
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
|
298
|
+
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
299
|
+
*/
|
300
|
+
|
301
|
+
button,
|
302
|
+
select {
|
303
|
+
text-transform: none;
|
304
|
+
}
|
305
|
+
|
306
|
+
/**
|
286
307
|
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
287
308
|
* and `video` controls.
|
288
|
-
* 2.
|
289
|
-
* 3.
|
309
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
310
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
290
311
|
* `input` and others.
|
291
312
|
*/
|
292
313
|
|
@@ -298,18 +319,18 @@ input[type="submit"] {
|
|
298
319
|
cursor: pointer; /* 3 */
|
299
320
|
}
|
300
321
|
|
301
|
-
|
322
|
+
/**
|
302
323
|
* Re-set default cursor for disabled elements.
|
303
324
|
*/
|
304
325
|
|
305
326
|
button[disabled],
|
306
|
-
input[disabled] {
|
327
|
+
html input[disabled] {
|
307
328
|
cursor: default;
|
308
329
|
}
|
309
330
|
|
310
|
-
|
311
|
-
* 1.
|
312
|
-
* 2.
|
331
|
+
/**
|
332
|
+
* 1. Address box sizing set to `content-box` in IE 8/9.
|
333
|
+
* 2. Remove excess padding in IE 8/9.
|
313
334
|
*/
|
314
335
|
|
315
336
|
input[type="checkbox"],
|
@@ -318,9 +339,9 @@ input[type="radio"] {
|
|
318
339
|
padding: 0; /* 2 */
|
319
340
|
}
|
320
341
|
|
321
|
-
|
322
|
-
* 1.
|
323
|
-
* 2.
|
342
|
+
/**
|
343
|
+
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
344
|
+
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
324
345
|
* (include `-moz` to future-proof).
|
325
346
|
*/
|
326
347
|
|
@@ -331,8 +352,8 @@ input[type="search"] {
|
|
331
352
|
box-sizing: content-box;
|
332
353
|
}
|
333
354
|
|
334
|
-
|
335
|
-
*
|
355
|
+
/**
|
356
|
+
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
336
357
|
* on OS X.
|
337
358
|
*/
|
338
359
|
|
@@ -341,8 +362,8 @@ input[type="search"]::-webkit-search-decoration {
|
|
341
362
|
-webkit-appearance: none;
|
342
363
|
}
|
343
364
|
|
344
|
-
|
345
|
-
*
|
365
|
+
/**
|
366
|
+
* Remove inner padding and border in Firefox 4+.
|
346
367
|
*/
|
347
368
|
|
348
369
|
button::-moz-focus-inner,
|
@@ -351,9 +372,9 @@ input::-moz-focus-inner {
|
|
351
372
|
padding: 0;
|
352
373
|
}
|
353
374
|
|
354
|
-
|
355
|
-
* 1.
|
356
|
-
* 2.
|
375
|
+
/**
|
376
|
+
* 1. Remove default vertical scrollbar in IE 8/9.
|
377
|
+
* 2. Improve readability and alignment in all browsers.
|
357
378
|
*/
|
358
379
|
|
359
380
|
textarea {
|
@@ -365,7 +386,7 @@ textarea {
|
|
365
386
|
Tables
|
366
387
|
========================================================================== */
|
367
388
|
|
368
|
-
|
389
|
+
/**
|
369
390
|
* Remove most spacing between table cells.
|
370
391
|
*/
|
371
392
|
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: normalize-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
5
|
-
prerelease:
|
4
|
+
version: 2.1.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Nicolas Gallagher
|
@@ -11,22 +10,20 @@ authors:
|
|
11
10
|
autorequire:
|
12
11
|
bindir: bin
|
13
12
|
cert_chain: []
|
14
|
-
date:
|
13
|
+
date: 2013-05-09 00:00:00.000000000 Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: rake
|
18
17
|
requirement: !ruby/object:Gem::Requirement
|
19
|
-
none: false
|
20
18
|
requirements:
|
21
|
-
- -
|
19
|
+
- - '>='
|
22
20
|
- !ruby/object:Gem::Version
|
23
21
|
version: '0'
|
24
22
|
type: :development
|
25
23
|
prerelease: false
|
26
24
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
-
none: false
|
28
25
|
requirements:
|
29
|
-
- -
|
26
|
+
- - '>='
|
30
27
|
- !ruby/object:Gem::Version
|
31
28
|
version: '0'
|
32
29
|
description: Normalize.css is an alternative to CSS resets
|
@@ -49,33 +46,26 @@ files:
|
|
49
46
|
- vendor/assets/stylesheets/normalize-rails/normalize.css
|
50
47
|
homepage: https://github.com/markmcconachie/normalize-rails
|
51
48
|
licenses: []
|
49
|
+
metadata: {}
|
52
50
|
post_install_message:
|
53
51
|
rdoc_options: []
|
54
52
|
require_paths:
|
55
53
|
- lib
|
56
54
|
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
55
|
requirements:
|
59
|
-
- -
|
56
|
+
- - '>='
|
60
57
|
- !ruby/object:Gem::Version
|
61
58
|
version: '0'
|
62
|
-
segments:
|
63
|
-
- 0
|
64
|
-
hash: -118831154646941148
|
65
59
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
-
none: false
|
67
60
|
requirements:
|
68
|
-
- -
|
61
|
+
- - '>='
|
69
62
|
- !ruby/object:Gem::Version
|
70
63
|
version: '0'
|
71
|
-
segments:
|
72
|
-
- 0
|
73
|
-
hash: -118831154646941148
|
74
64
|
requirements: []
|
75
65
|
rubyforge_project:
|
76
|
-
rubygems_version:
|
66
|
+
rubygems_version: 2.0.0
|
77
67
|
signing_key:
|
78
|
-
specification_version:
|
68
|
+
specification_version: 4
|
79
69
|
summary: Normalize.css is a customisable CSS file that makes browsers render all elements
|
80
70
|
more consistently and in line with modern standards. We researched the differences
|
81
71
|
between default browser styles in order to precisely target only the styles that
|