benivo-ui-library 1.8.1 → 1.8.12
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/assignmentSelectBox.less +124 -0
- package/autoComplete.less +4 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/assignmentSelectBox.less
CHANGED
|
@@ -78,3 +78,127 @@
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
.assignment-select-box-custom-menu{
|
|
82
|
+
.assignments-filter-wrapper {
|
|
83
|
+
padding: 15px 12px;
|
|
84
|
+
|
|
85
|
+
.form-select__control {
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.form-group {
|
|
90
|
+
margin-bottom: 0;
|
|
91
|
+
width: 70%;
|
|
92
|
+
|
|
93
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
94
|
+
width: 80% !important;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
&:before {
|
|
98
|
+
content: '\e9da';
|
|
99
|
+
font-family: 'icomoon';
|
|
100
|
+
color: @extra-light-gray-text;
|
|
101
|
+
display: block;
|
|
102
|
+
position: absolute;
|
|
103
|
+
top: 50%;
|
|
104
|
+
left: @input-pad-x;
|
|
105
|
+
transform: translateY(-50%);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
input {
|
|
109
|
+
padding-left: 38px;
|
|
110
|
+
width: 100%;
|
|
111
|
+
margin-right: 12px;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.assignments-filter {
|
|
116
|
+
display: inline-flex;
|
|
117
|
+
align-items: center;
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
position: relative;
|
|
120
|
+
flex-shrink: 0;
|
|
121
|
+
|
|
122
|
+
.assignments-filter-statuses {
|
|
123
|
+
position: absolute;
|
|
124
|
+
top: 100%;
|
|
125
|
+
right: 0;
|
|
126
|
+
background-color: #ffffff;
|
|
127
|
+
border: solid 1px rgba(0, 0, 0, 0.15);
|
|
128
|
+
.border-radius(4px);
|
|
129
|
+
z-index: @zindex-dropdown;
|
|
130
|
+
width: 256px;
|
|
131
|
+
margin-top: 10px;
|
|
132
|
+
|
|
133
|
+
&.horizontal{
|
|
134
|
+
&__right{
|
|
135
|
+
@media @lg {
|
|
136
|
+
left: 0;
|
|
137
|
+
right: unset;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
&__left{
|
|
141
|
+
@media @lg {
|
|
142
|
+
left: unset;
|
|
143
|
+
right: 0;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
&.vertical{
|
|
149
|
+
&__bottom{
|
|
150
|
+
@media @lg {
|
|
151
|
+
top: 100%;
|
|
152
|
+
bottom: unset;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
&__top{
|
|
156
|
+
@media @lg {
|
|
157
|
+
top: unset;
|
|
158
|
+
bottom: 100%;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
li {
|
|
164
|
+
padding: 12px;
|
|
165
|
+
|
|
166
|
+
&:hover {
|
|
167
|
+
background-color: @form-select-option-bg-selected;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
&:before {
|
|
171
|
+
left: 42px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.form-check {
|
|
175
|
+
margin-bottom: 0;
|
|
176
|
+
padding-left: 46px;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
span {
|
|
182
|
+
&,
|
|
183
|
+
&:before {
|
|
184
|
+
color: @primary-color;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
&:last-child {
|
|
188
|
+
margin-left: 8px;
|
|
189
|
+
font-size: @small-font-size;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.form-select__menu:has(> .assignment-select-box-custom-menu){
|
|
197
|
+
width: 100%;
|
|
198
|
+
right: 0;
|
|
199
|
+
|
|
200
|
+
@media @lg {
|
|
201
|
+
width: 280px;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|