css-zero 0.0.23 → 0.0.24

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 384e68aee1868c3f50f08a62b7f8f7dfa8ccbef7ebcfb8237758f9089c2ca817
4
- data.tar.gz: df90558a73aaf3470093c6eddf9d20ce8372a1d7503809c23544cdd6b7d4b0dd
3
+ metadata.gz: a5e73d39707f2126d5d15f5099004ac306aa5acaa584ff7c4441bfec4309d8f3
4
+ data.tar.gz: 9eb912c80e2fd2e3f0681390cecb8cb2950e558cf2c42fae5affd846cd4b08e3
5
5
  SHA512:
6
- metadata.gz: 928d0dd662bd67da78146d1356dcacd04946a57fccb25aaf861224e79f6028fe87888520142c5cb56d492be3367b12c512739871e76e8608f56563216926dc83
7
- data.tar.gz: 55578a5d4ef3a5a6cf1f2e987223bfdf99e2493fd7d649e1a56765859dbe96a9b83d75fa4321159992e04347b3c7dfd9eeec2e25f9b00f18dc0c32cdf0dd801d
6
+ metadata.gz: 1d9ad5567f702b654d1efca3312b275fd3adec67c95bdf5539d44b01dc845846b171b8850654d3e8182537c3b4b1a757a1291500df589c0575880d6a6629ab68
7
+ data.tar.gz: e55ab56ea77eefd60b392afe4c6cda7421739bab9a25c1410e5d8a83ab37a73912849803c2d67a4fe513a8227437486ae2ef93b3046a5d4d456265af7db6c3f8
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 input pagination progress prose switch table
22
+ bin/rails generate css_zero:add accordion alert avatar badge breadcrumb button card carousel collapsible dialog input pagination progress prose sheet switch table
23
23
  ```
24
24
 
25
25
  ### Requirements
@@ -234,6 +234,14 @@ progress {
234
234
  line-height: 1em;
235
235
  }
236
236
 
237
+ /*
238
+ Correct empty date field height on safari IOS.
239
+ */
240
+
241
+ ::-webkit-date-and-time-value {
242
+ height: 1.5em;
243
+ }
244
+
237
245
  /*
238
246
  Remove the inner padding in Chrome and Safari on macOS.
239
247
  */
@@ -242,6 +250,19 @@ progress {
242
250
  -webkit-appearance: none;
243
251
  }
244
252
 
253
+ /*
254
+ Remove the increment cursor for step any.
255
+ */
256
+
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;
264
+ }
265
+
245
266
  /*
246
267
  Add the correct display in Chrome and Safari.
247
268
  */
@@ -314,6 +335,13 @@ video {
314
335
  block-size: auto;
315
336
  }
316
337
 
338
+ /*
339
+ Prevent page scroll when dialog is open
340
+ */
341
+ html:has(dialog[open]) {
342
+ overflow: hidden;
343
+ }
344
+
317
345
  /*
318
346
  Make elements with the HTML hidden attribute stay hidden by default.
319
347
  */
@@ -1,3 +1,3 @@
1
1
  module CssZero
2
- VERSION = "0.0.23"
2
+ VERSION = "0.0.24"
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 input pagination progress prose switch table
5
+ accordion alert avatar badge breadcrumb button card carousel collapsible dialog input pagination progress prose sheet switch table
6
6
 
7
7
  Example:
8
8
  bin/rails generate css_zero:add [components...]
@@ -40,5 +40,9 @@ prose:
40
40
  - app/assets/stylesheets/prose.css
41
41
  switch:
42
42
  - app/assets/stylesheets/switch.css
43
+ sheet:
44
+ - app/assets/stylesheets/sheet.css
45
+ - app/javascript/controllers/dialog_controller.js
46
+ - app/assets/images/x.svg
43
47
  table:
44
48
  - app/assets/stylesheets/table.css
@@ -66,8 +66,3 @@
66
66
  display: none;
67
67
  }
68
68
  }
69
-
70
- /* Prevent page scroll when dialog is open */
71
- html:has(.dialog[open]) {
72
- overflow: hidden;
73
- }
@@ -0,0 +1,61 @@
1
+ .sheet {
2
+ background-color: var(--color-bg);
3
+ border-inline-start-width: var(--border);
4
+ box-shadow: var(--shadow-lg);
5
+ block-size: 100%;
6
+ color: var(--color-text);
7
+ inline-size: var(--size-3-4);
8
+ margin-inline-start: auto;
9
+ max-block-size: none;
10
+ max-inline-size: var(--width-sm);
11
+ padding: var(--size-6);
12
+
13
+ &::backdrop {
14
+ background-color: rgba(0, 0, 0, .8);
15
+ }
16
+
17
+ /* Setup animation */
18
+ transform: translateX(100%);
19
+ transition-behavior: allow-discrete;
20
+ transition-duration: var(--time-500);
21
+ transition-property: display, overlay, transform;
22
+
23
+ &::backdrop {
24
+ opacity: 0;
25
+ transition-behavior: allow-discrete;
26
+ transition-duration: var(--time-150);
27
+ transition-property: display, overlay, opacity;
28
+ }
29
+
30
+ /* In animation */
31
+ &[open] {
32
+ transform: translateX(0);
33
+ }
34
+
35
+ &[open]::backdrop {
36
+ opacity: 1;
37
+ }
38
+
39
+ /* Out animation */
40
+ @starting-style {
41
+ &[open] {
42
+ transform: translateX(100%);
43
+ }
44
+
45
+ &[open]::backdrop {
46
+ opacity: 0;
47
+ }
48
+ }
49
+
50
+ /* Small screens and below */
51
+ @media (width < 40rem) {
52
+ max-inline-size: none;
53
+ text-align: center;
54
+ }
55
+ }
56
+
57
+ .sheet__close {
58
+ inset-block-start: var(--size-4);
59
+ inset-inline-end: var(--size-4);
60
+ position: absolute;
61
+ }
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.23
4
+ version: 0.0.24
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-20 00:00:00.000000000 Z
11
+ date: 2024-07-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lazaronixon@hotmail.com
@@ -60,6 +60,7 @@ files:
60
60
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/pagination.css
61
61
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/progress.css
62
62
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/prose.css
63
+ - lib/generators/css_zero/add/templates/app/assets/stylesheets/sheet.css
63
64
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/switch.css
64
65
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/table.css
65
66
  - lib/generators/css_zero/add/templates/app/javascript/controllers/carousel_controller.js