css-zero 0.0.68 → 0.0.69

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: 86ebce301684cf3a36b58c2f5cf2e3572857bb8bfb1440f831a992f47491a61e
4
- data.tar.gz: cae32387c96c43d52aaf75ad4865bda53f0a185b8a84aa3c26a36ed0b6613ae8
3
+ metadata.gz: '092dc8d5fe0b1d2cc2ea40122f13bfffdfad7018fc13e183da1c21a936270b46'
4
+ data.tar.gz: 68faabd43e69681e329fa0c2f884de5b0117f9c86ef3b1dce6eba761979985d7
5
5
  SHA512:
6
- metadata.gz: d1478bef8e6bc801636797bc893ac666f26eeded55856cfb88f4b1733fa6ac9fdc385afafc8f1db54f57948a92ccfc325bc17f54856c85abef6835d7057215a2
7
- data.tar.gz: 3f889805eafdcebebfde6a950c8baa01fcc7ae25731a65ca7c7a325c95a305e8efd05c348f1e81d9c2c89d1f9dd23b4fbc8e2674b82489a6cb1e34a168683ca2
6
+ metadata.gz: cd1e54993ab4412a67b0309de8a98e0410fd559af067c1b1d43877614312f2315c84eb8c8a766d18f00b6c4465e887aa0e1ecff5afc8647915bacdd18304fdfe
7
+ data.tar.gz: 838e24dcf1535a8f508b868c042ba60692b7586ad33ad635a0560a25386472e80501a4517234749256ed78d1731aed79c8aa3706ef4f34193a6a8f303d5ec46e
@@ -121,7 +121,7 @@
121
121
  .border-main { border-color: var(--color-border); }
122
122
  .border-dark { border-color: var(--color-border-dark); }
123
123
 
124
- .rounded-none { border-radius: none; }
124
+ .rounded-none { border-radius: 0; }
125
125
  .rounded-sm { border-radius: var(--rounded-sm); }
126
126
  .rounded { border-radius: var(--rounded); }
127
127
  .rounded-md { border-radius: var(--rounded-md); }
@@ -1,3 +1,3 @@
1
1
  module CssZero
2
- VERSION = "0.0.68"
2
+ VERSION = "0.0.69"
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 autoanimate autosave avatar badge breadcrumb button card carousel chart check_all combobox command collapsible datepicker dialog dropdown flash form fullscreen hotkey input input_concerns inputmask layouts lightbox local_time navigation pagination progress prose sheet skeleton sortable switch table tabs tooltip trix upload_preview toggle web_share
5
+ accordion alert autoanimate autosave avatar badge breadcrumb button card carousel chart check_all combobox command collapsible datepicker dialog dropdown flash form fullscreen group hotkey input input_concerns inputmask layouts lightbox local_time navigation pagination progress prose sheet skeleton sortable switch table tabs tooltip trix upload_preview toggle web_share
6
6
 
7
7
  Example:
8
8
  bin/rails generate css_zero:add [components...]
@@ -60,6 +60,8 @@ form:
60
60
  - app/javascript/controllers/form_controller.js
61
61
  fullscreen:
62
62
  - app/javascript/controllers/fullscreen_controller.js
63
+ group:
64
+ - app/assets/stylesheets/group.css
63
65
  hotkey:
64
66
  - app/javascript/controllers/hotkey_controller.js
65
67
  input:
@@ -4,12 +4,12 @@
4
4
 
5
5
  ::view-transition-old(.auto-animation):only-child {
6
6
  animation: var(--animate-fade-out) forwards;
7
- animation-duration: var(--time-200);
7
+ animation-duration: var(--time-300);
8
8
  opacity: 1;
9
9
  }
10
10
 
11
11
  ::view-transition-new(.auto-animation):only-child {
12
12
  animation: var(--animate-fade-in) forwards;
13
- animation-duration: var(--time-200);
13
+ animation-duration: var(--time-300);
14
14
  opacity: 0;
15
15
  }
@@ -0,0 +1,23 @@
1
+ .group {
2
+ align-items: center;
3
+ display: flex;
4
+
5
+ :first-child {
6
+ border-end-end-radius: 0;
7
+ border-start-end-radius: 0;
8
+ }
9
+
10
+ :last-child {
11
+ border-end-start-radius: 0;
12
+ border-start-start-radius: 0;
13
+ }
14
+
15
+ :not(:first-child, :last-child) {
16
+ border-radius: 0;
17
+ margin-inline: -1px;
18
+ }
19
+
20
+ > :focus-visible {
21
+ z-index: 1;
22
+ }
23
+ }
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.68
4
+ version: 0.0.69
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-11-25 00:00:00.000000000 Z
11
+ date: 2024-11-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lazaronixon@hotmail.com
@@ -69,6 +69,7 @@ files:
69
69
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/dialog.css
70
70
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/flash.css
71
71
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/flatpickr.css
72
+ - lib/generators/css_zero/add/templates/app/assets/stylesheets/group.css
72
73
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/input.css
73
74
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/layouts.css
74
75
  - lib/generators/css_zero/add/templates/app/assets/stylesheets/lightbox.css