isite 2021.11.25 → 2021.11.28
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.
|
@@ -4,7 +4,7 @@ form {
|
|
|
4
4
|
margin: 0 auto;
|
|
5
5
|
padding: 5px;
|
|
6
6
|
color: var(--form-color);
|
|
7
|
-
background-color: var(--form-background-color)
|
|
7
|
+
background-color: var(--form-background-color);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.control {
|
|
@@ -18,23 +18,24 @@ form {
|
|
|
18
18
|
form label,
|
|
19
19
|
form span,
|
|
20
20
|
form p {
|
|
21
|
-
color: var(--form-color)
|
|
21
|
+
color: var(--form-color);
|
|
22
|
+
}
|
|
23
|
+
p {
|
|
24
|
+
word-break: break-all;
|
|
22
25
|
}
|
|
23
|
-
|
|
24
26
|
label {
|
|
25
27
|
font-weight: var(--label-font-weight);
|
|
26
28
|
color: var(--label-color);
|
|
27
29
|
font-size: var(--label-font-size);
|
|
28
30
|
margin: 5px;
|
|
29
31
|
margin-bottom: 10px !important;
|
|
32
|
+
word-break: break-all;
|
|
30
33
|
}
|
|
31
34
|
|
|
32
|
-
|
|
33
35
|
label span {
|
|
34
36
|
color: var(--form-color);
|
|
35
37
|
}
|
|
36
38
|
|
|
37
|
-
|
|
38
39
|
textarea {
|
|
39
40
|
overflow-x: hidden;
|
|
40
41
|
}
|
|
@@ -54,9 +55,9 @@ textarea {
|
|
|
54
55
|
color: var(--input-color);
|
|
55
56
|
background-color: var(--input-background-color);
|
|
56
57
|
background-image: none;
|
|
57
|
-
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
|
58
|
-
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
59
|
-
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
58
|
+
-webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
|
|
59
|
+
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
60
|
+
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
60
61
|
border-radius: var(--input-border-radius);
|
|
61
62
|
border-width: var(--input-border-width);
|
|
62
63
|
border-color: var(--input-border-color);
|
|
@@ -66,7 +67,6 @@ textarea {
|
|
|
66
67
|
-ms-scrollbar-arrow-color: var(--input-color);
|
|
67
68
|
}
|
|
68
69
|
|
|
69
|
-
|
|
70
70
|
select {
|
|
71
71
|
font-size: var(--select-font-size);
|
|
72
72
|
height: var(--select-height);
|
|
@@ -78,30 +78,28 @@ select {
|
|
|
78
78
|
-ms-progress-appearance: var(--select-appearance);
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
|
|
82
81
|
textarea {
|
|
83
82
|
border-width: var(--textarea-border-width);
|
|
84
83
|
}
|
|
85
84
|
|
|
86
|
-
|
|
87
|
-
input[type=
|
|
88
|
-
input[type=radio] {
|
|
85
|
+
input[type='checkbox'],
|
|
86
|
+
input[type='radio'] {
|
|
89
87
|
-webkit-box-shadow: none;
|
|
90
88
|
box-shadow: none;
|
|
91
89
|
}
|
|
92
90
|
|
|
93
|
-
input[type=file] {
|
|
91
|
+
input[type='file'] {
|
|
94
92
|
padding: 3px;
|
|
95
93
|
}
|
|
96
94
|
|
|
97
|
-
input[type=date],
|
|
98
|
-
input[type=datetime],
|
|
99
|
-
input[type=datetime-local] {
|
|
95
|
+
input[type='date'],
|
|
96
|
+
input[type='datetime'],
|
|
97
|
+
input[type='datetime-local'] {
|
|
100
98
|
padding: 5px;
|
|
101
99
|
}
|
|
102
100
|
|
|
103
|
-
input[type=number],
|
|
104
|
-
input[type=date] {
|
|
101
|
+
input[type='number'],
|
|
102
|
+
input[type='date'] {
|
|
105
103
|
text-align: center;
|
|
106
104
|
}
|
|
107
105
|
|
|
@@ -115,14 +113,14 @@ input[type=date] {
|
|
|
115
113
|
text-align: var(--label-text-align);
|
|
116
114
|
}
|
|
117
115
|
|
|
118
|
-
.control input[type=text],
|
|
119
|
-
.control input[type=email],
|
|
120
|
-
.control input[type=number],
|
|
121
|
-
.control input[type=password],
|
|
122
|
-
.control input[type=file],
|
|
123
|
-
.control input[type=date],
|
|
124
|
-
.control input[type=datetime],
|
|
125
|
-
.control input[type=datetime-local],
|
|
116
|
+
.control input[type='text'],
|
|
117
|
+
.control input[type='email'],
|
|
118
|
+
.control input[type='number'],
|
|
119
|
+
.control input[type='password'],
|
|
120
|
+
.control input[type='file'],
|
|
121
|
+
.control input[type='date'],
|
|
122
|
+
.control input[type='datetime'],
|
|
123
|
+
.control input[type='datetime-local'],
|
|
126
124
|
.control textarea,
|
|
127
125
|
.control label,
|
|
128
126
|
.control select {
|
|
@@ -137,8 +135,6 @@ textarea:focus {
|
|
|
137
135
|
border-color: var(--input-focus-border-color);
|
|
138
136
|
}
|
|
139
137
|
|
|
140
|
-
|
|
141
|
-
|
|
142
138
|
fieldset {
|
|
143
139
|
padding: 4px;
|
|
144
140
|
margin: 0px;
|
|
@@ -156,7 +152,6 @@ fieldset legend {
|
|
|
156
152
|
border: var(--legend-border);
|
|
157
153
|
}
|
|
158
154
|
|
|
159
|
-
|
|
160
155
|
.files {
|
|
161
156
|
border: 2px dashed var(--modal-header-background-color);
|
|
162
157
|
padding: 5px;
|
|
@@ -185,7 +180,7 @@ fieldset legend {
|
|
|
185
180
|
font-size: 16px;
|
|
186
181
|
color: #000;
|
|
187
182
|
}
|
|
188
|
-
.i-date2 .fa{
|
|
183
|
+
.i-date2 .fa {
|
|
189
184
|
font-size: 18px;
|
|
190
185
|
cursor: pointer;
|
|
191
|
-
}
|
|
186
|
+
}
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
--modal-background : rgba(0,0,0,0.6);
|
|
114
114
|
--modal-content-background: #607D8B;
|
|
115
115
|
--modal-content-border: none;
|
|
116
|
-
--modal-color: #
|
|
116
|
+
--modal-color: #000;
|
|
117
117
|
--modal-animation-name: animatetop;
|
|
118
118
|
--modal-animation-duration: 0.4s;
|
|
119
119
|
--modal-header-color: #000000;
|