sass-zero 1.0.16 → 1.0.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.scss-lint.yml +31 -0
- data/Gemfile.lock +1 -1
- data/app/assets/stylesheets/sass-zero/base/preflight.scss +0 -9
- data/app/assets/stylesheets/sass-zero/breadboard.scss +3 -3
- data/app/assets/stylesheets/sass-zero/utilities/align.scss +1 -1
- data/app/assets/stylesheets/sass-zero/utilities/animation.scss +2 -2
- data/app/assets/stylesheets/sass-zero/utilities/layout.scss +2 -2
- data/app/assets/stylesheets/sass-zero/variables/effects.scss +1 -1
- data/lib/sass_zero/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4759309e52c04d123d920114a45bc4fa32ae109b147576bc0b38147ffdf286c2
|
4
|
+
data.tar.gz: db228db2ad8576c0f9fb7e2d118d23b4f7664d398419cc578074ed18657ec93d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 659baf67f71dc2ef03dca65ab78b1d4af69afbe73e2b21c9de6ce63fa641ce0399e26aebf4d49e23c6325641da17a792d35d8759e52609f673901f0f8e4a684a
|
7
|
+
data.tar.gz: 118c182162e54c47ce34010101c79dae11ef135ad90dbeb139d47bccd5ba7963868cef978c28e634ebdaf0ee0b809e4e1c258af0a4ca4da0b49f883ee8cbf680
|
data/.scss-lint.yml
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
linters:
|
2
|
+
SelectorFormat:
|
3
|
+
enabled: false
|
4
|
+
PropertySortOrder:
|
5
|
+
enabled: false
|
6
|
+
SingleLinePerSelector:
|
7
|
+
enabled: false
|
8
|
+
SingleLinePerProperty:
|
9
|
+
enabled: false
|
10
|
+
SpaceAfterPropertyColon:
|
11
|
+
enabled: false
|
12
|
+
Comment:
|
13
|
+
enabled: false
|
14
|
+
LeadingZero:
|
15
|
+
enabled: false
|
16
|
+
ImportantRule:
|
17
|
+
enabled: false
|
18
|
+
ColorVariable:
|
19
|
+
enabled: false
|
20
|
+
MergeableSelector:
|
21
|
+
enabled: false
|
22
|
+
ZeroUnit:
|
23
|
+
enabled: false
|
24
|
+
VendorPrefix:
|
25
|
+
enabled: false
|
26
|
+
EmptyLineBetweenBlocks:
|
27
|
+
enabled: false
|
28
|
+
PseudoElement:
|
29
|
+
enabled: false
|
30
|
+
StringQuotes:
|
31
|
+
enabled: false
|
data/Gemfile.lock
CHANGED
@@ -368,12 +368,3 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
368
368
|
[hidden] {
|
369
369
|
display: none;
|
370
370
|
}
|
371
|
-
|
372
|
-
/**
|
373
|
-
* Unfortunate hack until https://bugs.webkit.org/show_bug.cgi?id=198959 is fixed.
|
374
|
-
* This sucks because users can't change line-height with a utility on date inputs now.
|
375
|
-
* Reference: https://github.com/twbs/bootstrap/pull/31993
|
376
|
-
*/
|
377
|
-
::-webkit-date-and-time-value {
|
378
|
-
min-height: 1.5em;
|
379
|
-
}
|
@@ -25,7 +25,7 @@ $radius-secondary: $rounded;
|
|
25
25
|
}
|
26
26
|
|
27
27
|
html {
|
28
|
-
accent-color: var(--color-primary);
|
28
|
+
accent-color: var(--color-primary); // scss-lint:disable all
|
29
29
|
background: var(--color-bg--main);
|
30
30
|
color: var(--color-text);
|
31
31
|
font-family: $font-family;
|
@@ -103,7 +103,7 @@ html {
|
|
103
103
|
z-index: $z-10;
|
104
104
|
}
|
105
105
|
|
106
|
-
|
106
|
+
[type="checkbox"], [type="radio"] {
|
107
107
|
transform: scale(1.2, 1.2);
|
108
108
|
margin: $size-1;
|
109
109
|
}
|
@@ -126,7 +126,7 @@ pre {
|
|
126
126
|
border-left-width: $border-4;
|
127
127
|
overflow-y: hidden;
|
128
128
|
|
129
|
-
|
129
|
+
> code {
|
130
130
|
border-radius: $rounded-none;
|
131
131
|
display: block;
|
132
132
|
padding: $size-2 $size-3;
|
@@ -50,10 +50,10 @@
|
|
50
50
|
@keyframes bounce {
|
51
51
|
0%, 100% {
|
52
52
|
transform: translateY(-25%);
|
53
|
-
animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
|
53
|
+
animationTimingFunction: cubic-bezier(0.8, 0, 1, 1); // scss-lint:disable all
|
54
54
|
}
|
55
55
|
50% {
|
56
56
|
transform: translateY(0);
|
57
|
-
animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
|
57
|
+
animationTimingFunction: cubic-bezier(0, 0, 0.2, 1); // scss-lint:disable all
|
58
58
|
}
|
59
59
|
}
|
@@ -38,7 +38,7 @@ $opacity-100: 1;
|
|
38
38
|
// Function for creating outline rings with box-shadows.
|
39
39
|
// box-shadow: ring($width: 4px);
|
40
40
|
// *******************************************************************
|
41
|
-
@function ring($width: 2px, $color: rgba($blue-500, 0.5), $offset-width: 0px, $offset-color: $white, $inset: false)
|
41
|
+
@function ring($width: 2px, $color: rgba($blue-500, 0.5), $offset-width: 0px, $offset-color: $white, $inset: false) {
|
42
42
|
@if $inset {
|
43
43
|
$ring-offset-shadow: inset 0 0 0 $offset-width $offset-color;
|
44
44
|
$ring-shadow: inset 0 0 0 ($width + $offset-width) $color;
|
data/lib/sass_zero/version.rb
CHANGED
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: 1.0.
|
4
|
+
version: 1.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lazaronixon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-04-
|
11
|
+
date: 2022-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -19,6 +19,7 @@ extra_rdoc_files: []
|
|
19
19
|
files:
|
20
20
|
- ".github/FUNDING.yml"
|
21
21
|
- ".gitignore"
|
22
|
+
- ".scss-lint.yml"
|
22
23
|
- Example.html
|
23
24
|
- Gemfile
|
24
25
|
- Gemfile.lock
|