halleyx-ui-framework 4.3.7 → 4.3.9
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/dist/cjs/index.js +2 -2
- package/dist/es/index.css +1 -1
- package/dist/es/index.js +2 -2
- package/dist/src/assets/styles/calendar.scss +4 -2
- package/dist/src/assets/styles/calendarfilter.scss +114 -0
- package/dist/src/assets/styles/index.scss +2 -1
- package/dist/src/assets/styles/inputitems.scss +11 -0
- package/dist/src/assets/styles/select.scss +12 -1
- package/dist/umd/index.umd.css +1 -1
- package/dist/umd/index.umd.js +2 -2
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
--font-family: OpenSans;
|
|
14
14
|
}
|
|
15
15
|
.light {
|
|
16
|
+
width: 100%;
|
|
16
17
|
--bg-body: var(--light-body);
|
|
17
18
|
--bg-main: var(--light-main);
|
|
18
19
|
--bg-second: var(--light-second);
|
|
@@ -31,8 +32,9 @@
|
|
|
31
32
|
background: var(--hlx-color-primary) !important;
|
|
32
33
|
}
|
|
33
34
|
.calendar {
|
|
35
|
+
top: 40px;
|
|
34
36
|
height: 340px;
|
|
35
|
-
width:
|
|
37
|
+
width: 100%;
|
|
36
38
|
background-color: var(--bg-main);
|
|
37
39
|
border-radius: 10px;
|
|
38
40
|
padding: 5px;
|
|
@@ -309,7 +311,7 @@
|
|
|
309
311
|
left: 0;
|
|
310
312
|
background-color: var(--bg-main);
|
|
311
313
|
padding: 20px;
|
|
312
|
-
grid-template-columns:
|
|
314
|
+
grid-template-columns: auto auto auto;
|
|
313
315
|
gap: 28px;
|
|
314
316
|
display: grid;
|
|
315
317
|
transform: scale(1.5);
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
.calendar-container {
|
|
2
|
+
background: #fff;
|
|
3
|
+
width:100%;
|
|
4
|
+
border-radius: 10px;
|
|
5
|
+
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.calendar-filter-dropdown{
|
|
9
|
+
display: flex;
|
|
10
|
+
width:100%;
|
|
11
|
+
span{
|
|
12
|
+
width:50%;
|
|
13
|
+
padding:20px 30px;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.calendar-container header {
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
padding: 10px 30px 10px;
|
|
21
|
+
justify-content: space-between;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
header .calendar-navigation {
|
|
25
|
+
display: flex;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
header .calendar-navigation span {
|
|
29
|
+
height: 38px;
|
|
30
|
+
width: 38px;
|
|
31
|
+
margin: 0 1px;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
text-align: center;
|
|
34
|
+
// line-height: 38px;
|
|
35
|
+
border-radius: 50%;
|
|
36
|
+
user-select: none;
|
|
37
|
+
color: #aeabab;
|
|
38
|
+
font-size: 1.9rem;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.calendar-navigation span:last-child {
|
|
42
|
+
margin-right: -10px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
header .calendar-navigation span:hover {
|
|
46
|
+
background: #f2f2f2;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
header .calendar-current-date {
|
|
50
|
+
font-weight: 500;
|
|
51
|
+
font-size: 1.45rem;
|
|
52
|
+
// background-color: #6332c5;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.calendar-body {
|
|
56
|
+
padding: 20px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.calendar-body ul {
|
|
60
|
+
list-style: none;
|
|
61
|
+
flex-wrap: wrap;
|
|
62
|
+
display: flex;
|
|
63
|
+
text-align: center;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.calendar-body .calendar-dates {
|
|
67
|
+
margin-bottom: 20px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.calendar-body li {
|
|
71
|
+
width: calc(100% / 7);
|
|
72
|
+
font-size: 1.07rem;
|
|
73
|
+
color: #414141;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.calendar-body .calendar-weekdays li {
|
|
77
|
+
cursor: default;
|
|
78
|
+
font-weight: 500;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.calendar-body .calendar-dates li {
|
|
82
|
+
margin-top: 30px;
|
|
83
|
+
position: relative;
|
|
84
|
+
z-index: 1;
|
|
85
|
+
cursor: pointer;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.calendar-dates li.inactive {
|
|
89
|
+
color: #aaa;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.calendar-dates li.active {
|
|
93
|
+
color: #fff;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.calendar-dates li::before {
|
|
97
|
+
position: absolute;
|
|
98
|
+
content: "";
|
|
99
|
+
z-index: -1;
|
|
100
|
+
top: 50%;
|
|
101
|
+
left: 50%;
|
|
102
|
+
width: 40px;
|
|
103
|
+
height: 40px;
|
|
104
|
+
border-radius: 50%;
|
|
105
|
+
transform: translate(-50%, -50%);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.calendar-dates li.active::before {
|
|
109
|
+
background: #265e4b;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.calendar-dates li:not(.active):hover::before {
|
|
113
|
+
background: #e4e1e1;
|
|
114
|
+
}
|
|
@@ -15,4 +15,5 @@
|
|
|
15
15
|
'./imagegallery.scss', './switch.scss', './colorpalette.scss',
|
|
16
16
|
'./calendar.scss', './contextMenu.scss', './newtable.scss', './drawer.scss',
|
|
17
17
|
'fonts', './scrollbar.scss', './tablev2.scss', './customdropdown.scss',
|
|
18
|
-
'./visualbuilder.scss', './objectViewer.scss','./buttonGroup.scss'
|
|
18
|
+
'./visualbuilder.scss', './objectViewer.scss','./buttonGroup.scss',
|
|
19
|
+
'./calendarfilter.scss';
|
|
@@ -21,6 +21,12 @@ input[type='checkbox']:checked {
|
|
|
21
21
|
-moz-user-select: none;
|
|
22
22
|
-ms-user-select: none;
|
|
23
23
|
user-select: none;
|
|
24
|
+
|
|
25
|
+
.ellipsis {
|
|
26
|
+
white-space: nowrap;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
text-overflow: ellipsis;
|
|
29
|
+
}
|
|
24
30
|
}
|
|
25
31
|
|
|
26
32
|
.select-all-theme {
|
|
@@ -137,6 +143,11 @@ label.check-container:hover {
|
|
|
137
143
|
-moz-user-select: none;
|
|
138
144
|
-ms-user-select: none;
|
|
139
145
|
user-select: none;
|
|
146
|
+
.ellipsis {
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
overflow: hidden;
|
|
149
|
+
text-overflow: ellipsis;
|
|
150
|
+
}
|
|
140
151
|
}
|
|
141
152
|
.radio-container:hover{
|
|
142
153
|
cursor: pointer;
|
|
@@ -257,6 +257,9 @@
|
|
|
257
257
|
width: 100%;
|
|
258
258
|
font-size: 14px;
|
|
259
259
|
cursor: pointer;
|
|
260
|
+
white-space: nowrap;
|
|
261
|
+
overflow: hidden;
|
|
262
|
+
text-overflow: ellipsis
|
|
260
263
|
}
|
|
261
264
|
.hlx-multi-select-option-value {
|
|
262
265
|
font-family: var(--hlx-font-type-content);
|
|
@@ -267,6 +270,9 @@
|
|
|
267
270
|
font-size: 14px;
|
|
268
271
|
height: 30px;
|
|
269
272
|
cursor: pointer;
|
|
273
|
+
white-space: nowrap;
|
|
274
|
+
overflow: hidden;
|
|
275
|
+
text-overflow: ellipsis
|
|
270
276
|
}
|
|
271
277
|
.select-value {
|
|
272
278
|
background-color: var(--hlx-color-primary);
|
|
@@ -729,6 +735,7 @@ button {
|
|
|
729
735
|
font-family: var(--hlx-font-type-content);
|
|
730
736
|
z-index: 100000000;
|
|
731
737
|
overflow-y: auto;
|
|
738
|
+
overflow-x: hidden;
|
|
732
739
|
}
|
|
733
740
|
.no-data-option {
|
|
734
741
|
display: flex;
|
|
@@ -758,6 +765,9 @@ button {
|
|
|
758
765
|
font-size: 14px;
|
|
759
766
|
height: 30px;
|
|
760
767
|
cursor: pointer;
|
|
768
|
+
white-space: nowrap;
|
|
769
|
+
overflow: hidden;
|
|
770
|
+
text-overflow: ellipsis
|
|
761
771
|
}
|
|
762
772
|
}
|
|
763
773
|
}
|
|
@@ -863,11 +873,12 @@ button {
|
|
|
863
873
|
// flex-wrap: wrap;
|
|
864
874
|
height: auto;
|
|
865
875
|
max-height: 250px;
|
|
876
|
+
|
|
866
877
|
.input-container232{
|
|
867
878
|
padding-top: 8px;
|
|
868
879
|
padding-left: 8px;
|
|
869
880
|
overflow-y: scroll;
|
|
870
|
-
overflow-x:
|
|
881
|
+
overflow-x: hidden;
|
|
871
882
|
// height:100%;
|
|
872
883
|
// height:180px;
|
|
873
884
|
}
|