@indigina/kendo 1.1.2 → 1.1.3
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/styles/Site.css +68 -9
- package/package.json +1 -1
package/assets/styles/Site.css
CHANGED
|
@@ -244,7 +244,27 @@ input[type='color'],
|
|
|
244
244
|
background-position: -32px -176px;
|
|
245
245
|
}
|
|
246
246
|
|
|
247
|
-
.k-
|
|
247
|
+
.k-dropdownlist,
|
|
248
|
+
.k-multiselect {
|
|
249
|
+
background: #fff;
|
|
250
|
+
box-shadow: none !important;
|
|
251
|
+
border: 1px solid #cccccc;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.k-dropdownlist span {
|
|
255
|
+
background: transparent !important;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.k-dropdownlist button {
|
|
259
|
+
background: #eee !important;
|
|
260
|
+
border-radius: 0 3px 3px 0 !important;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.k-dropdownlist:hover button {
|
|
264
|
+
background: #ddd !important;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.k-dropdownlist .k-select .k-i-arrow-s {
|
|
248
268
|
display: inline-block;
|
|
249
269
|
width: 0;
|
|
250
270
|
height: 0;
|
|
@@ -255,6 +275,10 @@ input[type='color'],
|
|
|
255
275
|
border-left: 4px solid transparent;
|
|
256
276
|
}
|
|
257
277
|
|
|
278
|
+
.k-dropdownlist:hover .k-input-inner {
|
|
279
|
+
background: #fff !important;
|
|
280
|
+
}
|
|
281
|
+
|
|
258
282
|
.k-popup .k-list .k-item {
|
|
259
283
|
background-color: #fff;
|
|
260
284
|
padding-top: 1px;
|
|
@@ -272,14 +296,6 @@ input[type='color'],
|
|
|
272
296
|
display: block;
|
|
273
297
|
}
|
|
274
298
|
|
|
275
|
-
.form-horizontal .k-i-arrow-s::before {
|
|
276
|
-
display: none;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.k-i-arrow-s::before {
|
|
280
|
-
display: none;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
299
|
.form-horizontal textarea.k-input {
|
|
284
300
|
height: auto;
|
|
285
301
|
}
|
|
@@ -2282,3 +2298,46 @@ footer-bar .navbar-brand {
|
|
|
2282
2298
|
body.mini-navbar .navbar-default .nav .nav-second-level li a span {
|
|
2283
2299
|
display: block;
|
|
2284
2300
|
}
|
|
2301
|
+
|
|
2302
|
+
.k-list-item.k-selected,
|
|
2303
|
+
.k-selected.k-list-optionlabel {
|
|
2304
|
+
background: #dce4f0;
|
|
2305
|
+
color: #333;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
.k-list-item.k-selected:hover,
|
|
2309
|
+
.k-selected.k-list-optionlabel:hover {
|
|
2310
|
+
background: #dce4f0;
|
|
2311
|
+
color: #222;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.k-multiselect .k-clear-value {
|
|
2315
|
+
visibility: hidden;
|
|
2316
|
+
align-self: flex-start;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
.k-multiselect:hover .k-clear-value,
|
|
2320
|
+
.k-multiselect:focus .k-clear-value {
|
|
2321
|
+
visibility: visible;
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2324
|
+
.k-list-optionlabel {
|
|
2325
|
+
min-height: 28px;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
.k-input.k-multiselect {
|
|
2329
|
+
padding-left: 0px;
|
|
2330
|
+
display: flex;
|
|
2331
|
+
height: auto;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.k-input .k-i-loading {
|
|
2335
|
+
position: absolute;
|
|
2336
|
+
top: 0px;
|
|
2337
|
+
left: 0px;
|
|
2338
|
+
right: 0px;
|
|
2339
|
+
bottom: 0px;
|
|
2340
|
+
margin: auto;
|
|
2341
|
+
width: 20px;
|
|
2342
|
+
height: 20px;
|
|
2343
|
+
}
|