Skip to content

Commit e9b0913

Browse files
committed
update naming
1 parent 142d0c6 commit e9b0913

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

lib/form/button.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
--button-transition-property: var(--field-transition-property);
3232
}
3333

34-
.button {
34+
.form.button {
3535
font-weight: var(--button-font-weight);
3636
text-transform: var(--button-text-transform);
3737
text-align: var(--button-text-align);

lib/form/checkbox.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
--checkbox-label-gutter: var(--gutter-small);
1414
}
1515

16-
.checkbox {
16+
.form.checkbox {
1717
line-height: 1;
1818

1919
> input {
@@ -66,7 +66,7 @@
6666
}
6767

6868
/* sizes */
69-
.checkbox {
69+
.form.checkbox {
7070
&.tiny > span {
7171
&::before,
7272
&::after {

lib/form/field.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
--field-placeholder-opacity: .1;
3636
}
3737

38-
.field {
38+
.form.field {
3939
font-weight: var(--field-font-weight);
4040
text-transform: var(--field-text-transform);
4141
text-align: var(--field-text-align);

lib/form/select.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.select.field {
1+
.form.select {
22
display: flex;
33
align-items: center;
44

lib/form/sizes.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* button sizes */
2-
.field,
3-
.button {
2+
.form.field,
3+
.form.button {
44
display: inline-block;
55

66
font-size: var(--field-font-size);

lib/form/states.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.field:focus:invalid {
1+
.form.field:focus:invalid {
22
border-color: var(--error);
33
}

lib/form/textarea.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.flexible.field {
1+
.flexible.form.field {
22
height: auto;
33
line-height: normal;
44

@@ -17,7 +17,7 @@
1717
}
1818
}
1919

20-
textarea.flexible.field {
20+
textarea.flexible.form.field {
2121
min-height: 18rem;
2222
line-height: normal;
2323
}

lib/label.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
--label-padding: .35em;
66
}
77

8-
.label {
8+
.form.label {
99
display: inline-block;
1010
color: var(--label-color);
1111
background: var(--label-background);

0 commit comments

Comments
 (0)