sass-zero 1.0.9 → 1.0.10

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: b5659e49579ad584864c8f31503efcb6157ac2d840433af384368e15aa03d6b8
4
- data.tar.gz: c96bc947bd98a65642391a7f2a34d3097054b2be7f0b9833390de3fbdc18d232
3
+ metadata.gz: 68f7330dbd9cb3e845544d409b180a4e49f0e5c61138b85e209140385f95a12f
4
+ data.tar.gz: 185299448e7e080b8bd0e950ad4b0e4cd332d5e9865783998f9df01146e3b529
5
5
  SHA512:
6
- metadata.gz: 63201f3571e76a7775d590efb37c959452fbd8ccb658d0065afd7ab3edd9869c88674690327c2b8e2e9ba857c69c6abf31a454e437ec9d4cffcd20bb64873820
7
- data.tar.gz: 212e63c5e6be1bb579d06cee1fd019da1594b7816394f08a89a7b46d52208109bf3b7408ff6d5cd97167f78105e813375eeb2099e87c0c76e91092e1c6d8f989
6
+ metadata.gz: 5bd9b50752c33876ae9d403145f40905c75cade64315423a9fa4adee0ea07f35f3245192f0fb805633c55ae4fd3c453534316c74c0de8f4babf796f2b2c30ef6
7
+ data.tar.gz: d78d0d6e1e7e695b264f8ce8c2fead3d90c259c0013f6d163ff891fc0ec7379214e4201c649ed1a445632ec83070b15e59d871d84ea048daefb73fb7444c7b30
data/Example.html CHANGED
@@ -153,13 +153,13 @@
153
153
 
154
154
  <hr>
155
155
 
156
- <ul class="list--unindented ">
156
+ <ul class="list--unindented">
157
157
  <li>Unordered list item 1</li>
158
158
  <li>Unordered list item 2</li>
159
159
  <li>Unordered list item 3</li>
160
160
  </ul>
161
161
 
162
- <ol class="list--unindented ">
162
+ <ol class="list--unindented">
163
163
  <li>Ordered list item 1</li>
164
164
  <li>Ordered list item 2</li>
165
165
  <li>Ordered list item 3</li>
@@ -71,10 +71,8 @@ html {
71
71
  }
72
72
 
73
73
  .input {
74
- -webkit-appearance: none;
75
-
74
+ @include appearance-none;
76
75
  resize: none;
77
- appearance: none;
78
76
  background-color: var(--color-bg--main);
79
77
  border-radius: $radius-input;
80
78
  border-width: $border;
@@ -150,11 +148,11 @@ a {
150
148
  font-weight: $font-bold;
151
149
  }
152
150
 
153
- ul, ol {
151
+ menu, ul, ol {
154
152
  padding-left: $size-10;
155
153
  }
156
154
 
157
- ul {
155
+ menu, ul {
158
156
  list-style: disc outside;
159
157
  }
160
158
 
@@ -166,7 +164,7 @@ dt {
166
164
  font-weight: $font-bold;
167
165
  }
168
166
 
169
- label, legend, dt {
167
+ label, legend, dt, dd, li {
170
168
  margin-bottom: $size-1;
171
169
  }
172
170
 
@@ -178,7 +176,7 @@ fieldset, .input {
178
176
  margin-bottom: $size-6;
179
177
  }
180
178
 
181
- table, progress, details, blockquote, figure, pre, ul, ol, dl, p {
179
+ table, progress, details, blockquote, figure, pre, menu, ul, ol, dl, p {
182
180
  margin-bottom: $size-6;
183
181
  }
184
182
 
@@ -221,7 +219,7 @@ table, progress {
221
219
  td, th {
222
220
  border-bottom-width: $border;
223
221
  padding: $size-3 $size-4;
224
- text-align: inherit;
222
+ text-align: left;
225
223
  }
226
224
 
227
225
  h1, h2, h3, h4, h5, h6, .hdg {
@@ -24,6 +24,11 @@
24
24
  outline-offset: 2px;
25
25
  }
26
26
 
27
+ @mixin appearance-none {
28
+ -webkit-appearance: none;
29
+ appearance: none;
30
+ }
31
+
27
32
  @mixin progress-bar {
28
33
  ::-webkit-progress-value {
29
34
  @content;
@@ -56,7 +56,7 @@
56
56
 
57
57
  .u-disabled {
58
58
  pointer-events: none;
59
- opacity: $opacity-30;
59
+ opacity: $opacity-50;
60
60
  }
61
61
 
62
62
  .u-off-screen {
@@ -2,7 +2,7 @@
2
2
  @import "sass-zero/mixins";
3
3
 
4
4
  .list--unindented {
5
- padding-left: $size-4;
5
+ padding-left: 1.2em;
6
6
  }
7
7
 
8
8
  .list--flush {
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.0.9"
3
+ VERSION = "1.0.10"
4
4
  end
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-zero",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
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: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-08 00:00:00.000000000 Z
11
+ date: 2022-02-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: