benivo-ui-library 1.8.22 → 1.8.23
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/datePicker.less +7 -12
- package/frame.less +24 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/pop-up.less +69 -0
package/datePicker.less
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
right: 10px;
|
|
40
40
|
top: 0;
|
|
41
41
|
display: block;
|
|
42
|
-
content:
|
|
42
|
+
content: '\e938';
|
|
43
43
|
height: 100%;
|
|
44
44
|
width: 20px;
|
|
45
45
|
color: @form-placeholder-color;
|
|
@@ -50,8 +50,7 @@
|
|
|
50
50
|
z-index: 3;
|
|
51
51
|
pointer-events: none;
|
|
52
52
|
|
|
53
|
-
@media screen and (-ms-high-contrast: active),
|
|
54
|
-
(-ms-high-contrast: none) {
|
|
53
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
55
54
|
padding-top: 4px;
|
|
56
55
|
}
|
|
57
56
|
}
|
|
@@ -69,7 +68,7 @@
|
|
|
69
68
|
&.field-invalid {
|
|
70
69
|
.react-datepicker__input-container {
|
|
71
70
|
input {
|
|
72
|
-
border-color: @error-color
|
|
71
|
+
border-color: @error-color !important;
|
|
73
72
|
}
|
|
74
73
|
}
|
|
75
74
|
}
|
|
@@ -86,7 +85,7 @@
|
|
|
86
85
|
}
|
|
87
86
|
}
|
|
88
87
|
|
|
89
|
-
input[type=
|
|
88
|
+
input[type='date'] {
|
|
90
89
|
pointer-events: none;
|
|
91
90
|
background-color: #f1f2f3;
|
|
92
91
|
}
|
|
@@ -273,7 +272,6 @@
|
|
|
273
272
|
input.native-date-picker {
|
|
274
273
|
position: relative;
|
|
275
274
|
background-color: @form-select-option-bg;
|
|
276
|
-
display: flex;
|
|
277
275
|
|
|
278
276
|
&.invisible {
|
|
279
277
|
opacity: 0;
|
|
@@ -301,7 +299,7 @@ input.native-date-picker {
|
|
|
301
299
|
}
|
|
302
300
|
}
|
|
303
301
|
|
|
304
|
-
&[value=
|
|
302
|
+
&[value=''] {
|
|
305
303
|
min-height: 3rem;
|
|
306
304
|
|
|
307
305
|
&:before {
|
|
@@ -319,7 +317,7 @@ input.native-date-picker {
|
|
|
319
317
|
display: flex;
|
|
320
318
|
align-items: center;
|
|
321
319
|
height: 100%;
|
|
322
|
-
content:
|
|
320
|
+
content: '\e938';
|
|
323
321
|
height: 100%;
|
|
324
322
|
width: 20px;
|
|
325
323
|
color: inherit;
|
|
@@ -327,8 +325,6 @@ input.native-date-picker {
|
|
|
327
325
|
font-size: 18px;
|
|
328
326
|
}
|
|
329
327
|
|
|
330
|
-
|
|
331
|
-
|
|
332
328
|
&::-webkit-calendar-picker-indicator {
|
|
333
329
|
background-color: transparent;
|
|
334
330
|
background-image: none;
|
|
@@ -341,7 +337,6 @@ input.native-date-picker {
|
|
|
341
337
|
}
|
|
342
338
|
|
|
343
339
|
.date-picker-year-no-option {
|
|
344
|
-
|
|
345
340
|
div {
|
|
346
341
|
display: flex;
|
|
347
342
|
justify-content: space-between;
|
|
@@ -352,4 +347,4 @@ input.native-date-picker {
|
|
|
352
347
|
font-weight: 100;
|
|
353
348
|
}
|
|
354
349
|
}
|
|
355
|
-
}
|
|
350
|
+
}
|
package/frame.less
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.entry-popup-frame {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
z-index: 1000;
|
|
8
|
+
padding: 0 24px;
|
|
9
|
+
pointer-events: none;
|
|
10
|
+
|
|
11
|
+
.frame-box {
|
|
12
|
+
display: flex;
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 100%;
|
|
15
|
+
gap: 10px;
|
|
16
|
+
align-items: end;
|
|
17
|
+
justify-content: end;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.popup-box {
|
|
21
|
+
width: max-content;
|
|
22
|
+
max-width: 502px;
|
|
23
|
+
}
|
|
24
|
+
}
|