reset-css 0.0.1 → 0.0.2

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: d488246f6ec9e566f816d36bdc7da98ef5cf3fe6
4
- data.tar.gz: a2a67ecb745045a832535f22fb5571cb2a6c36a6
3
+ metadata.gz: 17192d69bfc5c522accbc677e4a4fa425eeaeb22
4
+ data.tar.gz: adb912fb35a792266bef3c6faad4306fcfaa99e2
5
5
  SHA512:
6
- metadata.gz: 43abf4d5f53f832a6173456bef84425f769f3a4723fb325a1de6029bb79b6e1d5d98fe8bb815e9c3615c614178b78fdf385f4cff19795c232c32882b6ad53ab8
7
- data.tar.gz: 309f981b1278538f29c8ae52349404559c736b3a0ad87c8c2901afb428a09a120b5abe724ee40d69548597ba509537b3b920a9dff954503bcede1b311357833e
6
+ metadata.gz: ebffcc577061c4e7b503ac3e37922444e8ef2b0985b075ad3ecf09e726c9be63befd513a9ef8f33b6f12fb9b24375ce71a162b6f8fee01add4852b18fb664ec8
7
+ data.tar.gz: 396c4841ddfec70418d478aefc2da839dc1a5ae26146f023a8d2b61c412357ed2586b1ed60ccc53161d3c18563b621e5098267f46800664371cd7456efd443ca
@@ -11,8 +11,8 @@ Gem::Specification.new do |s|
11
11
  s.homepage = 'https://github.com/kaidjohnson/reset-css'
12
12
  s.rubyforge_project =
13
13
 
14
- s.version = '0.0.1'
15
- s.date = '2013-11-14'
14
+ s.version = '0.0.2'
15
+ s.date = '2013-11-15'
16
16
  s.license = 'GPL-2'
17
17
 
18
18
  s.authors = ['Kai Johnson']
@@ -1,17 +1,16 @@
1
1
  a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote,
2
- body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt,
3
- em, embed, fieldset, figcaption, figure, footer, form, header, hgroup, html,
4
- h1, h2, h3, h4, h5, h6, i, iframe, img, ins, kbd, label, legend, li, main, mark,
5
- menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span,
6
- strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr,
7
- tt, u, ul, var, video {
2
+ body, button, canvas, caption, center, cite, code, dd, del, details, dfn, div,
3
+ dl, dt, em, embed, fieldset, figcaption, figure, footer, form, header, hgroup,
4
+ html, h1, h2, h3, h4, h5, h6, i, iframe, img, input, ins, kbd, label, legend,
5
+ li, main, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, ruby,
6
+ s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody,
7
+ td, textarea, tfoot, th, thead, time, tr, tt, u, ul, var, video {
8
8
  margin: 0;
9
9
  padding: 0;
10
10
  border: 0;
11
- outline: none;
11
+ outline: 0;
12
12
  box-shadow: none;
13
13
  vertical-align: baseline;
14
- font: inherit;
15
14
  }
16
15
 
17
16
  html {
@@ -52,17 +51,18 @@ table { // Tables still need 'cellspacing="0"' in the markup.
52
51
 
53
52
  textarea {
54
53
  resize: none;
55
- overflow: auto
54
+ overflow: auto;
55
+ font: inherit;
56
56
  }
57
57
 
58
58
  button, input, select {
59
59
  line-height: 1;
60
60
  vertical-align: middle;
61
+ font: inherit;
61
62
  }
62
63
 
63
64
  [type="button"], [type="submit"],
64
- button, button *,
65
- ::-webkit-file-upload-button {
65
+ button, button * {
66
66
  cursor: pointer;
67
67
  -moz-appearance: none;
68
68
  -webkit-appearance: none;
@@ -104,11 +104,15 @@ svg:not(:root) {
104
104
  overflow: hidden;
105
105
  }
106
106
 
107
+ // Webkit
108
+
109
+ ::-webkit-file-upload-button {
110
+ @extend button;
111
+ }
112
+
107
113
  // Firefox
108
114
 
109
- [type="button"]::-moz-focus-inner,
110
- [type="submit"]::-moz-focus-inner,
111
- button::-moz-focus-inner {
115
+ ::-moz-focus-inner {
112
116
  border: 0;
113
117
  padding: 0;
114
118
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reset-css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kai Johnson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-14 00:00:00.000000000 Z
11
+ date: 2013-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -68,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
70
  requirements: []
71
- rubyforge_project: 0.0.1
71
+ rubyforge_project: 0.0.2
72
72
  rubygems_version: 2.1.5
73
73
  signing_key:
74
74
  specification_version: 4