css-zero 0.0.57 → 0.0.59

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: f36de6d1d6734c0b993d5cb5408229b47934e2e6725fb995e8507deb6ebd7840
4
- data.tar.gz: c60d2d2df8617f7a1bb53cfa4c19f935531b73675402b807d7090ea6cf03a6cb
3
+ metadata.gz: 533d8a1cf38cd84982b5966e4cf637f575e99c4f9547b18025e2327864be0cb3
4
+ data.tar.gz: 6a318e6ce1611f64b01ab8e226630450adc9fe2a5bba80f4daf1396e3fa62953
5
5
  SHA512:
6
- metadata.gz: c726280266ad97bad3a106ba0000ae34d9e30c6adf6284ad6d7ab74d38d01d1d0f4f48bed7008232e5d11ce527e1afd49721a6aae7cf819353844bae8d16b39b
7
- data.tar.gz: 2a64d4b5136d1600edfb47f7c52bf71e873e35d4a7ed59a9bc4cb4cf0593a467ccca1f13d8ab5ec1ee17cb6b98173a00b44f0f0b2c53f617b4cedea5c27682d7
6
+ metadata.gz: e68b22eca9bd7147a435e13f3e872a2001f2d3b2365c22fcf0272c19a9acb87fdd9ea6609abed0b57d88540032531cccdd24cc3b25c60bcf1af4e3a9592ee453
7
+ data.tar.gz: a48d660993be5b3b101541587f2d6e5dc905931d898128e37ee9e62b791e9df8f9af80493bd9cb9d45d043181d5af540a339ab01514198bca01b787948619818
data/README.md CHANGED
@@ -48,13 +48,17 @@ bin/rails generate css_zero:add --help
48
48
 
49
49
  Check the [CSS files](app/assets/stylesheets) in the repository to see the available variables and utility classes.
50
50
 
51
+ ## Components
52
+
53
+ [<img src="https://github.com/user-attachments/assets/3a7fbd1e-5cc8-4476-a60c-52bc28efca29">](https://csszero.lazaronixon.com)
54
+
51
55
  ## Icons
52
56
 
53
57
  Some icons in the examples are not copied to the project. If you are looking for good ones, I recommend [Lucide](https://lucide.dev).
54
58
 
55
- ## Components
59
+ ## Scaffold
56
60
 
57
- [<img src="https://github.com/user-attachments/assets/3a7fbd1e-5cc8-4476-a60c-52bc28efca29">](https://csszero.lazaronixon.com)
61
+ This gem implements custom templates for scaffolds and authentication.
58
62
 
59
63
  ## Development
60
64
 
@@ -250,14 +250,6 @@ progress {
250
250
  -webkit-appearance: none;
251
251
  }
252
252
 
253
- /*
254
- Correct empty date field height on safari IOS.
255
- */
256
-
257
- ::-webkit-date-and-time-value {
258
- height: 1.5em;
259
- }
260
-
261
253
  /*
262
254
  Add the correct display in Chrome and Safari.
263
255
  */
@@ -36,8 +36,8 @@
36
36
  .font-semibold { font-weight: var(--font-semibold); }
37
37
  .font-bold { font-weight: var(--font-bold); }
38
38
 
39
- .underline { text-decoration-line: underline; }
40
- .no-underline { text-decoration-line: none; }
39
+ .underline { text-decoration: underline; }
40
+ .no-underline { text-decoration: none; }
41
41
 
42
42
  .uppercase { text-transform: uppercase; }
43
43
  .normal-case { text-transform: none; }
@@ -1,3 +1,3 @@
1
1
  module CssZero
2
- VERSION = "0.0.57"
2
+ VERSION = "0.0.59"
3
3
  end
@@ -4,7 +4,8 @@
4
4
  border: 1px solid var(--input-border-color, var(--color-border));
5
5
  border-radius: var(--input-radius, var(--rounded-md));
6
6
  font-size: var(--input-font-size, var(--text-sm));
7
- inline-size: var(--size-full);
7
+ inline-size: var(--input-inline-size, var(--size-full));
8
+ min-block-size: var(--input-block-size, var(--size-10));
8
9
  padding: var(--input-padding, 0.5rem 0.75rem);
9
10
 
10
11
  option {
@@ -65,6 +65,10 @@ body {
65
65
  text-rendering: optimizeLegibility;
66
66
  }
67
67
 
68
+ .turbo-progress-bar {
69
+ background-color: var(--color-primary);
70
+ }
71
+
68
72
  ::selection {
69
73
  background-color: var(--color-selected);
70
74
  }
@@ -38,6 +38,6 @@
38
38
 
39
39
  <% end -%>
40
40
  <div class="inline-flex items-center mbs-2 mie-1">
41
- <%%= form.button tag.span("Save changes"), class: "btn btn--primary btn--loading" %>
41
+ <%%= form.submit class: "btn btn--primary" %>
42
42
  </div>
43
43
  <%% end %>
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.57
4
+ version: 0.0.59
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-06 00:00:00.000000000 Z
11
+ date: 2024-11-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lazaronixon@hotmail.com