Skip to content

Commit a1c3443

Browse files
Create _frontend-edit.scss
1 parent 3ef64e8 commit a1c3443

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#adminForm {
2+
.controls {
3+
4+
>textarea,
5+
>select,
6+
>input[type="text"],
7+
>input[type="password"],
8+
>input[type="datetime"],
9+
>input[type="datetime-local"],
10+
>input[type="date"],
11+
>input[type="month"],
12+
>input[type="time"],
13+
>input[type="week"],
14+
>input[type="number"],
15+
>input[type="email"],
16+
>input[type="url"],
17+
>input[type="search"],
18+
>input[type="tel"],
19+
>input[type="color"],
20+
>.uneditable-input {
21+
@extend .form-control;
22+
}
23+
24+
.field-calendar {
25+
input[type="text"] {
26+
@extend .form-control;
27+
}
28+
}
29+
}
30+
31+
input[type="checkbox"],
32+
input[type="radio"] {
33+
@extend .form-check;
34+
margin-right: 5px;
35+
36+
+label {
37+
@extend .form-check-label;
38+
margin-right: 10px;
39+
}
40+
}
41+
42+
input[type="date"],
43+
input[type="time"],
44+
input[type="datetime-local"],
45+
input[type="month"] {
46+
appearance: none;
47+
}
48+
49+
.controls {
50+
@extend .form-group
51+
}
52+
53+
.btn:not(.btn-primary) {
54+
@extend .btn-outline-secondary;
55+
}
56+
57+
.btn-toolbar {
58+
.btn-group:not(:last-child) {
59+
margin-right: 10px;
60+
}
61+
}
62+
}

0 commit comments

Comments
 (0)