cssremedy-rails 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: e8142015adba746021591378534d10576b20e2af0110d35b45123db69688ddab
4
- data.tar.gz: f5de84b19e51b7150459e694aa40d72e1b6a8b97a67379ff8645d8103f8e649a
3
+ metadata.gz: fc17679cb4b094a8652eedef4c5174b534426dd9f1670e9951ffad8ec7297f51
4
+ data.tar.gz: 376a3fc71ab1e8d19cacd147e46e7c155c7883de25dceb6e1a07afa85b2444f0
5
5
  SHA512:
6
- metadata.gz: d2cf0bf0234094f926fa3d106a196e8f22632bf339e54616e783e63abac8a42793decdc706564278f2ba675a7f98715733a9e28dfb94fcca8dad85dc071ec80f
7
- data.tar.gz: 7f1806823b0d2705e151a08ea1a4cb0ca2eba1e40a22c23ca0613f371b01f5546e802682566116161623699ed4434c4c9d7e2039becb9f3121dc6934e63825d1
6
+ metadata.gz: d094fabe30a8bf9d8a84a90ec32d16fad6511dcee2cf9db96fe86ac63f685c023028305354a91a642e37eda1423da7fa6644467e145339870c1e27004739504a
7
+ data.tar.gz: 8943b93b81a7e879f341ad4aac91aeae974945f882a5cbc6568360ac2171d61c6114734dbae63867b2502c4c624630c6df7192d432e191451f34e78444c97030
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cssremedy-rails (0.1.1)
4
+ cssremedy-rails (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,5 +1,5 @@
1
1
  module Cssremedy
2
2
  module Rails
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
@@ -54,6 +54,10 @@ pre {
54
54
  white-space: pre-wrap; /* Overflow by default is bad. */
55
55
  }
56
56
 
57
+ hr {
58
+ border: .5px solid;
59
+ }
60
+
57
61
 
58
62
  /* Are browsers now consistent with margin & padding on lists?
59
63
  See: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Lists_and_Counters/Consistent_list_indentation */
@@ -61,31 +65,37 @@ nav ul {
61
65
  list-style: none;
62
66
  }
63
67
 
64
-
68
+ img, video, canvas, audio, iframe, embed, object {
69
+ display: block; /* Switch display mode to block, since that's what we usually want for images. */
70
+ vertical-align: middle; /* If you override, and make an image inline, it's likely you'll want middle vertical alignment. */
71
+ }
72
+ img, video {
73
+ max-width: 100%; /* Make images and video flexible by default. */
74
+ height: auto; /* Ensure images and video maintain their aspect ratio when max-width comes into play. */
75
+ }
65
76
  img {
66
77
  border-style: none; /* Remove the border on images inside links in IE 10 and earlier. */
67
- vertical-align: bottom; /* Fix problem with images having a tiny gap for a descender under them. */
68
- display: block; /* Switch display mode to block, since that's what we usually want for images. */
69
- max-width: 100%; /* Make images flexible by default. */
70
- height: auto; /* Ensure images maintain their aspect ratio when max-width comes into play. */
71
78
  }
72
79
 
73
-
74
80
  /* In English, when styling the <q> element, use curly quotes instead of straight quotes. */
75
81
 
76
82
  /* Code for this is now in the quotes.css file */
77
83
 
78
84
 
85
+
86
+
79
87
  /* Support upcoming properties that haven't been broadly implemented yet,
80
88
  but for which the initial value and legacy behavior is not be the best behavior.
81
89
  */
82
90
 
83
91
  /* Consistent line spacing, which does not unnecessarily grow to accommodate things that would fit anyway */
92
+ /* From CSS Inline Layout Module Level 3: https://drafts.csswg.org/css-inline-3/#line-sizing-property */
84
93
  :root {
85
94
  line-sizing: normal;
86
95
  }
87
96
 
88
97
  /* Improve spacing of punctuation marks and at script changes in CJK languages */
98
+ /* From CSS Text Module Level 4: https://drafts.csswg.org/css-text-4/#text-spacing-property */
89
99
  :root {
90
100
  text-spacing: trim-start allow-end trim-adjacent ideograph-alpha ideograph-numeric;
91
101
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cssremedy-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blake Prudhomme
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-02-12 00:00:00.000000000 Z
11
+ date: 2019-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler