droidcss 2.0.3 → 2.0.4
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: f879103f5c1768d2b8e9ee02fd44c6b203e15614
|
4
|
+
data.tar.gz: 1075dbda96aded1fdeb37cd99c194574858556e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4795f7d9c9aeafe1364d3ac3e48e60393496f0385f4b1c746cd02283acb5b4f657f388b0158634465fbfefaaeda67b24ce29ce9d95763c387cf4d1982d4c4593
|
7
|
+
data.tar.gz: 72f929c4757f776b2763310082f2fbeb6ec93c60e9c862a2f792d4086b26799da2d617e87157ea7c8f3f7778b6831db5b4582e9e69d7a3e4778a25935ba002b8
|
data/lib/droidcss/version.rb
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
margin-left: auto;
|
9
9
|
padding-left: ($gutter / 2);
|
10
10
|
padding-right: ($gutter / 2);
|
11
|
-
letter-spacing: -
|
11
|
+
letter-spacing: -5px;
|
12
12
|
@include clearfix;
|
13
13
|
}
|
14
14
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
@mixin make-row($gutter: $grid-gutter-width) {
|
17
17
|
margin-left: ($gutter / -2);
|
18
18
|
margin-right: ($gutter / -2);
|
19
|
-
letter-spacing: -
|
19
|
+
letter-spacing: -5px;
|
20
20
|
@include clearfix;
|
21
21
|
}
|
22
22
|
|
@@ -1,6 +1,5 @@
|
|
1
1
|
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
|
2
|
-
body
|
3
|
-
body{cursor:default}
|
2
|
+
body{margin:0}
|
4
3
|
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}
|
5
4
|
audio,canvas,progress,video{display:inline-block;vertical-align:baseline}
|
6
5
|
audio:not([controls]){display:none;height:0}
|
@@ -29,19 +28,16 @@ button,html input[type="button"],/* 1 */
|
|
29
28
|
input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}
|
30
29
|
button[disabled],html input[disabled]{cursor:default}
|
31
30
|
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
|
32
|
-
input{line-height:normal
|
31
|
+
input{line-height:normal}
|
33
32
|
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
|
34
33
|
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}
|
35
34
|
input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}
|
36
35
|
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
|
37
36
|
fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
|
38
37
|
legend{border:0;padding:0}
|
39
|
-
textarea{overflow:auto
|
38
|
+
textarea{overflow:auto}
|
40
39
|
optgroup{font-weight:700}
|
41
40
|
table{border-collapse:collapse;border-spacing:0}
|
42
41
|
td,th{padding:0}
|
43
|
-
legend,button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
|
44
|
-
input,textarea{cursor:text}
|
45
|
-
a,label,select,button,input[type=button],input[type=submit],input[type=checkbox],input[type=radio],input[type=file]{cursor:pointer}
|
46
42
|
nav ul{list-style:none;margin:0;padding:0}
|
47
43
|
nav ul li{margin:0;padding:0}
|
@@ -4,12 +4,8 @@ html {
|
|
4
4
|
-webkit-text-size-adjust: 100%;
|
5
5
|
}
|
6
6
|
|
7
|
-
body, figure {
|
8
|
-
margin: 0;
|
9
|
-
}
|
10
|
-
|
11
7
|
body {
|
12
|
-
|
8
|
+
margin: 0;
|
13
9
|
}
|
14
10
|
|
15
11
|
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
|
@@ -187,19 +183,6 @@ td, th {
|
|
187
183
|
padding: 0;
|
188
184
|
}
|
189
185
|
|
190
|
-
legend, button::-moz-focus-inner, input::-moz-focus-inner {
|
191
|
-
border: 0;
|
192
|
-
padding: 0;
|
193
|
-
}
|
194
|
-
|
195
|
-
input, textarea {
|
196
|
-
cursor: text;
|
197
|
-
}
|
198
|
-
|
199
|
-
a, label, select, button, input[type=button], input[type=submit], input[type=checkbox], input[type=radio], input[type=file] {
|
200
|
-
cursor: pointer;
|
201
|
-
}
|
202
|
-
|
203
186
|
nav ul {
|
204
187
|
list-style: none;
|
205
188
|
margin: 0;
|
@@ -256,7 +239,7 @@ nav ul li {
|
|
256
239
|
margin-left: auto;
|
257
240
|
padding-left: 15px;
|
258
241
|
padding-right: 15px;
|
259
|
-
letter-spacing:
|
242
|
+
letter-spacing: -5px;
|
260
243
|
}
|
261
244
|
.container:after {
|
262
245
|
content: '';
|
@@ -284,7 +267,7 @@ nav ul li {
|
|
284
267
|
margin-left: auto;
|
285
268
|
padding-left: 15px;
|
286
269
|
padding-right: 15px;
|
287
|
-
letter-spacing:
|
270
|
+
letter-spacing: -5px;
|
288
271
|
}
|
289
272
|
.container-fluid:after {
|
290
273
|
content: '';
|
@@ -295,7 +278,7 @@ nav ul li {
|
|
295
278
|
.row {
|
296
279
|
margin-left: -15px;
|
297
280
|
margin-right: -15px;
|
298
|
-
letter-spacing:
|
281
|
+
letter-spacing: -5px;
|
299
282
|
}
|
300
283
|
.row:after {
|
301
284
|
content: '';
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: droidcss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Gorenburg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|