css-zero 0.0.25 → 0.0.27

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: b904762be7cdca0956aa0340d32bdaf524ce2f10b106e30f2487104904ce23cf
4
- data.tar.gz: cd968a19dfbd06001ba9b009c73cc513d2a5440c0d53146b062e4561e4c5c187
3
+ metadata.gz: 6042a247b900f1c53ca209d67a3cd9de65cea06889a70ad5b13643b915195a08
4
+ data.tar.gz: 5cd927896caf176105f857803a676f26e802041578a255777f371b79b8df8555
5
5
  SHA512:
6
- metadata.gz: e2c9fbae5418104337666b1302c9ae824f72adcce8009cde01ed5df1a12e770726598d16d3cf1dd885a0d318328e0889922dc4230975b06129a7f72f8a7ee45d
7
- data.tar.gz: 1a65d184ce40cce70efcb94afc23100e0c2019668a4aba36eee69b1abae86fd7beb966f061ec15d71c6acf8ecf18e3eef3587535da320497e1d8d086aee17ff9
6
+ metadata.gz: 4adc0e6555602ace413d7da7205bbff33de92a2372130f7f3646f05f6951deb04b858746115adce32bdda70bd52497b85a12cff03afa21beeff4751a3639beae
7
+ data.tar.gz: 14a8a5733e07206451923270e5e042635a40edbcacda8225ce80f1fe8a4387d490dd4fea58d204d31b0f9494ea1f09644d3fe3ddaeb27a5ca0a84f045d7f7aae
data/README.md CHANGED
@@ -19,7 +19,7 @@ bin/rails generate css_zero:install
19
19
  Add only the components you need. (Optional)
20
20
 
21
21
  ```
22
- bin/rails generate css_zero:add accordion alert avatar badge breadcrumb button card carousel collapsible dialog flash input pagination progress prose sheet skeleton switch table
22
+ bin/rails generate css_zero:add accordion alert avatar badge breadcrumb button card carousel collapsible dialog flash input pagination progress prose sheet skeleton switch table toggle
23
23
  ```
24
24
 
25
25
  ### Requirements
@@ -52,6 +52,7 @@ If you are using [Sprockets](https://github.com/rails/sprockets) make sure to lo
52
52
  *= require transform
53
53
  *= require transition
54
54
  *= require typography
55
+ *= require zindex
55
56
  *= require_tree .
56
57
  *= require_self
57
58
  *= require zutilities
@@ -36,6 +36,15 @@ html,
36
36
  -webkit-tap-highlight-color: transparent; /* 7 */
37
37
  }
38
38
 
39
+ /*
40
+ Prevent page scroll when modal dialog is open.
41
+ */
42
+
43
+ html:has(dialog:modal[open]) {
44
+ overflow: hidden;
45
+ }
46
+
47
+
39
48
  /*
40
49
  Inherit line-height from `html` so users can set them as a class directly on the `html` element.
41
50
  */
@@ -193,6 +202,14 @@ input:where([type='button'], [type='reset'], [type='submit']),
193
202
  appearance: button;
194
203
  }
195
204
 
205
+ /*
206
+ Revert padding block, it can be noticed in select with multiple.
207
+ */
208
+
209
+ option {
210
+ padding-block: revert;
211
+ }
212
+
196
213
  /*
197
214
  Use the modern Firefox focus style for all focusable elements.
198
215
  */
@@ -234,14 +251,6 @@ progress {
234
251
  line-height: 1em;
235
252
  }
236
253
 
237
- /*
238
- Correct empty date field height on safari IOS.
239
- */
240
-
241
- ::-webkit-date-and-time-value {
242
- height: 1.5em;
243
- }
244
-
245
254
  /*
246
255
  Remove the inner padding in Chrome and Safari on macOS.
247
256
  */
@@ -251,16 +260,11 @@ progress {
251
260
  }
252
261
 
253
262
  /*
254
- Remove the increment cursor for step any.
263
+ Correct empty date field height on safari IOS.
255
264
  */
256
265
 
257
- input[step='any']::-webkit-inner-spin-button,
258
- input[step='any']::-webkit-outer-spin-button {
259
- -webkit-appearance: none;
260
- }
261
-
262
- input[step='any'] {
263
- -moz-appearance: textfield;
266
+ ::-webkit-date-and-time-value {
267
+ height: 1.5em;
264
268
  }
265
269
 
266
270
  /*
@@ -336,10 +340,11 @@ video {
336
340
  }
337
341
 
338
342
  /*
339
- Prevent page scroll when modal dialog is open
343
+ Make turbo frame become pseudo-box by default.
340
344
  */
341
- html:has(dialog:modal[open]) {
342
- overflow: hidden;
345
+
346
+ turbo-frame {
347
+ display: contents;
343
348
  }
344
349
 
345
350
  /*
@@ -0,0 +1,13 @@
1
+ /****************************************************************
2
+ * Z-Index
3
+ * Utilities for controlling the stack order of an element.
4
+ * z-index: var(--z-10);
5
+ *****************************************************************/
6
+
7
+ :root {
8
+ --z-10: 10;
9
+ --z-20: 20;
10
+ --z-30: 30;
11
+ --z-40: 40;
12
+ --z-50: 50;
13
+ }
@@ -1,3 +1,3 @@
1
1
  module CssZero
2
- VERSION = "0.0.25"
2
+ VERSION = "0.0.27"
3
3
  end
@@ -2,7 +2,7 @@ Description:
2
2
  This will add components into your project.
3
3
 
4
4
  Components:
5
- accordion alert avatar badge breadcrumb button card carousel collapsible dialog flash input pagination progress prose sheet skeleton switch table
5
+ accordion alert avatar badge breadcrumb button card carousel collapsible dialog flash input pagination progress prose sheet skeleton switch table toggle
6
6
 
7
7
  Example:
8
8
  bin/rails generate css_zero:add [components...]
@@ -51,3 +51,5 @@ switch:
51
51
  - app/assets/stylesheets/switch.css
52
52
  table:
53
53
  - app/assets/stylesheets/table.css
54
+ toggle:
55
+ - app/assets/stylesheets/toggle.css
@@ -15,7 +15,6 @@
15
15
  color: var(--color-text);
16
16
  }
17
17
 
18
- /* Small screens and below */
19
18
  @media (width < 40rem) {
20
19
  gap: var(--size-1_5);
21
20
  }
@@ -1,7 +1,6 @@
1
1
  .btn {
2
2
  align-items: center;
3
3
  background-color: var(--btn-background, var(--color-primary));
4
- border-color: var(--color-border);
5
4
  border-radius: var(--rounded-md);
6
5
  border-width: var(--btn-border-width, 0);
7
6
  color: var(--btn-color, var(--color-text-reversed));
@@ -71,12 +70,13 @@
71
70
 
72
71
  &::after {
73
72
  animation: var(--animate-spin);
73
+ animation-duration: 1s;
74
74
  background-image: url("loader-circle.svg");
75
75
  background-size: cover;
76
- block-size: var(--size-4);
76
+ block-size: var(--size-6);
77
77
  content: "";
78
78
  filter: var(--btn-icon-color, var(--color-filter-text-reversed));
79
- inline-size: var(--size-4);
79
+ inline-size: var(--size-6);
80
80
  margin-inline: auto;
81
81
  position: absolute;
82
82
  }
@@ -47,7 +47,6 @@
47
47
  }
48
48
  }
49
49
 
50
- /* Small screens and below */
51
50
  @media (width < 40rem) {
52
51
  border-end-end-radius: 0;
53
52
  border-end-start-radius: 0;
@@ -60,9 +59,4 @@
60
59
  inset-block-start: var(--size-4);
61
60
  inset-inline-end: var(--size-4);
62
61
  position: absolute;
63
-
64
- /* Small screens and below */
65
- @media (width < 40rem) {
66
- display: none;
67
- }
68
62
  }
@@ -1,7 +1,6 @@
1
1
  .flash {
2
2
  animation: appear-then-fade 4s 300ms both;
3
- backdrop-filter: var(--blur) var(--contrast-75);
4
- background-color: hsl(from var(--color-text) h s l / .65);
3
+ background-color: var(--color-text);
5
4
  border-radius: var(--rounded-full);
6
5
  color: var(--color-text-reversed);
7
6
  margin-block-start: var(--size-4);
@@ -9,11 +8,6 @@
9
8
  padding: var(--size-2) var(--size-4);
10
9
  position: fixed;
11
10
  text-align: center;
12
-
13
- img {
14
- display: inline;
15
- margin-block-end: var(--size-1);
16
- }
17
11
  }
18
12
 
19
13
  @keyframes appear-then-fade {
@@ -3,15 +3,10 @@
3
3
  background-color: var(--color-bg);
4
4
  border-color: var(--color-border);
5
5
  border-radius: var(--rounded-md);
6
- border-width: var(--border);
7
6
  font-size: var(--text-sm);
8
7
  inline-size: var(--size-full);
9
8
  padding: var(--size-2) var(--size-3);
10
9
 
11
- option {
12
- padding-block: var(--size-1);
13
- }
14
-
15
10
  &:is(textarea):not([rows]) {
16
11
  field-sizing: content;
17
12
  max-block-size: calc(10lh + var(--size-6));
@@ -64,13 +59,11 @@
64
59
  }
65
60
 
66
61
  :is(.input, .range, .checkbox, .radio) {
67
- /* Keyboard navigation */
68
62
  &:focus-visible {
69
63
  outline: var(--border-2) solid var(--color-selected-dark);
70
64
  outline-offset: var(--border-2);
71
65
  }
72
66
 
73
- /* Server side validation */
74
67
  .field_with_errors & {
75
68
  border-color: var(--color-negative);
76
69
  }
@@ -47,7 +47,6 @@
47
47
  }
48
48
  }
49
49
 
50
- /* Small screens and below */
51
50
  @media (width < 40rem) {
52
51
  max-inline-size: none;
53
52
  text-align: center;
@@ -0,0 +1,17 @@
1
+ .toggle {
2
+ display: inline-flex;
3
+ position: relative;
4
+
5
+ &:has(:focus-visible) .btn {
6
+ outline: var(--border-2) solid var(--color-selected-dark);
7
+ outline-offset: var(--border-2);
8
+ }
9
+
10
+ [type="checkbox"] {
11
+ position: absolute; clip: rect(0, 0, 0, 0);
12
+ }
13
+
14
+ [type="checkbox"]:checked + .btn {
15
+ --btn-background: var(--color-secondary);
16
+ }
17
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: css-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.25
4
+ version: 0.0.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lázaro Nixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-23 00:00:00.000000000 Z
11
+ date: 2024-07-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lazaronixon@hotmail.com
@@ -29,6 +29,7 @@ files:
29
29
  - app/assets/stylesheets/transform.css
30
30
  - app/assets/stylesheets/transition.css
31
31
  - app/assets/stylesheets/typography.css
32
+ - app/assets/stylesheets/zindex.css
32
33
  - app/assets/stylesheets/zutilities.css
33
34
  - app/helpers/dialog_helper.rb
34
35
  - lib/css-zero.rb
@@ -65,6 +66,7 @@ files:
65
66
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/skeleton.css
66
67
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/switch.css
67
68
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/table.css
69
+ - lib/generators/css_zero/add/templates/app/assets/stylesheets/toggle.css
68
70
  - lib/generators/css_zero/add/templates/app/javascript/controllers/carousel_controller.js
69
71
  - lib/generators/css_zero/add/templates/app/javascript/controllers/collapsible_controller.js
70
72
  - lib/generators/css_zero/add/templates/app/javascript/controllers/dialog_controller.js