sass-zero 0.0.54 → 0.0.55
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/Example.html +9 -9
- data/app/assets/stylesheets/sass-zero/breadboard.scss +10 -5
- data/lib/sass/zero/version.rb +1 -1
- data/package.json +1 -1
- 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: 87bd9449a35b1aaf5635f44d910ee5993e650750413f46f77a2759e19d823cbe
|
|
4
|
+
data.tar.gz: 10bd5bb77d0cb2e23d2c1823c007f3c14888ef0fc35636e55fe567732cd9e24b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21067c7675af269ca3e554ac823f9df8adfc44887b9280839a9b21e1d0deda985fb9e1da3e190268b97c292a5be4867d3d3952675157787b75aed1149fc1e20a
|
|
7
|
+
data.tar.gz: 6ef7f228182ba5ade57acb7fdaa37427f6ddec3467682addc489c4067f5481b2f940b2e1933b2a3057bd5d74847dfdf5ea2466de3a2c4ee8ded001c31efe08f8
|
data/Example.html
CHANGED
|
@@ -40,31 +40,31 @@
|
|
|
40
40
|
|
|
41
41
|
<div class="push-md--bottom">
|
|
42
42
|
<div>
|
|
43
|
-
<input type="checkbox" name="option1" value="1" class="checkbox" checked>
|
|
43
|
+
<input type="checkbox" id="option1" name="option1" value="1" class="checkbox" checked>
|
|
44
44
|
<label for="option1" class="u-display-ib">Option 1</label>
|
|
45
45
|
</div>
|
|
46
46
|
<div>
|
|
47
|
-
<input type="checkbox" name="option2" value="2" class="checkbox">
|
|
47
|
+
<input type="checkbox" id="option2" name="option2" value="2" class="checkbox">
|
|
48
48
|
<label for="option2" class="u-display-ib">Option 2</label>
|
|
49
49
|
</div>
|
|
50
50
|
<div>
|
|
51
|
-
<input type="checkbox" name="option3" value="3" class="checkbox">
|
|
51
|
+
<input type="checkbox" id="option3" name="option3" value="3" class="checkbox">
|
|
52
52
|
<label for="option3" class="u-display-ib">Option 3</label>
|
|
53
53
|
</div>
|
|
54
54
|
</div>
|
|
55
55
|
|
|
56
56
|
<div class="push-md--bottom">
|
|
57
57
|
<div>
|
|
58
|
-
<input type="radio" name="radio" value="1" class="radio" checked>
|
|
59
|
-
<label for="
|
|
58
|
+
<input type="radio" id="radio1" name="radio" value="1" class="radio" checked>
|
|
59
|
+
<label for="radio1" class="u-display-ib">Option 1</label>
|
|
60
60
|
</div>
|
|
61
61
|
<div>
|
|
62
|
-
<input type="radio" name="radio" value="2" class="radio">
|
|
63
|
-
<label for="
|
|
62
|
+
<input type="radio" id="radio2" name="radio" value="2" class="radio">
|
|
63
|
+
<label for="radio2" class="u-display-ib">Option 2</label>
|
|
64
64
|
</div>
|
|
65
65
|
<div>
|
|
66
|
-
<input type="radio" name="radio" value="3" class="radio">
|
|
67
|
-
<label for="
|
|
66
|
+
<input type="radio" id="radio3" name="radio" value="3" class="radio">
|
|
67
|
+
<label for="radio3" class="u-display-ib">Option 3</label>
|
|
68
68
|
</div>
|
|
69
69
|
</div>
|
|
70
70
|
</div>
|
|
@@ -33,11 +33,6 @@ html {
|
|
|
33
33
|
padding: $size-2 $size-4;
|
|
34
34
|
cursor: pointer;
|
|
35
35
|
|
|
36
|
-
&:disabled {
|
|
37
|
-
pointer-events: none;
|
|
38
|
-
opacity: $opacity-50;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
36
|
&--primary {
|
|
42
37
|
background-color: var(--color-primary);
|
|
43
38
|
border-color: var(--color-primary);
|
|
@@ -54,6 +49,16 @@ html {
|
|
|
54
49
|
background-color: $transparent;
|
|
55
50
|
border-color: $transparent;
|
|
56
51
|
}
|
|
52
|
+
|
|
53
|
+
&:focus {
|
|
54
|
+
box-shadow: ring($color: var(--color-focus-ring));
|
|
55
|
+
@include outline-none;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&:disabled {
|
|
59
|
+
pointer-events: none;
|
|
60
|
+
opacity: $opacity-50;
|
|
61
|
+
}
|
|
57
62
|
}
|
|
58
63
|
|
|
59
64
|
.input {
|
data/lib/sass/zero/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sass-zero",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"description": "A CSS framework for rapid UI development based on tailwindcss, miligram and BEM.",
|
|
5
5
|
"homepage": "https://github.com/lazaronixon/sass-zero",
|
|
6
6
|
"repository": "lazaronixon/sass-zero",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sass-zero
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.55
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lazaronixon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email:
|