Skip to content

Commit 9af376e

Browse files
authored
release: version 2025.1.22 (#40)
1 parent b109ae4 commit 9af376e

8 files changed

+17
-17
lines changed

form.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "style-forge.form",
3-
"version": "2025.1.18",
3+
"version": "2025.1.22",
44
"description": "Style-Forge.Form: versatile library for easy form creation, validation, styling, and submission in web apps.",
55
"type": "module",
66
"main": "form.css",

src/button.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ html.var .sf-button:not([class*='sf-c-']) {
6868
color: hsl(0, 0%, 10%);
6969
background: hsla(0, 0%, 100%, 0.2);
7070
}
71-
html.var .sf-button:not(.bdc\:i) { border-color: hsla(0, 0%, 10%, 0.2) }
71+
html.var .sf-button:not(.bd\:c\:ii) { border-color: hsla(0, 0%, 10%, 0.2) }
7272

7373
html.var a.sf-button:not([href]),
7474
html.var .sf-button:disabled

src/input.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ html.var .sf-input:not([class*='sf-c-']) {
100100
color: hsl(0, 0%, 10%);
101101
background: hsla(0, 0%, 90%, 0.2);
102102
}
103-
html.var .sf-input:not(.bdc\:i) { border-color: hsla(0, 0%, 10%, 0.2) }
103+
html.var .sf-input:not(.bd\:c\:ii) { border-color: hsla(0, 0%, 10%, 0.2) }
104104

105105
html.var .sf-input::placeholder { color: hsla(0, 0%, 10%, 0.4) }
106106
html.var .sf-input:placeholder-shown { border-color: hsla(0, 0%, 10%, 0.2) }

src/select.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ html.var .sf-select:not([class*='sf-c-']) {
7474
color: hsl(0, 0%, 10%);
7575
background: hsla(0, 0%, 90%, 0.2);
7676
}
77-
html.var .sf-select:not(.bdc\:i) { border-color: hsla(0, 0%, 10%, 0.2) }
77+
html.var .sf-select:not(.bd\:c\:ii) { border-color: hsla(0, 0%, 10%, 0.2) }
7878

7979
html.var .sf-select:disabled { opacity: 0.4 }

src/textarea.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ html.var .sf-textarea:not([class*='sf-c-']) {
6767
color: hsl(0, 0%, 10%);
6868
background: hsla(0, 0%, 90%, 0.2);
6969
}
70-
html.var .sf-textarea:not(.bdc\:i) { border-color: hsla(0, 0%, 10%, 0.2) }
70+
html.var .sf-textarea:not(.bd\:c\:ii) { border-color: hsla(0, 0%, 10%, 0.2) }
7171

7272
html.var .sf-textarea::placeholder { color: hsla(0, 0%, 10%, 0.4) }
7373
html.var .sf-textarea:disabled { opacity: 0.4 }

src/theme.css

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ html.var.dark option
2828
}
2929

3030
/* reset color */
31-
html.var[data-theme='dark'] .sf-button:not(.bdc\:i),
32-
html.var[data-theme='dark'] .sf-input:not(.bdc\:i),
33-
html.var[data-theme='dark'] .sf-textarea:not(.bdc\:i),
34-
html.var[data-theme='dark'] .sf-select:not(.bdc\:i),
31+
html.var[data-theme='dark'] .sf-button:not(.bd\:c\:ii),
32+
html.var[data-theme='dark'] .sf-input:not(.bd\:c\:ii),
33+
html.var[data-theme='dark'] .sf-textarea:not(.bd\:c\:ii),
34+
html.var[data-theme='dark'] .sf-select:not(.bd\:c\:ii),
3535
html.var[data-theme='dark'] option,
36-
html.var.dark .sf-button:not(.bdc\:i),
37-
html.var.dark .sf-input:not(.bdc\:i),
38-
html.var.dark .sf-textarea:not(.bdc\:i),
39-
html.var.dark .sf-select:not(.bdc\:i),
36+
html.var.dark .sf-button:not(.bd\:c\:ii),
37+
html.var.dark .sf-input:not(.bd\:c\:ii),
38+
html.var.dark .sf-textarea:not(.bd\:c\:ii),
39+
html.var.dark .sf-select:not(.bd\:c\:ii),
4040
html.var.dark option
4141
{ border-color: hsla(0, 0%, 100%, 0.2) }
4242

src/validate.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
padding: 0 0 0.5em;
2020
}
2121

22-
html .sf-description, html .sf-invalid, html .sf-valid { display: none }
23-
html .sf-description { display: block }
22+
.sf-description, .sf-invalid, .sf-valid { display: none }
23+
.sf-description { display: block }
2424

2525
.sf-invalid { color: hsl(var(--sf-c-form-error)) }
2626
.sf-valid:not(.sf-description) { color: hsl(var(--sf-c-form-txt)) }

0 commit comments

Comments
 (0)