sass-zero 1.0.18 → 1.0.21

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: ae0169fa3b0f46ac9ffa776300e30926fbcbe609519d4c8d858f5706f11e134b
4
- data.tar.gz: 6ba19424ba23d54ca3188e6b9c3117786e6d049058dd03cd015d16bc7607b208
3
+ metadata.gz: '028fa694f5f0eaae96041f1353c5750f0afc18234dfd7d90992b9a1721f37488'
4
+ data.tar.gz: 6e24b0e6e4b4cbe7f8d67ea13b902d5d036c2f15104b81aceb87e35cb14c24cd
5
5
  SHA512:
6
- metadata.gz: 489eb118a0543eb727d53a091ee29fb0fea8b57503ce776cbdb0fd07a7391ada77f3bfe11184db6b07eb7f1389544b363a49fbbd337952d112ff2e5b25b54adf
7
- data.tar.gz: f72a5a254c34fc4bb8a3182fe58715d06d52365fea6fbf23425811dc82e40173b3289b663e25ef7c8fca814153c0475c24279fd5ecc0fa5253121281ec803b09
6
+ metadata.gz: '08968d9d7665299f3f9b3c09823b35d442112bba23b0dfad16ec81af6a8853595ab25e1ae8cacdc403a23320cf0a8e22d4ad45bfc23e7564d78b5dbee17fea6d'
7
+ data.tar.gz: a4df5727cc62ae336df738a58d62796a513613c67b50f5a6226779f33b2940ea736c344a54d4d791f50334a33c0a59547eefb9f39b0b9a63aaa85962e2741e9c
data/Example.html CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  <input type="submit" value="Submit Button" class="btn btn--secondary" />
24
24
 
25
- <details class="u-display-ib">
25
+ <details class="u-position-context">
26
26
  <summary class="btn btn--secondary">Popup Button</summary>
27
27
  <div class="popup-menu push-xs--top u-position--right">
28
28
  <ul class="list--unindented u-nowrap flush">
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sass-zero (1.0.18)
4
+ sass-zero (1.0.21)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -16,4 +16,4 @@ DEPENDENCIES
16
16
  sass-zero!
17
17
 
18
18
  BUNDLED WITH
19
- 2.3.9
19
+ 2.3.19
@@ -71,7 +71,7 @@ html {
71
71
  }
72
72
 
73
73
  .input {
74
- @include appearance-none;
74
+ appearance: none;
75
75
  resize: none;
76
76
  background-color: var(--color-bg--main);
77
77
  border-radius: $radius-secondary;
@@ -95,10 +95,10 @@ html {
95
95
  }
96
96
 
97
97
  .popup-menu {
98
- background-color: var(--color-bg--surface);
99
- border-radius: $radius-secondary;
100
- padding: $size-2 $size-3;
101
- box-shadow: $shadow-md;
98
+ background-color: var(--color-bg--main);
99
+ border-width: $border; border-radius: $radius-primary;
100
+ padding: $size-3 $size-4;
101
+ box-shadow: $shadow-lg;
102
102
  position: absolute;
103
103
  z-index: $z-10;
104
104
  }
@@ -190,8 +190,8 @@ table, progress, blockquote, figure, pre, menu, ul, ol, dl, p {
190
190
  }
191
191
 
192
192
  dialog {
193
- background-color: var(--color-bg--surface);
194
- border-radius: $radius-primary;
193
+ background-color: var(--color-bg--main);
194
+ border-width: $border; border-radius: $radius-primary;
195
195
  padding: $size-3 $size-4;
196
196
  box-shadow: $shadow-lg;
197
197
  color: inherit;
@@ -210,7 +210,7 @@ progress {
210
210
  }
211
211
 
212
212
  details {
213
- position: relative;
213
+ display: inline-block;
214
214
  }
215
215
 
216
216
  summary {
@@ -24,11 +24,6 @@
24
24
  outline-offset: 2px;
25
25
  }
26
26
 
27
- @mixin appearance-none {
28
- -webkit-appearance: none;
29
- appearance: none;
30
- }
31
-
32
27
  @mixin progress-bar {
33
28
  ::-webkit-progress-value {
34
29
  @content;
@@ -4,7 +4,7 @@
4
4
  // Use as padding, margin, width, height, translate, etc...
5
5
  // *******************************************************************
6
6
  $size-px: 1px;
7
- $size-0: 0px;
7
+ $size-0: 0rem;
8
8
  $size-1: 0.25rem;
9
9
  $size-2: 0.5rem;
10
10
  $size-3: 0.75rem;
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.0.18"
3
+ VERSION = "1.0.21"
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.18",
3
+ "version": "1.0.21",
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.18
4
+ version: 1.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-31 00:00:00.000000000 Z
11
+ date: 2022-08-07 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: