sass-zero 1.0.16 → 1.0.17

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 776c9fc40ca0e6b68ff6ac295cd73a77549af43cf0847b2ee8975033570c07b4
4
- data.tar.gz: 3e4a3125bd4b4a56d7bbb6c0168dd0a0eecaed705b534c8f22592fbdeafe4579
3
+ metadata.gz: 4759309e52c04d123d920114a45bc4fa32ae109b147576bc0b38147ffdf286c2
4
+ data.tar.gz: db228db2ad8576c0f9fb7e2d118d23b4f7664d398419cc578074ed18657ec93d
5
5
  SHA512:
6
- metadata.gz: 9a8d4b5a131342c76c83e7bd4e13b1fa70496bdc9811603d133e015bccc8ec23e343c80be30099bd7b9dfe75d71da88a6824ff9a4d7bc1cdd3c8dc2ef092fe79
7
- data.tar.gz: 24152dd48eb838f18ba51bc8f018eb5755c7e3763cc69a0e2bd0f28b55334f978c1ba19c34ea1ffeb100a6e6d7e5a16beb1242426b255dc4be02b829d1547a12
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sass-zero (1.0.16)
4
+ sass-zero (1.0.17)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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
- input[type="checkbox"], input[type="radio"] {
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
- & > code {
129
+ > code {
130
130
  border-radius: $rounded-none;
131
131
  display: block;
132
132
  padding: $size-2 $size-3;
@@ -24,5 +24,5 @@
24
24
 
25
25
  .centered {
26
26
  margin-left: auto;
27
- margin-right: auto
27
+ margin-right: auto;
28
28
  }
@@ -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
  }
@@ -3,7 +3,7 @@
3
3
  @import "../mixins";
4
4
 
5
5
  .debug * {
6
- outline: 1px red solid !important;
6
+ outline: 1px #f00 solid !important;
7
7
  }
8
8
 
9
9
  .u-display-n {
@@ -51,7 +51,7 @@
51
51
  }
52
52
 
53
53
  .u-full-height {
54
- height: 100%
54
+ height: 100%;
55
55
  }
56
56
 
57
57
  .u-disabled {
@@ -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;
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.0.16"
3
+ VERSION = "1.0.17"
4
4
  end
5
5
  end
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.16
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-03 00:00:00.000000000 Z
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