@apipass/inputs 1.0.42 → 1.0.43
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.
- package/assets/css/inputs.scss +43 -2
- package/package.json +1 -1
package/assets/css/inputs.scss
CHANGED
|
@@ -1,4 +1,37 @@
|
|
|
1
1
|
/* Inputs */
|
|
2
|
+
.switch.switch-small small {
|
|
3
|
+
width: 15px !important;
|
|
4
|
+
height: 15px !important;
|
|
5
|
+
top: 2px !important;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.switch-small {
|
|
9
|
+
height: 20px !important;
|
|
10
|
+
min-width: 40px !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.switch.switch-small small {
|
|
14
|
+
background: #d75a4a !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.switch.switch-small.checked small {
|
|
18
|
+
background: #65cd48 !important;
|
|
19
|
+
right: 5px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.bs-datepicker-head {
|
|
23
|
+
background-color: var(--color-primary) !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.bs-datepicker-body table td span.selected {
|
|
27
|
+
background-color: var(--color-primary) !important;
|
|
28
|
+
color: var(--color-secondary) !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.bs-datepicker-body table td.week span {
|
|
32
|
+
color: var(--color-primary) !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
2
35
|
.mat-pseudo-checkbox-full {
|
|
3
36
|
border-radius: 50% !important;
|
|
4
37
|
width: 20px !important;
|
|
@@ -6,6 +39,10 @@
|
|
|
6
39
|
color: var(--color-fonts-tertiary) !important;
|
|
7
40
|
}
|
|
8
41
|
|
|
42
|
+
.mdc-label {
|
|
43
|
+
margin-bottom: 0 !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
9
46
|
.mat-pseudo-checkbox-checked {
|
|
10
47
|
background-color: var(--color-primary-active) !important;
|
|
11
48
|
border-radius: 50% !important;
|
|
@@ -19,6 +56,10 @@
|
|
|
19
56
|
}
|
|
20
57
|
}
|
|
21
58
|
|
|
59
|
+
.mat-mdc-form-field-icon-prefix>.mat-icon, .mat-mdc-form-field-icon-suffix>.mat-icon {
|
|
60
|
+
padding: 10px;
|
|
61
|
+
}
|
|
62
|
+
|
|
22
63
|
.ace_editor,
|
|
23
64
|
.ace_editor div,
|
|
24
65
|
.ace_editor span,
|
|
@@ -26,8 +67,8 @@
|
|
|
26
67
|
font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace !important;
|
|
27
68
|
}
|
|
28
69
|
|
|
29
|
-
field-render label {
|
|
30
|
-
margin-bottom:
|
|
70
|
+
field-render .info-label {
|
|
71
|
+
margin-bottom: 3px;
|
|
31
72
|
margin-top: 5px;
|
|
32
73
|
}
|
|
33
74
|
|