gintonic-rails 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/README.md +13 -44
  4. data/Rakefile +19 -1
  5. data/app/assets/stylesheets/_gintonic.scss +9 -3
  6. data/app/assets/stylesheets/gintonic/base/_utils.scss +5 -0
  7. data/app/assets/stylesheets/gintonic/base/_vars.scss +4 -0
  8. data/app/assets/stylesheets/{mixins → gintonic/modules}/_buttons.scss +0 -0
  9. data/app/assets/stylesheets/gintonic/modules/_responsive_helpers.scss +46 -0
  10. data/gintonic-rails.gemspec +3 -0
  11. data/lib/generators/gintonic/js/js_generator.rb +1 -0
  12. data/lib/generators/gintonic/styles/styles_generator.rb +5 -3
  13. data/lib/gintonic-rails.rb +2 -1
  14. data/lib/gintonic-rails/engine.rb +0 -2
  15. data/lib/gintonic-rails/version.rb +1 -1
  16. data/test/dummy/README.rdoc +28 -0
  17. data/test/dummy/Rakefile +6 -0
  18. data/test/dummy/app/assets/images/.keep +0 -0
  19. data/test/dummy/app/assets/javascripts/application.js +13 -0
  20. data/test/dummy/app/assets/stylesheets/application.scss +1 -0
  21. data/test/dummy/app/controllers/application_controller.rb +5 -0
  22. data/test/dummy/app/controllers/concerns/.keep +0 -0
  23. data/test/dummy/app/controllers/demo_controller.rb +5 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/mailers/.keep +0 -0
  26. data/test/dummy/app/models/.keep +0 -0
  27. data/test/dummy/app/models/concerns/.keep +0 -0
  28. data/test/dummy/app/views/demo/home.html.erb +1 -0
  29. data/test/dummy/app/views/demo/index.html.erb +1 -0
  30. data/test/dummy/app/views/demo/reset.html.erb +164 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/bin/bundle +3 -0
  33. data/test/dummy/bin/rails +4 -0
  34. data/test/dummy/bin/rake +4 -0
  35. data/test/dummy/bin/setup +29 -0
  36. data/test/dummy/config.ru +4 -0
  37. data/test/dummy/config/application.rb +25 -0
  38. data/test/dummy/config/boot.rb +5 -0
  39. data/test/dummy/config/database.yml +23 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +41 -0
  42. data/test/dummy/config/environments/production.rb +79 -0
  43. data/test/dummy/config/environments/test.rb +42 -0
  44. data/test/dummy/config/initializers/assets.rb +11 -0
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  47. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  48. data/test/dummy/config/initializers/inflections.rb +16 -0
  49. data/test/dummy/config/initializers/mime_types.rb +4 -0
  50. data/test/dummy/config/initializers/session_store.rb +3 -0
  51. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  52. data/test/dummy/config/locales/en.yml +23 -0
  53. data/test/dummy/config/routes.rb +58 -0
  54. data/test/dummy/config/secrets.yml +22 -0
  55. data/test/dummy/db/schema.rb +16 -0
  56. data/test/dummy/lib/assets/.keep +0 -0
  57. data/test/dummy/log/.keep +0 -0
  58. data/test/dummy/public/404.html +67 -0
  59. data/test/dummy/public/422.html +67 -0
  60. data/test/dummy/public/500.html +66 -0
  61. data/test/dummy/public/favicon.ico +0 -0
  62. data/test/gintonic_test.rb +7 -0
  63. data/test/test_helper.rb +23 -0
  64. data/vendor/assets/stylesheets/dom-limpio/_forms.scss +47 -0
  65. data/vendor/assets/stylesheets/dom-limpio/_layout.scss +108 -0
  66. data/vendor/assets/stylesheets/dom-limpio/_type.scss +129 -0
  67. metadata +135 -7
  68. data/app/assets/stylesheets/mixins/_utils.scss +0 -18
  69. data/app/assets/stylesheets/normalize/_normalize.scss +0 -427
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gintonic-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simplelogica
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-11-14 00:00:00.000000000 Z
12
+ date: 2016-08-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -39,6 +39,34 @@ dependencies:
39
39
  - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '4.2'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rails
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: 4.1.5
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: 4.1.5
56
+ - !ruby/object:Gem::Dependency
57
+ name: sqlite3
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
42
70
  description: Gintonic is a Sass mixins collection, include normalize 2.1 modified,
43
71
  clearfix, font-face helper and CSS3 properties with vendor prefixes Webkit, Firefox
44
72
  > 3.5, Opera and IE > 8.
@@ -54,9 +82,10 @@ files:
54
82
  - README.md
55
83
  - Rakefile
56
84
  - app/assets/stylesheets/_gintonic.scss
57
- - app/assets/stylesheets/mixins/_buttons.scss
58
- - app/assets/stylesheets/mixins/_utils.scss
59
- - app/assets/stylesheets/normalize/_normalize.scss
85
+ - app/assets/stylesheets/gintonic/base/_utils.scss
86
+ - app/assets/stylesheets/gintonic/base/_vars.scss
87
+ - app/assets/stylesheets/gintonic/modules/_buttons.scss
88
+ - app/assets/stylesheets/gintonic/modules/_responsive_helpers.scss
60
89
  - gintonic-rails.gemspec
61
90
  - lib/generators/gintonic/js/USAGE
62
91
  - lib/generators/gintonic/js/js_generator.rb
@@ -68,6 +97,57 @@ files:
68
97
  - lib/gintonic-rails.rb
69
98
  - lib/gintonic-rails/engine.rb
70
99
  - lib/gintonic-rails/version.rb
100
+ - test/dummy/README.rdoc
101
+ - test/dummy/Rakefile
102
+ - test/dummy/app/assets/images/.keep
103
+ - test/dummy/app/assets/javascripts/application.js
104
+ - test/dummy/app/assets/stylesheets/application.scss
105
+ - test/dummy/app/controllers/application_controller.rb
106
+ - test/dummy/app/controllers/concerns/.keep
107
+ - test/dummy/app/controllers/demo_controller.rb
108
+ - test/dummy/app/helpers/application_helper.rb
109
+ - test/dummy/app/mailers/.keep
110
+ - test/dummy/app/models/.keep
111
+ - test/dummy/app/models/concerns/.keep
112
+ - test/dummy/app/views/demo/home.html.erb
113
+ - test/dummy/app/views/demo/index.html.erb
114
+ - test/dummy/app/views/demo/reset.html.erb
115
+ - test/dummy/app/views/layouts/application.html.erb
116
+ - test/dummy/bin/bundle
117
+ - test/dummy/bin/rails
118
+ - test/dummy/bin/rake
119
+ - test/dummy/bin/setup
120
+ - test/dummy/config.ru
121
+ - test/dummy/config/application.rb
122
+ - test/dummy/config/boot.rb
123
+ - test/dummy/config/database.yml
124
+ - test/dummy/config/environment.rb
125
+ - test/dummy/config/environments/development.rb
126
+ - test/dummy/config/environments/production.rb
127
+ - test/dummy/config/environments/test.rb
128
+ - test/dummy/config/initializers/assets.rb
129
+ - test/dummy/config/initializers/backtrace_silencers.rb
130
+ - test/dummy/config/initializers/cookies_serializer.rb
131
+ - test/dummy/config/initializers/filter_parameter_logging.rb
132
+ - test/dummy/config/initializers/inflections.rb
133
+ - test/dummy/config/initializers/mime_types.rb
134
+ - test/dummy/config/initializers/session_store.rb
135
+ - test/dummy/config/initializers/wrap_parameters.rb
136
+ - test/dummy/config/locales/en.yml
137
+ - test/dummy/config/routes.rb
138
+ - test/dummy/config/secrets.yml
139
+ - test/dummy/db/schema.rb
140
+ - test/dummy/lib/assets/.keep
141
+ - test/dummy/log/.keep
142
+ - test/dummy/public/404.html
143
+ - test/dummy/public/422.html
144
+ - test/dummy/public/500.html
145
+ - test/dummy/public/favicon.ico
146
+ - test/gintonic_test.rb
147
+ - test/test_helper.rb
148
+ - vendor/assets/stylesheets/dom-limpio/_forms.scss
149
+ - vendor/assets/stylesheets/dom-limpio/_layout.scss
150
+ - vendor/assets/stylesheets/dom-limpio/_type.scss
71
151
  homepage: https://github.com/simplelogica/gintonic-rails
72
152
  licenses: []
73
153
  metadata: {}
@@ -87,8 +167,56 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
167
  version: '0'
88
168
  requirements: []
89
169
  rubyforge_project:
90
- rubygems_version: 2.4.5.1
170
+ rubygems_version: 2.5.1
91
171
  signing_key:
92
172
  specification_version: 4
93
173
  summary: Gintonic Front-End toolbox
94
- test_files: []
174
+ test_files:
175
+ - test/dummy/README.rdoc
176
+ - test/dummy/Rakefile
177
+ - test/dummy/app/assets/images/.keep
178
+ - test/dummy/app/assets/javascripts/application.js
179
+ - test/dummy/app/assets/stylesheets/application.scss
180
+ - test/dummy/app/controllers/application_controller.rb
181
+ - test/dummy/app/controllers/concerns/.keep
182
+ - test/dummy/app/controllers/demo_controller.rb
183
+ - test/dummy/app/helpers/application_helper.rb
184
+ - test/dummy/app/mailers/.keep
185
+ - test/dummy/app/models/.keep
186
+ - test/dummy/app/models/concerns/.keep
187
+ - test/dummy/app/views/demo/home.html.erb
188
+ - test/dummy/app/views/demo/index.html.erb
189
+ - test/dummy/app/views/demo/reset.html.erb
190
+ - test/dummy/app/views/layouts/application.html.erb
191
+ - test/dummy/bin/bundle
192
+ - test/dummy/bin/rails
193
+ - test/dummy/bin/rake
194
+ - test/dummy/bin/setup
195
+ - test/dummy/config.ru
196
+ - test/dummy/config/application.rb
197
+ - test/dummy/config/boot.rb
198
+ - test/dummy/config/database.yml
199
+ - test/dummy/config/environment.rb
200
+ - test/dummy/config/environments/development.rb
201
+ - test/dummy/config/environments/production.rb
202
+ - test/dummy/config/environments/test.rb
203
+ - test/dummy/config/initializers/assets.rb
204
+ - test/dummy/config/initializers/backtrace_silencers.rb
205
+ - test/dummy/config/initializers/cookies_serializer.rb
206
+ - test/dummy/config/initializers/filter_parameter_logging.rb
207
+ - test/dummy/config/initializers/inflections.rb
208
+ - test/dummy/config/initializers/mime_types.rb
209
+ - test/dummy/config/initializers/session_store.rb
210
+ - test/dummy/config/initializers/wrap_parameters.rb
211
+ - test/dummy/config/locales/en.yml
212
+ - test/dummy/config/routes.rb
213
+ - test/dummy/config/secrets.yml
214
+ - test/dummy/db/schema.rb
215
+ - test/dummy/lib/assets/.keep
216
+ - test/dummy/log/.keep
217
+ - test/dummy/public/404.html
218
+ - test/dummy/public/422.html
219
+ - test/dummy/public/500.html
220
+ - test/dummy/public/favicon.ico
221
+ - test/gintonic_test.rb
222
+ - test/test_helper.rb
@@ -1,18 +0,0 @@
1
- @mixin font-face($font-family, $file-path, $weight: normal, $style: normal) {
2
- @font-face {
3
- font-family: $font-family;
4
- font-weight: $weight;
5
- font-style: $style;
6
- src: font-url('#{$file-path}.eot');
7
- src: font-url('#{$file-path}.eot?#iefix') format('embedded-opentype'),
8
- font-url('#{$file-path}.woff') format('woff'),
9
- font-url('#{$file-path}.ttf') format('truetype'),
10
- font-url('#{$file-path}.svg##{$font-family}') format('svg');
11
- }
12
- }
13
-
14
- @mixin media($breakpoint) {
15
- @media only screen and (max-width: $breakpoint) {
16
- @content;
17
- }
18
- }
@@ -1,427 +0,0 @@
1
- /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
2
-
3
- /**
4
- * 1. Set default font family to sans-serif.
5
- * 2. Prevent iOS text size adjust after orientation change, without disabling
6
- * user zoom.
7
- */
8
-
9
- html {
10
- font-family: sans-serif; /* 1 */
11
- -ms-text-size-adjust: 100%; /* 2 */
12
- -webkit-text-size-adjust: 100%; /* 2 */
13
- }
14
-
15
- /**
16
- * Remove default margin.
17
- */
18
-
19
- body {
20
- margin: 0;
21
- }
22
-
23
- /* HTML5 display definitions
24
- ========================================================================== */
25
-
26
- /**
27
- * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
- * Correct `block` display not defined for `details` or `summary` in IE 10/11
29
- * and Firefox.
30
- * Correct `block` display not defined for `main` in IE 11.
31
- */
32
-
33
- article,
34
- aside,
35
- details,
36
- figcaption,
37
- figure,
38
- footer,
39
- header,
40
- hgroup,
41
- main,
42
- menu,
43
- nav,
44
- section,
45
- summary {
46
- display: block;
47
- }
48
-
49
- /**
50
- * 1. Correct `inline-block` display not defined in IE 8/9.
51
- * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
- */
53
-
54
- audio,
55
- canvas,
56
- progress,
57
- video {
58
- display: inline-block; /* 1 */
59
- vertical-align: baseline; /* 2 */
60
- }
61
-
62
- /**
63
- * Prevent modern browsers from displaying `audio` without controls.
64
- * Remove excess height in iOS 5 devices.
65
- */
66
-
67
- audio:not([controls]) {
68
- display: none;
69
- height: 0;
70
- }
71
-
72
- /**
73
- * Address `[hidden]` styling not present in IE 8/9/10.
74
- * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
75
- */
76
-
77
- [hidden],
78
- template {
79
- display: none;
80
- }
81
-
82
- /* Links
83
- ========================================================================== */
84
-
85
- /**
86
- * Remove the gray background color from active links in IE 10.
87
- */
88
-
89
- a {
90
- background-color: transparent;
91
- }
92
-
93
- /**
94
- * Improve readability when focused and also mouse hovered in all browsers.
95
- */
96
-
97
- a:active,
98
- a:hover {
99
- outline: 0;
100
- }
101
-
102
- /* Text-level semantics
103
- ========================================================================== */
104
-
105
- /**
106
- * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
107
- */
108
-
109
- abbr[title] {
110
- border-bottom: 1px dotted;
111
- }
112
-
113
- /**
114
- * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
115
- */
116
-
117
- b,
118
- strong {
119
- font-weight: bold;
120
- }
121
-
122
- /**
123
- * Address styling not present in Safari and Chrome.
124
- */
125
-
126
- dfn {
127
- font-style: italic;
128
- }
129
-
130
- /**
131
- * Address variable `h1` font-size and margin within `section` and `article`
132
- * contexts in Firefox 4+, Safari, and Chrome.
133
- */
134
-
135
- h1 {
136
- font-size: 2em;
137
- margin: 0.67em 0;
138
- }
139
-
140
- /**
141
- * Address styling not present in IE 8/9.
142
- */
143
-
144
- mark {
145
- background: #ff0;
146
- color: #000;
147
- }
148
-
149
- /**
150
- * Address inconsistent and variable font size in all browsers.
151
- */
152
-
153
- small {
154
- font-size: 80%;
155
- }
156
-
157
- /**
158
- * Prevent `sub` and `sup` affecting `line-height` in all browsers.
159
- */
160
-
161
- sub,
162
- sup {
163
- font-size: 75%;
164
- line-height: 0;
165
- position: relative;
166
- vertical-align: baseline;
167
- }
168
-
169
- sup {
170
- top: -0.5em;
171
- }
172
-
173
- sub {
174
- bottom: -0.25em;
175
- }
176
-
177
- /* Embedded content
178
- ========================================================================== */
179
-
180
- /**
181
- * Remove border when inside `a` element in IE 8/9/10.
182
- */
183
-
184
- img {
185
- border: 0;
186
- }
187
-
188
- /**
189
- * Correct overflow not hidden in IE 9/10/11.
190
- */
191
-
192
- svg:not(:root) {
193
- overflow: hidden;
194
- }
195
-
196
- /* Grouping content
197
- ========================================================================== */
198
-
199
- /**
200
- * Address margin not present in IE 8/9 and Safari.
201
- */
202
-
203
- figure {
204
- margin: 1em 40px;
205
- }
206
-
207
- /**
208
- * Address differences between Firefox and other browsers.
209
- */
210
-
211
- hr {
212
- -moz-box-sizing: content-box;
213
- box-sizing: content-box;
214
- height: 0;
215
- }
216
-
217
- /**
218
- * Contain overflow in all browsers.
219
- */
220
-
221
- pre {
222
- overflow: auto;
223
- }
224
-
225
- /**
226
- * Address odd `em`-unit font size rendering in all browsers.
227
- */
228
-
229
- code,
230
- kbd,
231
- pre,
232
- samp {
233
- font-family: monospace, monospace;
234
- font-size: 1em;
235
- }
236
-
237
- /* Forms
238
- ========================================================================== */
239
-
240
- /**
241
- * Known limitation: by default, Chrome and Safari on OS X allow very limited
242
- * styling of `select`, unless a `border` property is set.
243
- */
244
-
245
- /**
246
- * 1. Correct color not being inherited.
247
- * Known issue: affects color of disabled elements.
248
- * 2. Correct font properties not being inherited.
249
- * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
250
- */
251
-
252
- button,
253
- input,
254
- optgroup,
255
- select,
256
- textarea {
257
- color: inherit; /* 1 */
258
- font: inherit; /* 2 */
259
- margin: 0; /* 3 */
260
- }
261
-
262
- /**
263
- * Address `overflow` set to `hidden` in IE 8/9/10/11.
264
- */
265
-
266
- button {
267
- overflow: visible;
268
- }
269
-
270
- /**
271
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
272
- * All other form control elements do not inherit `text-transform` values.
273
- * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274
- * Correct `select` style inheritance in Firefox.
275
- */
276
-
277
- button,
278
- select {
279
- text-transform: none;
280
- }
281
-
282
- /**
283
- * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284
- * and `video` controls.
285
- * 2. Correct inability to style clickable `input` types in iOS.
286
- * 3. Improve usability and consistency of cursor style between image-type
287
- * `input` and others.
288
- */
289
-
290
- button,
291
- html input[type="button"], /* 1 */
292
- input[type="reset"],
293
- input[type="submit"] {
294
- -webkit-appearance: button; /* 2 */
295
- cursor: pointer; /* 3 */
296
- }
297
-
298
- /**
299
- * Re-set default cursor for disabled elements.
300
- */
301
-
302
- button[disabled],
303
- html input[disabled] {
304
- cursor: default;
305
- }
306
-
307
- /**
308
- * Remove inner padding and border in Firefox 4+.
309
- */
310
-
311
- button::-moz-focus-inner,
312
- input::-moz-focus-inner {
313
- border: 0;
314
- padding: 0;
315
- }
316
-
317
- /**
318
- * Address Firefox 4+ setting `line-height` on `input` using `!important` in
319
- * the UA stylesheet.
320
- */
321
-
322
- input {
323
- line-height: normal;
324
- }
325
-
326
- /**
327
- * It's recommended that you don't attempt to style these elements.
328
- * Firefox's implementation doesn't respect box-sizing, padding, or width.
329
- *
330
- * 1. Address box sizing set to `content-box` in IE 8/9/10.
331
- * 2. Remove excess padding in IE 8/9/10.
332
- */
333
-
334
- input[type="checkbox"],
335
- input[type="radio"] {
336
- box-sizing: border-box; /* 1 */
337
- padding: 0; /* 2 */
338
- }
339
-
340
- /**
341
- * Fix the cursor style for Chrome's increment/decrement buttons. For certain
342
- * `font-size` values of the `input`, it causes the cursor style of the
343
- * decrement button to change from `default` to `text`.
344
- */
345
-
346
- input[type="number"]::-webkit-inner-spin-button,
347
- input[type="number"]::-webkit-outer-spin-button {
348
- height: auto;
349
- }
350
-
351
- /**
352
- * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
353
- * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
354
- * (include `-moz` to future-proof).
355
- */
356
-
357
- input[type="search"] {
358
- -webkit-appearance: textfield; /* 1 */
359
- -moz-box-sizing: content-box;
360
- -webkit-box-sizing: content-box; /* 2 */
361
- box-sizing: content-box;
362
- }
363
-
364
- /**
365
- * Remove inner padding and search cancel button in Safari and Chrome on OS X.
366
- * Safari (but not Chrome) clips the cancel button when the search input has
367
- * padding (and `textfield` appearance).
368
- */
369
-
370
- input[type="search"]::-webkit-search-cancel-button,
371
- input[type="search"]::-webkit-search-decoration {
372
- -webkit-appearance: none;
373
- }
374
-
375
- /**
376
- * Define consistent border, margin, and padding.
377
- */
378
-
379
- fieldset {
380
- border: 1px solid #c0c0c0;
381
- margin: 0 2px;
382
- padding: 0.35em 0.625em 0.75em;
383
- }
384
-
385
- /**
386
- * 1. Correct `color` not being inherited in IE 8/9/10/11.
387
- * 2. Remove padding so people aren't caught out if they zero out fieldsets.
388
- */
389
-
390
- legend {
391
- border: 0; /* 1 */
392
- padding: 0; /* 2 */
393
- }
394
-
395
- /**
396
- * Remove default vertical scrollbar in IE 8/9/10/11.
397
- */
398
-
399
- textarea {
400
- overflow: auto;
401
- }
402
-
403
- /**
404
- * Don't inherit the `font-weight` (applied by a rule above).
405
- * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
406
- */
407
-
408
- optgroup {
409
- font-weight: bold;
410
- }
411
-
412
- /* Tables
413
- ========================================================================== */
414
-
415
- /**
416
- * Remove most spacing between table cells.
417
- */
418
-
419
- table {
420
- border-collapse: collapse;
421
- border-spacing: 0;
422
- }
423
-
424
- td,
425
- th {
426
- padding: 0;
427
- }