cssremedy-rails 0.1.1 → 0.1.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/cssremedy-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/cssremedy-rails/remedy.css +16 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc17679cb4b094a8652eedef4c5174b534426dd9f1670e9951ffad8ec7297f51
|
|
4
|
+
data.tar.gz: 376a3fc71ab1e8d19cacd147e46e7c155c7883de25dceb6e1a07afa85b2444f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d094fabe30a8bf9d8a84a90ec32d16fad6511dcee2cf9db96fe86ac63f685c023028305354a91a642e37eda1423da7fa6644467e145339870c1e27004739504a
|
|
7
|
+
data.tar.gz: 8943b93b81a7e879f341ad4aac91aeae974945f882a5cbc6568360ac2171d61c6114734dbae63867b2502c4c624630c6df7192d432e191451f34e78444c97030
|
data/Gemfile.lock
CHANGED
|
@@ -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.
|
|
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-
|
|
11
|
+
date: 2019-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|