@progress/kendo-theme-bootstrap 4.43.1-dev.3 → 4.43.1-dev.4
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/README.md +5 -8
- package/dist/all.css +497 -527
- package/dist/all.scss +862 -917
- package/modules/@progress/kendo-theme-default/package.json +2 -2
- package/modules/@progress/kendo-theme-default/scss/appbar/_layout.scss +13 -0
- package/modules/@progress/kendo-theme-default/scss/autocomplete/_layout.scss +4 -4
- package/modules/@progress/kendo-theme-default/scss/button/_layout.scss +1 -7
- package/modules/@progress/kendo-theme-default/scss/checkbox/_index.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/checkbox/_layout.scss +2 -1
- package/modules/@progress/kendo-theme-default/scss/color-preview/_layout.scss +49 -7
- package/modules/@progress/kendo-theme-default/scss/color-preview/_theme.scss +0 -14
- package/modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss +5 -1
- package/modules/@progress/kendo-theme-default/scss/coloreditor/_variables.scss +3 -3
- package/modules/@progress/kendo-theme-default/scss/colorpicker/_layout.scss +6 -0
- package/modules/@progress/kendo-theme-default/scss/combobox/_layout.scss +22 -29
- package/modules/@progress/kendo-theme-default/scss/combobox/_theme.scss +59 -99
- package/modules/@progress/kendo-theme-default/scss/combobox/_variables.scss +1 -32
- package/modules/@progress/kendo-theme-default/scss/dropdowngrid/_layout.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/dropdownlist/_layout.scss +37 -55
- package/modules/@progress/kendo-theme-default/scss/dropdownlist/_theme.scss +33 -75
- package/modules/@progress/kendo-theme-default/scss/editor/_layout.scss +9 -16
- package/modules/@progress/kendo-theme-default/scss/forms/_layout.scss +0 -4
- package/modules/@progress/kendo-theme-default/scss/grid/_variables.scss +6 -6
- package/modules/@progress/kendo-theme-default/scss/imageeditor/_layout.scss +4 -8
- package/modules/@progress/kendo-theme-default/scss/imageeditor/_variables.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/input/_variables.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/list/_index.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/list/_layout.scss +15 -3
- package/modules/@progress/kendo-theme-default/scss/list/_variables.scss +4 -0
- package/modules/@progress/kendo-theme-default/scss/map/_layout.scss +4 -7
- package/modules/@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss +17 -31
- package/modules/@progress/kendo-theme-default/scss/maskedtextbox/_theme.scss +44 -14
- package/modules/@progress/kendo-theme-default/scss/mediaplayer/_layout.scss +5 -0
- package/modules/@progress/kendo-theme-default/scss/radio/_index.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/radio/_layout.scss +2 -1
- package/modules/@progress/kendo-theme-default/scss/scheduler/_layout.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +4 -8
- package/modules/@progress/kendo-theme-default/scss/toolbar/_layout.scss +15 -0
- package/package.json +3 -3
- package/scss/checkbox/_index.scss +1 -0
- package/scss/coloreditor/_variables.scss +3 -3
- package/scss/combobox/_layout.scss +4 -6
- package/scss/combobox/_variables.scss +1 -32
- package/scss/dropdownlist/_layout.scss +3 -6
- package/scss/fab/index.md +0 -0
- package/scss/grid/_variables.scss +6 -6
- package/scss/imageeditor/_variables.scss +1 -0
- package/scss/input/_variables.scss +1 -1
- package/scss/list/_index.scss +1 -0
- package/scss/list/_variables.scss +4 -0
- package/scss/radio/_index.scss +1 -0
package/dist/all.scss
CHANGED
|
@@ -8068,11 +8068,22 @@ $message-box-link-text-decoration: underline !default;
|
|
|
8068
8068
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
8069
8069
|
// File already imported_once. Skipping output.
|
|
8070
8070
|
// #endregion
|
|
8071
|
+
// #region @import "../checkbox/_index.scss"; -> packages/bootstrap/scss/checkbox/_index.scss
|
|
8072
|
+
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
8073
|
+
// File already imported_once. Skipping output.
|
|
8074
|
+
// #endregion
|
|
8071
8075
|
|
|
8072
8076
|
|
|
8073
|
-
//
|
|
8074
|
-
// #region @import "_variables.scss"; -> packages/bootstrap/scss/
|
|
8077
|
+
// Dependencies
|
|
8078
|
+
// #region @import "../typography/_variables.scss"; -> packages/bootstrap/scss/typography/_variables.scss
|
|
8079
|
+
// File already imported_once. Skipping output.
|
|
8080
|
+
// #endregion
|
|
8081
|
+
// #region @import "../list/_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
8075
8082
|
// List
|
|
8083
|
+
$list-font-size: $font-size !default;
|
|
8084
|
+
$list-line-height: $line-height !default;
|
|
8085
|
+
$list-line-height-em: $line-height-em !default;
|
|
8086
|
+
|
|
8076
8087
|
$list-item-padding-x: map-get( $spacing, 4 ) !default;
|
|
8077
8088
|
$list-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
8078
8089
|
|
|
@@ -8091,10 +8102,493 @@ $list-container-shadow: null !default;
|
|
|
8091
8102
|
$list-container-no-data-text: $subtle-text !default;
|
|
8092
8103
|
|
|
8093
8104
|
// #endregion
|
|
8105
|
+
|
|
8106
|
+
|
|
8107
|
+
// Component
|
|
8108
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/checkbox/_variables.scss
|
|
8109
|
+
// Checkbox
|
|
8110
|
+
$checkbox-size: map-get( $spacing, 4 ) !default;
|
|
8111
|
+
$checkbox-radius: map-get( $spacing, 1 ) !default;
|
|
8112
|
+
$checkbox-border-width: 1px !default;
|
|
8113
|
+
$checkbox-line-height: calc( #{$checkbox-size} + #{$checkbox-border-width} ) !default;
|
|
8114
|
+
|
|
8115
|
+
$checkbox-bg: $component-bg !default;
|
|
8116
|
+
$checkbox-text: null !default;
|
|
8117
|
+
$checkbox-border: contrast-wcag( $input-bg, $gray-400, $gray-600 ) !default;
|
|
8118
|
+
|
|
8119
|
+
$checkbox-hovered-bg: null !default;
|
|
8120
|
+
$checkbox-hovered-text: null !default;
|
|
8121
|
+
$checkbox-hovered-border: null !default;
|
|
8122
|
+
|
|
8123
|
+
$checkbox-checked-bg: $primary !default;
|
|
8124
|
+
$checkbox-checked-text: contrast-wcag( $checkbox-checked-bg ) !default;
|
|
8125
|
+
$checkbox-checked-border: $checkbox-checked-bg !default;
|
|
8126
|
+
|
|
8127
|
+
$checkbox-indeterminate-bg: $checkbox-checked-bg !default;
|
|
8128
|
+
$checkbox-indeterminate-text: $checkbox-checked-text !default;
|
|
8129
|
+
$checkbox-indeterminate-border: $checkbox-checked-border !default;
|
|
8130
|
+
|
|
8131
|
+
$checkbox-focused-border: try-tint( $primary, 50% ) !default;
|
|
8132
|
+
$checkbox-focused-shadow: 0 0 0 .25rem rgba( $primary, .25 ) !default;
|
|
8133
|
+
$checkbox-focused-checked-border: $checkbox-checked-border !default;
|
|
8134
|
+
$checkbox-focused-checked-shadow: $checkbox-focused-shadow !default;
|
|
8135
|
+
|
|
8136
|
+
$checkbox-disabled-bg: null !default;
|
|
8137
|
+
$checkbox-disabled-text: null !default;
|
|
8138
|
+
$checkbox-disabled-border: null !default;
|
|
8139
|
+
|
|
8140
|
+
$checkbox-disabled-checked-bg: null !default;
|
|
8141
|
+
$checkbox-disabled-checked-text: null !default;
|
|
8142
|
+
$checkbox-disabled-checked-border: null !default;
|
|
8143
|
+
|
|
8144
|
+
$checkbox-invalid-bg: null !default;
|
|
8145
|
+
$checkbox-invalid-text: $invalid-text !default;
|
|
8146
|
+
$checkbox-invalid-border: $invalid-border !default;
|
|
8147
|
+
|
|
8148
|
+
|
|
8149
|
+
// Checkbox indicator
|
|
8150
|
+
$checkbox-icon-type: image !default;
|
|
8151
|
+
|
|
8152
|
+
$checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
8153
|
+
$checkbox-glyph-size: $checkbox-size !default;
|
|
8154
|
+
$checkbox-checked-glyph: "\e118" !default;
|
|
8155
|
+
$checkbox-indeterminate-glyph: "\e121" !default;
|
|
8156
|
+
|
|
8157
|
+
$checkbox-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$checkbox-checked-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/></svg>") ) !default;
|
|
8158
|
+
$checkbox-indeterminate-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$checkbox-indeterminate-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>") ) !default;
|
|
8159
|
+
|
|
8160
|
+
$checkbox-marker-checked-width: ( $checkbox-size / 2 ) !default;
|
|
8161
|
+
$checkbox-marker-checked-height: ( $checkbox-size / 2 ) !default;
|
|
8162
|
+
$checkbox-marker-indeterminate-width: ( $checkbox-size / 2 ) !default;
|
|
8163
|
+
$checkbox-marker-indeterminate-height: 2px !default;
|
|
8164
|
+
|
|
8165
|
+
|
|
8166
|
+
// Checkbox label
|
|
8167
|
+
$checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
8168
|
+
|
|
8169
|
+
|
|
8170
|
+
// Checkbox list
|
|
8171
|
+
$checkbox-list-margin: 0px !default;
|
|
8172
|
+
$checkbox-list-padding: 0px !default;
|
|
8173
|
+
$checkbox-list-item-padding-x: 0px !default;
|
|
8174
|
+
$checkbox-list-item-padding-y: $list-item-padding-y !default;
|
|
8175
|
+
$checkbox-list-horizontal-item-margin-x: 32px !default;
|
|
8176
|
+
|
|
8177
|
+
|
|
8178
|
+
// Checkbox ripple
|
|
8179
|
+
$checkbox-ripple-size: $checkbox-size * 3 !default;
|
|
8180
|
+
$checkbox-ripple-margin: calc(-1 * (#{$checkbox-size} + #{$checkbox-border-width})) !default;
|
|
8181
|
+
$checkbox-ripple-opacity: .3 !default;
|
|
8182
|
+
|
|
8183
|
+
// #endregion
|
|
8184
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/checkbox/_layout.scss
|
|
8185
|
+
// #region @import "~@progress/kendo-theme-default/scss/checkbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_layout.scss
|
|
8186
|
+
@include exports( "checkbox/layout" ) {
|
|
8187
|
+
|
|
8188
|
+
// Checkbox
|
|
8189
|
+
.k-checkbox {
|
|
8190
|
+
@include border-radius( $checkbox-radius );
|
|
8191
|
+
margin: 0;
|
|
8192
|
+
padding: 0;
|
|
8193
|
+
width: $checkbox-size;
|
|
8194
|
+
height: $checkbox-size;
|
|
8195
|
+
line-height: initial;
|
|
8196
|
+
border-width: $checkbox-border-width;
|
|
8197
|
+
border-style: solid;
|
|
8198
|
+
outline: 0;
|
|
8199
|
+
box-sizing: border-box;
|
|
8200
|
+
background-position: center;
|
|
8201
|
+
background-repeat: no-repeat;
|
|
8202
|
+
background-size: contain;
|
|
8203
|
+
display: inline-block;
|
|
8204
|
+
flex: none;
|
|
8205
|
+
vertical-align: middle;
|
|
8206
|
+
position: relative;
|
|
8207
|
+
cursor: pointer;
|
|
8208
|
+
-webkit-appearance: none;
|
|
8209
|
+
}
|
|
8210
|
+
|
|
8211
|
+
// Checkbox indicator
|
|
8212
|
+
.k-checkbox::before {
|
|
8213
|
+
@if $checkbox-icon-type == "glyph" {
|
|
8214
|
+
content: $checkbox-checked-glyph;
|
|
8215
|
+
width: $checkbox-glyph-size;
|
|
8216
|
+
height: $checkbox-glyph-size;
|
|
8217
|
+
font-size: $checkbox-glyph-size;
|
|
8218
|
+
font-family: $checkbox-glyph-font-family;
|
|
8219
|
+
line-height: 1;
|
|
8220
|
+
transform: scale(0) translate(-50%, -50%);
|
|
8221
|
+
overflow: hidden;
|
|
8222
|
+
position: absolute;
|
|
8223
|
+
top: 50%;
|
|
8224
|
+
left: 50%;
|
|
8225
|
+
}
|
|
8226
|
+
|
|
8227
|
+
@if $checkbox-icon-type == "marker" {
|
|
8228
|
+
content: "";
|
|
8229
|
+
width: $checkbox-marker-checked-width;
|
|
8230
|
+
height: $checkbox-marker-checked-height;
|
|
8231
|
+
background-color: currentColor;
|
|
8232
|
+
transform: scale(0) translate(-50%, -50%);
|
|
8233
|
+
overflow: hidden;
|
|
8234
|
+
position: absolute;
|
|
8235
|
+
top: 50%;
|
|
8236
|
+
left: 50%;
|
|
8237
|
+
}
|
|
8238
|
+
}
|
|
8239
|
+
|
|
8240
|
+
|
|
8241
|
+
// Checked state
|
|
8242
|
+
.k-checkbox:checked,
|
|
8243
|
+
.k-checkbox.k-checked {
|
|
8244
|
+
@if $checkbox-icon-type == "image" {
|
|
8245
|
+
background-image: $checkbox-checked-image;
|
|
8246
|
+
}
|
|
8247
|
+
|
|
8248
|
+
@if $checkbox-icon-type == "glyph" {
|
|
8249
|
+
&::before {
|
|
8250
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8251
|
+
}
|
|
8252
|
+
}
|
|
8253
|
+
|
|
8254
|
+
@if $checkbox-icon-type == "marker" {
|
|
8255
|
+
&::before {
|
|
8256
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8257
|
+
}
|
|
8258
|
+
}
|
|
8259
|
+
}
|
|
8260
|
+
|
|
8261
|
+
|
|
8262
|
+
// Indeterminate state
|
|
8263
|
+
.k-checkbox:indeterminate,
|
|
8264
|
+
.k-checkbox.k-indeterminate,
|
|
8265
|
+
.k-checkbox.k-state-indeterminate {
|
|
8266
|
+
@if $checkbox-icon-type == "image" {
|
|
8267
|
+
background-image: $checkbox-indeterminate-image;
|
|
8268
|
+
}
|
|
8269
|
+
|
|
8270
|
+
@if $checkbox-icon-type == "glyph" {
|
|
8271
|
+
&::before {
|
|
8272
|
+
content: $checkbox-indeterminate-glyph;
|
|
8273
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8274
|
+
}
|
|
8275
|
+
}
|
|
8276
|
+
|
|
8277
|
+
@if $checkbox-icon-type == "marker" {
|
|
8278
|
+
&::before {
|
|
8279
|
+
width: $checkbox-maker-indeterminate-width;
|
|
8280
|
+
height: $checkbox-marker-indeterminate-height;
|
|
8281
|
+
transform: scale(1) translate(-50%, -50%);
|
|
8282
|
+
}
|
|
8283
|
+
}
|
|
8284
|
+
}
|
|
8285
|
+
|
|
8286
|
+
|
|
8287
|
+
// Disabled state
|
|
8288
|
+
.k-checkbox:disabled,
|
|
8289
|
+
.k-checkbox.k-disabled,
|
|
8290
|
+
.k-checkbox:disabled + .k-checkbox-label,
|
|
8291
|
+
.k-checkbox.k-disabled + .k-checkbox-label {
|
|
8292
|
+
@include disabled( $disabled-styling );
|
|
8293
|
+
}
|
|
8294
|
+
|
|
8295
|
+
// Checkbox label
|
|
8296
|
+
.k-checkbox-label {
|
|
8297
|
+
margin: 0;
|
|
8298
|
+
padding: 0;
|
|
8299
|
+
line-height: $checkbox-line-height;
|
|
8300
|
+
display: inline-flex;
|
|
8301
|
+
align-items: flex-start;
|
|
8302
|
+
vertical-align: middle;
|
|
8303
|
+
position: relative;
|
|
8304
|
+
cursor: pointer;
|
|
8305
|
+
|
|
8306
|
+
.k-label {
|
|
8307
|
+
cursor: pointer;
|
|
8308
|
+
}
|
|
8309
|
+
|
|
8310
|
+
.k-ripple {
|
|
8311
|
+
top: $checkbox-size / 2;
|
|
8312
|
+
left: $checkbox-size / 2;
|
|
8313
|
+
right: auto;
|
|
8314
|
+
bottom: auto;
|
|
8315
|
+
width: $checkbox-size * 5 / 2;
|
|
8316
|
+
height: $checkbox-size * 5 / 2;
|
|
8317
|
+
transform: translate(-50%, -50%);
|
|
8318
|
+
border-radius: 50%;
|
|
8319
|
+
|
|
8320
|
+
// Hide ripple temporarily
|
|
8321
|
+
visibility: hidden !important; // sass-lint:disable-line no-important
|
|
8322
|
+
}
|
|
8323
|
+
|
|
8324
|
+
.k-ripple-blob {
|
|
8325
|
+
// sass-lint:disable-block no-important
|
|
8326
|
+
// use !important until ripple can apply these styles from the script
|
|
8327
|
+
top: 50% !important;
|
|
8328
|
+
left: 50% !important;
|
|
8329
|
+
width: 200% !important;
|
|
8330
|
+
height: 200% !important;
|
|
8331
|
+
}
|
|
8332
|
+
}
|
|
8333
|
+
.k-checkbox + .k-checkbox-label {
|
|
8334
|
+
display: inline;
|
|
8335
|
+
}
|
|
8336
|
+
.k-checkbox + .k-checkbox-label,
|
|
8337
|
+
.k-checkbox-label + .k-checkbox {
|
|
8338
|
+
margin-left: $checkbox-label-margin-x;
|
|
8339
|
+
}
|
|
8340
|
+
.k-checkbox-label > .k-checkbox {
|
|
8341
|
+
margin-right: $checkbox-label-margin-x;
|
|
8342
|
+
flex-shrink: 0;
|
|
8343
|
+
}
|
|
8344
|
+
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
8345
|
+
margin-right: 0;
|
|
8346
|
+
}
|
|
8347
|
+
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
8348
|
+
margin-right: $checkbox-label-margin-x;
|
|
8349
|
+
}
|
|
8350
|
+
kendo-label.k-checkbox-label > .k-label {
|
|
8351
|
+
display: inline;
|
|
8352
|
+
}
|
|
8353
|
+
|
|
8354
|
+
|
|
8355
|
+
// Empty label
|
|
8356
|
+
.k-checkbox-label:empty {
|
|
8357
|
+
display: none !important; // sass-lint:disable-line no-important
|
|
8358
|
+
}
|
|
8359
|
+
|
|
8360
|
+
|
|
8361
|
+
// Label with no text
|
|
8362
|
+
.k-checkbox-label.k-no-text {
|
|
8363
|
+
min-width: 1px;
|
|
8364
|
+
}
|
|
8365
|
+
|
|
8366
|
+
|
|
8367
|
+
// Checkbox list
|
|
8368
|
+
.k-checkbox-list {
|
|
8369
|
+
margin: $checkbox-list-margin;
|
|
8370
|
+
padding: $checkbox-list-padding;
|
|
8371
|
+
list-style: none;
|
|
8372
|
+
|
|
8373
|
+
.k-checkbox-item {
|
|
8374
|
+
padding: $checkbox-list-item-padding-y $checkbox-list-item-padding-x;
|
|
8375
|
+
}
|
|
8376
|
+
}
|
|
8377
|
+
|
|
8378
|
+
.k-list-horizontal {
|
|
8379
|
+
.k-checkbox-item {
|
|
8380
|
+
display: inline-block;
|
|
8381
|
+
margin: 0 $checkbox-list-horizontal-item-margin-x 0 0;
|
|
8382
|
+
|
|
8383
|
+
&:last-child {
|
|
8384
|
+
margin-right: 0;
|
|
8385
|
+
}
|
|
8386
|
+
}
|
|
8387
|
+
}
|
|
8388
|
+
|
|
8389
|
+
|
|
8390
|
+
// RTL
|
|
8391
|
+
.k-rtl,
|
|
8392
|
+
[dir="rtl"] {
|
|
8393
|
+
.k-checkbox + .k-checkbox-label,
|
|
8394
|
+
.k-checkbox-label + .k-checkbox {
|
|
8395
|
+
margin-left: 0;
|
|
8396
|
+
margin-right: $checkbox-label-margin-x;
|
|
8397
|
+
}
|
|
8398
|
+
.k-checkbox-label > .k-checkbox {
|
|
8399
|
+
margin-right: 0;
|
|
8400
|
+
margin-left: $checkbox-label-margin-x;
|
|
8401
|
+
}
|
|
8402
|
+
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
8403
|
+
margin-left: 0;
|
|
8404
|
+
}
|
|
8405
|
+
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
8406
|
+
margin-right: 0;
|
|
8407
|
+
margin-left: $checkbox-label-margin-x;
|
|
8408
|
+
}
|
|
8409
|
+
|
|
8410
|
+
.k-list-horizontal {
|
|
8411
|
+
.k-checkbox-item {
|
|
8412
|
+
margin-right: 0;
|
|
8413
|
+
margin-left: $checkbox-list-horizontal-item-margin-x;
|
|
8414
|
+
|
|
8415
|
+
&:last-child {
|
|
8416
|
+
margin-left: 0;
|
|
8417
|
+
}
|
|
8418
|
+
}
|
|
8419
|
+
}
|
|
8420
|
+
}
|
|
8421
|
+
|
|
8422
|
+
.k-ripple-container {
|
|
8423
|
+
.k-checkbox::after {
|
|
8424
|
+
content: "";
|
|
8425
|
+
display: block;
|
|
8426
|
+
position: absolute;
|
|
8427
|
+
left: 0;
|
|
8428
|
+
top: 0;
|
|
8429
|
+
width: $checkbox-ripple-size;
|
|
8430
|
+
height: $checkbox-ripple-size;
|
|
8431
|
+
margin-left: $checkbox-ripple-margin;
|
|
8432
|
+
margin-top: $checkbox-ripple-margin;
|
|
8433
|
+
border-radius: 100%;
|
|
8434
|
+
z-index: 1;
|
|
8435
|
+
transform: scale(0);
|
|
8436
|
+
}
|
|
8437
|
+
|
|
8438
|
+
.k-checkbox:disabled::after,
|
|
8439
|
+
.k-checkbox.k-disabled::after {
|
|
8440
|
+
display: none;
|
|
8441
|
+
}
|
|
8442
|
+
}
|
|
8443
|
+
|
|
8444
|
+
}
|
|
8445
|
+
|
|
8446
|
+
|
|
8447
|
+
|
|
8448
|
+
|
|
8449
|
+
@include exports( "checkbox/layout/edge" ) {
|
|
8450
|
+
|
|
8451
|
+
.k-checkbox::-ms-check {
|
|
8452
|
+
border-width: 1px;
|
|
8453
|
+
border-color: inherit;
|
|
8454
|
+
color: inherit;
|
|
8455
|
+
background-color: inherit;
|
|
8456
|
+
}
|
|
8457
|
+
|
|
8458
|
+
}
|
|
8459
|
+
|
|
8460
|
+
// #endregion
|
|
8461
|
+
|
|
8462
|
+
// #endregion
|
|
8463
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/checkbox/_theme.scss
|
|
8464
|
+
// #region @import "~@progress/kendo-theme-default/scss/checkbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss
|
|
8465
|
+
@include exports("checkbox/theme") {
|
|
8466
|
+
|
|
8467
|
+
// Checkbox
|
|
8468
|
+
.k-checkbox {
|
|
8469
|
+
@include fill(
|
|
8470
|
+
$checkbox-text,
|
|
8471
|
+
$checkbox-bg,
|
|
8472
|
+
$checkbox-border
|
|
8473
|
+
);
|
|
8474
|
+
}
|
|
8475
|
+
|
|
8476
|
+
|
|
8477
|
+
// Hover state
|
|
8478
|
+
.k-checkbox:hover,
|
|
8479
|
+
.k-checkbox.k-state-hover {
|
|
8480
|
+
@include fill(
|
|
8481
|
+
$checkbox-hovered-text,
|
|
8482
|
+
$checkbox-hovered-bg,
|
|
8483
|
+
$checkbox-hovered-border
|
|
8484
|
+
);
|
|
8485
|
+
}
|
|
8486
|
+
|
|
8487
|
+
|
|
8488
|
+
// Focus state
|
|
8489
|
+
.k-checkbox:focus,
|
|
8490
|
+
.k-checkbox.k-state-focus {
|
|
8491
|
+
@include fill( $border: $checkbox-focused-border );
|
|
8492
|
+
@include box-shadow( $checkbox-focused-shadow );
|
|
8493
|
+
}
|
|
8494
|
+
|
|
8495
|
+
|
|
8496
|
+
// Indeterminate
|
|
8497
|
+
.k-checkbox:indeterminate,
|
|
8498
|
+
.k-checkbox.k-state-indeterminate,
|
|
8499
|
+
.k-checkbox.k-indeterminate {
|
|
8500
|
+
@include fill(
|
|
8501
|
+
$checkbox-indeterminate-text,
|
|
8502
|
+
$checkbox-indeterminate-bg,
|
|
8503
|
+
$checkbox-indeterminate-border
|
|
8504
|
+
);
|
|
8505
|
+
}
|
|
8506
|
+
|
|
8507
|
+
|
|
8508
|
+
// Checked
|
|
8509
|
+
.k-checkbox:checked,
|
|
8510
|
+
.k-checkbox.k-checked {
|
|
8511
|
+
@include fill(
|
|
8512
|
+
$checkbox-checked-text,
|
|
8513
|
+
$checkbox-checked-bg,
|
|
8514
|
+
$checkbox-checked-border
|
|
8515
|
+
);
|
|
8516
|
+
}
|
|
8517
|
+
.k-checkbox:checked:focus,
|
|
8518
|
+
.k-checkbox.k-checked.k-state-focus {
|
|
8519
|
+
@include fill( $border: $checkbox-focused-checked-border );
|
|
8520
|
+
@include box-shadow( $checkbox-focused-checked-shadow );
|
|
8521
|
+
}
|
|
8522
|
+
|
|
8523
|
+
|
|
8524
|
+
// Disabled
|
|
8525
|
+
.k-checkbox:disabled,
|
|
8526
|
+
.k-checkbox.k-disabled {
|
|
8527
|
+
@include fill(
|
|
8528
|
+
$checkbox-disabled-text,
|
|
8529
|
+
$checkbox-disabled-bg,
|
|
8530
|
+
$checkbox-disabled-border
|
|
8531
|
+
);
|
|
8532
|
+
}
|
|
8533
|
+
.k-checkbox:checked:disabled,
|
|
8534
|
+
.k-checkbox:indeterminate:disabled,
|
|
8535
|
+
.k-checkbox.k-state-indeterminate:disabled,
|
|
8536
|
+
.k-checkbox.k-checked.k-disabled,
|
|
8537
|
+
.k-checkbox.k-indeterminate.k-disabled {
|
|
8538
|
+
@include fill(
|
|
8539
|
+
$checkbox-disabled-checked-text,
|
|
8540
|
+
$checkbox-disabled-checked-bg,
|
|
8541
|
+
$checkbox-disabled-checked-border
|
|
8542
|
+
);
|
|
8543
|
+
}
|
|
8544
|
+
|
|
8545
|
+
|
|
8546
|
+
// Invalid
|
|
8547
|
+
.k-checkbox.k-invalid,
|
|
8548
|
+
.k-checkbox.k-state-invalid,
|
|
8549
|
+
.k-checkbox.ng-invalid.ng-touched,
|
|
8550
|
+
.k-checkbox.ng-invalid.ng-dirty {
|
|
8551
|
+
@include fill( $border: $checkbox-invalid-border );
|
|
8552
|
+
}
|
|
8553
|
+
.k-checkbox.k-invalid + .k-checkbox-label,
|
|
8554
|
+
.k-checkbox.k-state-invalid + .k-checkbox-label,
|
|
8555
|
+
.k-checkbox.ng-invalid.ng-touched + .k-checkbox-label,
|
|
8556
|
+
.k-checkbox.ng-invalid.ng-dirty + .k-checkbox-label {
|
|
8557
|
+
@include fill( $color: $checkbox-invalid-text );
|
|
8558
|
+
}
|
|
8559
|
+
|
|
8560
|
+
|
|
8561
|
+
// Ripple
|
|
8562
|
+
.k-ripple-container {
|
|
8563
|
+
.k-checkbox::after {
|
|
8564
|
+
background: $checkbox-checked-bg;
|
|
8565
|
+
opacity: $checkbox-ripple-opacity;
|
|
8566
|
+
}
|
|
8567
|
+
}
|
|
8568
|
+
|
|
8569
|
+
}
|
|
8570
|
+
|
|
8571
|
+
// #endregion
|
|
8572
|
+
|
|
8573
|
+
// #endregion
|
|
8574
|
+
|
|
8575
|
+
// #endregion
|
|
8576
|
+
|
|
8577
|
+
|
|
8578
|
+
// Component
|
|
8579
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
8580
|
+
// File already imported_once. Skipping output.
|
|
8581
|
+
// #endregion
|
|
8094
8582
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/list/_layout.scss
|
|
8095
8583
|
// #region @import "~@progress/kendo-theme-default/scss/list/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/list/_layout.scss
|
|
8096
8584
|
@include exports( "list/layout" ) {
|
|
8097
8585
|
|
|
8586
|
+
.k-list,
|
|
8587
|
+
.k-list-container {
|
|
8588
|
+
font-size: $list-font-size;
|
|
8589
|
+
line-height: $list-line-height;
|
|
8590
|
+
}
|
|
8591
|
+
|
|
8098
8592
|
// Layout
|
|
8099
8593
|
.k-list-scroller {
|
|
8100
8594
|
position: relative;
|
|
@@ -8109,7 +8603,7 @@ $list-container-no-data-text: $subtle-text !default;
|
|
|
8109
8603
|
|
|
8110
8604
|
.k-list__group-header { // sass-lint:disable-line class-name-format
|
|
8111
8605
|
padding: $list-item-padding-y $list-item-padding-x;
|
|
8112
|
-
min-height: $line-height-em;
|
|
8606
|
+
min-height: $list-line-height-em;
|
|
8113
8607
|
border-bottom-width: 1px;
|
|
8114
8608
|
border-bottom-style: solid;
|
|
8115
8609
|
font-size: $font-size;
|
|
@@ -8151,8 +8645,8 @@ $list-container-no-data-text: $subtle-text !default;
|
|
|
8151
8645
|
|
|
8152
8646
|
.k-list__item { // sass-lint:disable-line class-name-format
|
|
8153
8647
|
padding: $list-item-padding-y $list-item-padding-x;
|
|
8154
|
-
min-height: $line-height-em;
|
|
8155
|
-
line-height: $line-height
|
|
8648
|
+
min-height: $list-line-height-em;
|
|
8649
|
+
line-height: $list-line-height;
|
|
8156
8650
|
white-space: normal;
|
|
8157
8651
|
display: flex;
|
|
8158
8652
|
align-items: center;
|
|
@@ -8165,6 +8659,12 @@ $list-container-no-data-text: $subtle-text !default;
|
|
|
8165
8659
|
transition-timing-function: ease;
|
|
8166
8660
|
outline: none;
|
|
8167
8661
|
|
|
8662
|
+
.k-checkbox {
|
|
8663
|
+
margin-top: calc( ( #{$list-line-height-em} - #{$checkbox-size} ) / 2 );
|
|
8664
|
+
font-size: inherit;
|
|
8665
|
+
align-self: flex-start;
|
|
8666
|
+
}
|
|
8667
|
+
|
|
8168
8668
|
&.k-first::before {
|
|
8169
8669
|
content: "";
|
|
8170
8670
|
display: block;
|
|
@@ -9178,7 +9678,7 @@ $clear-button-focused-opacity: .1 !default;
|
|
|
9178
9678
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/input/_variables.scss
|
|
9179
9679
|
// Input
|
|
9180
9680
|
|
|
9181
|
-
$input-default-width:
|
|
9681
|
+
$input-default-width: 200px !default;
|
|
9182
9682
|
|
|
9183
9683
|
$input-border-width: $input-border-width !default;
|
|
9184
9684
|
$input-border-height: ( $input-border-width * 2 ) !default;
|
|
@@ -9734,116 +10234,76 @@ $floating-label-focus-text: null !default;
|
|
|
9734
10234
|
|
|
9735
10235
|
// Component
|
|
9736
10236
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/combobox/_variables.scss
|
|
9737
|
-
//
|
|
9738
|
-
$combobox-select-padding-x: $button-padding-y !default;
|
|
9739
|
-
$combobox-select-padding-y: $button-padding-y !default;
|
|
9740
|
-
$combobox-select-width: null !default;
|
|
9741
|
-
|
|
9742
|
-
$combobox-bg: $input-bg !default;
|
|
9743
|
-
$combobox-text: $input-text !default;
|
|
9744
|
-
$combobox-border: $input-border !default;
|
|
9745
|
-
|
|
9746
|
-
$combobox-hovered-bg: $input-hovered-bg !default;
|
|
9747
|
-
$combobox-hovered-text: $input-hovered-text !default;
|
|
9748
|
-
$combobox-hovered-border: $input-hovered-border !default;
|
|
9749
|
-
|
|
9750
|
-
$combobox-focused-bg: $input-focused-bg !default;
|
|
9751
|
-
$combobox-focused-text: $input-focused-text !default;
|
|
9752
|
-
$combobox-focused-border: $input-focused-border !default;
|
|
9753
|
-
$combobox-focused-shadow: $input-focused-shadow !default;
|
|
9754
|
-
|
|
9755
|
-
$combobox-select-bg: $button-bg !default;
|
|
9756
|
-
$combobox-select-text: $button-text !default;
|
|
9757
|
-
$combobox-select-border: $button-border !default;
|
|
9758
|
-
$combobox-select-gradient: $button-gradient !default;
|
|
9759
|
-
|
|
9760
|
-
$combobox-select-hovered-bg: $button-hovered-bg !default;
|
|
9761
|
-
$combobox-select-hovered-text: $button-hovered-text !default;
|
|
9762
|
-
$combobox-select-hovered-border: $button-hovered-border !default;
|
|
9763
|
-
$combobox-select-hovered-gradient: $button-hovered-gradient !default;
|
|
9764
|
-
|
|
9765
|
-
$combobox-select-pressed-bg: $button-active-bg !default;
|
|
9766
|
-
$combobox-select-pressed-text: $button-active-text !default;
|
|
9767
|
-
$combobox-select-pressed-border: $button-active-border !default;
|
|
9768
|
-
$combobox-select-pressed-gradient: $button-active-gradient !default;
|
|
10237
|
+
// Combobox
|
|
9769
10238
|
|
|
9770
10239
|
// #endregion
|
|
9771
10240
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/combobox/_layout.scss
|
|
9772
10241
|
// #region @import "~@progress/kendo-theme-default/scss/combobox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/combobox/_layout.scss
|
|
9773
|
-
@include exports("combobox/layout") {
|
|
10242
|
+
@include exports( "combobox/layout" ) {
|
|
9774
10243
|
|
|
9775
10244
|
// Combobox
|
|
9776
10245
|
.k-combobox {
|
|
10246
|
+
@include border-radius( $input-border-radius );
|
|
9777
10247
|
width: $input-default-width;
|
|
9778
|
-
border-width:
|
|
10248
|
+
border-width: $input-border-width;
|
|
10249
|
+
border-style: solid;
|
|
9779
10250
|
box-sizing: border-box;
|
|
9780
10251
|
outline: 0;
|
|
9781
|
-
background: none;
|
|
9782
10252
|
font-family: $input-font-family;
|
|
9783
10253
|
font-size: $input-font-size;
|
|
9784
10254
|
line-height: $input-line-height;
|
|
9785
|
-
text-align:
|
|
10255
|
+
text-align: start;
|
|
9786
10256
|
white-space: nowrap;
|
|
9787
10257
|
display: inline-flex;
|
|
10258
|
+
flex-flow: row nowrap;
|
|
9788
10259
|
vertical-align: middle;
|
|
9789
10260
|
position: relative;
|
|
10261
|
+
overflow: hidden;
|
|
10262
|
+
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
9790
10263
|
-webkit-touch-callout: none;
|
|
9791
10264
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
9792
10265
|
|
|
9793
|
-
.k-dropdown-wrap {
|
|
9794
|
-
@include border-radius( $input-border-radius );
|
|
9795
|
-
padding: 0;
|
|
9796
|
-
width: 100%;
|
|
9797
|
-
border-width: 1px;
|
|
9798
|
-
border-style: solid;
|
|
9799
|
-
box-sizing: border-box;
|
|
9800
|
-
position: relative;
|
|
9801
|
-
display: flex;
|
|
9802
|
-
flex-flow: row nowrap;
|
|
9803
|
-
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
9804
|
-
outline: 0;
|
|
9805
|
-
cursor: initial;
|
|
9806
|
-
overflow: hidden;
|
|
9807
|
-
}
|
|
9808
|
-
|
|
9809
10266
|
|
|
9810
10267
|
// Input
|
|
9811
10268
|
.k-input {}
|
|
9812
10269
|
|
|
10270
|
+
|
|
10271
|
+
// Loading icon
|
|
10272
|
+
.k-i-loading {
|
|
10273
|
+
width: $input-icon-width;
|
|
10274
|
+
height: $input-icon-height;
|
|
10275
|
+
}
|
|
10276
|
+
|
|
10277
|
+
|
|
9813
10278
|
// Select
|
|
9814
10279
|
.k-select {
|
|
9815
|
-
padding: $
|
|
9816
|
-
width: if( $use-picker-select-width, $
|
|
10280
|
+
padding: $picker-select-padding-y $picker-select-padding-x;
|
|
10281
|
+
width: if( $use-picker-select-width, $spinner-width, null );
|
|
9817
10282
|
border-width: 0;
|
|
9818
10283
|
border-inline-start-width: $picker-select-border-width;
|
|
9819
|
-
box-sizing: border-box;
|
|
9820
10284
|
border-style: solid;
|
|
10285
|
+
box-sizing: border-box;
|
|
10286
|
+
outline: 0;
|
|
9821
10287
|
display: flex;
|
|
10288
|
+
flex-flow: row nowrap;
|
|
9822
10289
|
align-items: center;
|
|
9823
10290
|
justify-content: center;
|
|
9824
10291
|
flex: 0 0 auto;
|
|
9825
|
-
text-align: center;
|
|
9826
10292
|
cursor: pointer;
|
|
9827
10293
|
}
|
|
9828
|
-
|
|
9829
|
-
&[dir="rtl"],
|
|
9830
|
-
.k-rtl & {
|
|
9831
|
-
text-align: right;
|
|
9832
|
-
}
|
|
9833
10294
|
}
|
|
10295
|
+
|
|
9834
10296
|
}
|
|
9835
10297
|
|
|
9836
10298
|
// #endregion
|
|
9837
10299
|
|
|
9838
|
-
@include exports("combobox/layout/bootstrap") {
|
|
10300
|
+
@include exports( "combobox/layout/bootstrap" ) {
|
|
9839
10301
|
|
|
9840
10302
|
.k-combobox {
|
|
9841
|
-
|
|
9842
|
-
transition: $transition;
|
|
10303
|
+
transition: $transition;
|
|
9843
10304
|
|
|
9844
|
-
|
|
9845
|
-
|
|
9846
|
-
}
|
|
10305
|
+
.k-select {
|
|
10306
|
+
transition: $transition;
|
|
9847
10307
|
}
|
|
9848
10308
|
}
|
|
9849
10309
|
|
|
@@ -9852,128 +10312,88 @@ $combobox-select-pressed-gradient: $button-active-gradient !default;
|
|
|
9852
10312
|
// #endregion
|
|
9853
10313
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/combobox/_theme.scss
|
|
9854
10314
|
// #region @import "~@progress/kendo-theme-default/scss/combobox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/combobox/_theme.scss
|
|
9855
|
-
@include exports("combobox/theme") {
|
|
10315
|
+
@include exports( "combobox/theme" ) {
|
|
9856
10316
|
|
|
9857
10317
|
.k-combobox {
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
|
|
9861
|
-
|
|
9862
|
-
|
|
9863
|
-
$combobox-bg,
|
|
9864
|
-
$combobox-border
|
|
9865
|
-
);
|
|
9866
|
-
|
|
9867
|
-
// Invalid state
|
|
9868
|
-
&.k-invalid,
|
|
9869
|
-
&.k-invalid:hover,
|
|
9870
|
-
&.k-state-invalid {
|
|
9871
|
-
border-color: $invalid-border;
|
|
9872
|
-
|
|
9873
|
-
.k-input-validation-icon {
|
|
9874
|
-
color: $invalid-text;
|
|
9875
|
-
}
|
|
9876
|
-
|
|
9877
|
-
&:focus,
|
|
9878
|
-
&.k-state-focused {
|
|
9879
|
-
@include box-shadow($invalid-shadow);
|
|
9880
|
-
}
|
|
9881
|
-
}
|
|
9882
|
-
}
|
|
9883
|
-
|
|
9884
|
-
.k-select {
|
|
9885
|
-
@include fill(
|
|
9886
|
-
$combobox-select-text,
|
|
9887
|
-
$combobox-select-bg,
|
|
9888
|
-
$combobox-select-border,
|
|
9889
|
-
$combobox-select-gradient
|
|
9890
|
-
);
|
|
9891
|
-
}
|
|
10318
|
+
@include fill(
|
|
10319
|
+
$input-text,
|
|
10320
|
+
$input-bg,
|
|
10321
|
+
$input-border
|
|
10322
|
+
);
|
|
9892
10323
|
|
|
9893
10324
|
// Hover state
|
|
9894
|
-
|
|
9895
|
-
|
|
10325
|
+
&:hover,
|
|
10326
|
+
&.k-state-hover {
|
|
9896
10327
|
@include fill(
|
|
9897
|
-
$
|
|
9898
|
-
$
|
|
9899
|
-
$
|
|
10328
|
+
$input-hovered-text,
|
|
10329
|
+
$input-hovered-bg,
|
|
10330
|
+
$input-hovered-border
|
|
9900
10331
|
);
|
|
9901
10332
|
}
|
|
9902
|
-
|
|
10333
|
+
|
|
10334
|
+
// Focus state
|
|
10335
|
+
&:focus,
|
|
10336
|
+
&.k-state-focus {
|
|
9903
10337
|
@include fill(
|
|
9904
|
-
$
|
|
9905
|
-
$
|
|
9906
|
-
$
|
|
9907
|
-
$combobox-select-hovered-gradient
|
|
10338
|
+
$input-focused-text,
|
|
10339
|
+
$input-focused-bg,
|
|
10340
|
+
$input-focused-border
|
|
9908
10341
|
);
|
|
10342
|
+
@include box-shadow( $input-focused-shadow );
|
|
9909
10343
|
}
|
|
9910
|
-
|
|
9911
|
-
// Focus state
|
|
9912
|
-
> .k-state-focused {
|
|
10344
|
+
&:focus-within {
|
|
9913
10345
|
@include fill(
|
|
9914
|
-
$
|
|
9915
|
-
$
|
|
9916
|
-
$
|
|
10346
|
+
$input-focused-text,
|
|
10347
|
+
$input-focused-bg,
|
|
10348
|
+
$input-focused-border
|
|
9917
10349
|
);
|
|
9918
|
-
@include box-shadow($
|
|
10350
|
+
@include box-shadow( $input-focused-shadow );
|
|
9919
10351
|
}
|
|
9920
10352
|
|
|
9921
|
-
// Invalid
|
|
9922
|
-
&.k-state-invalid,
|
|
9923
|
-
&.ng-invalid.ng-touched,
|
|
9924
|
-
&.ng-invalid.ng-dirty {
|
|
9925
|
-
.k-dropdown-wrap {
|
|
9926
|
-
border-color: $invalid-border;
|
|
9927
|
-
|
|
9928
|
-
.k-input-validation-icon {
|
|
9929
|
-
color: $invalid-text;
|
|
9930
|
-
}
|
|
9931
10353
|
|
|
9932
|
-
|
|
9933
|
-
|
|
9934
|
-
|
|
9935
|
-
|
|
9936
|
-
|
|
9937
|
-
}
|
|
9938
|
-
}
|
|
10354
|
+
// Invalid state
|
|
10355
|
+
&.k-invalid,
|
|
10356
|
+
&.ng-invalid,
|
|
10357
|
+
&.k-state-invalid {
|
|
10358
|
+
border-color: $invalid-border;
|
|
9939
10359
|
|
|
9940
|
-
|
|
9941
|
-
|
|
9942
|
-
&.k-state-hover {
|
|
9943
|
-
.k-dropdown-wrap {
|
|
9944
|
-
@include fill(
|
|
9945
|
-
$combobox-hovered-text,
|
|
9946
|
-
$combobox-hovered-bg,
|
|
9947
|
-
$combobox-hovered-border
|
|
9948
|
-
);
|
|
10360
|
+
.k-input-validation-icon {
|
|
10361
|
+
color: $invalid-text;
|
|
9949
10362
|
}
|
|
9950
|
-
}
|
|
9951
10363
|
|
|
9952
|
-
|
|
9953
|
-
|
|
9954
|
-
@include
|
|
9955
|
-
$combobox-focused-text,
|
|
9956
|
-
$combobox-focused-bg,
|
|
9957
|
-
$combobox-focused-border
|
|
9958
|
-
);
|
|
9959
|
-
@include box-shadow($combobox-focused-shadow);
|
|
10364
|
+
&:focus-within,
|
|
10365
|
+
&.k-state-focus {
|
|
10366
|
+
@include box-shadow($invalid-shadow);
|
|
9960
10367
|
}
|
|
9961
10368
|
}
|
|
9962
10369
|
|
|
9963
|
-
&.k-invalid {
|
|
9964
|
-
.k-dropdown-wrap {
|
|
9965
|
-
border-color: $invalid-border;
|
|
9966
10370
|
|
|
9967
|
-
|
|
9968
|
-
|
|
9969
|
-
|
|
9970
|
-
|
|
10371
|
+
// Select
|
|
10372
|
+
.k-select {
|
|
10373
|
+
@include fill(
|
|
10374
|
+
$picker-select-text,
|
|
10375
|
+
$picker-select-bg,
|
|
10376
|
+
$picker-select-border,
|
|
10377
|
+
$picker-select-gradient
|
|
10378
|
+
);
|
|
9971
10379
|
}
|
|
9972
|
-
|
|
9973
|
-
|
|
9974
|
-
|
|
9975
|
-
|
|
9976
|
-
|
|
10380
|
+
.k-select:hover,
|
|
10381
|
+
.k-select.k-state-hover {
|
|
10382
|
+
@include fill(
|
|
10383
|
+
$picker-select-hovered-text,
|
|
10384
|
+
$picker-select-hovered-bg,
|
|
10385
|
+
$picker-select-hovered-border,
|
|
10386
|
+
$picker-select-hovered-gradient
|
|
10387
|
+
);
|
|
10388
|
+
}
|
|
10389
|
+
.k-select:active,
|
|
10390
|
+
.k-select.k-state-active {
|
|
10391
|
+
@include fill(
|
|
10392
|
+
$picker-select-pressed-text,
|
|
10393
|
+
$picker-select-pressed-bg,
|
|
10394
|
+
$picker-select-pressed-border,
|
|
10395
|
+
$picker-select-pressed-gradient
|
|
10396
|
+
);
|
|
9977
10397
|
}
|
|
9978
10398
|
}
|
|
9979
10399
|
|
|
@@ -10242,14 +10662,14 @@ $grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
|
10242
10662
|
$grid-filter-menu-item-spacing-x: map-get( $spacing, 6 ) !default;
|
|
10243
10663
|
$grid-filter-menu-item-spacing-y: map-get( $spacing, 2 ) !default;
|
|
10244
10664
|
|
|
10245
|
-
$grid-column-menu-popup-padding-x:
|
|
10246
|
-
$grid-column-menu-popup-padding-y:
|
|
10665
|
+
$grid-column-menu-popup-padding-x: null !default;
|
|
10666
|
+
$grid-column-menu-popup-padding-y: null !default;
|
|
10247
10667
|
|
|
10248
|
-
$grid-column-menu-item-padding-x: $padding-x
|
|
10249
|
-
$grid-column-menu-item-padding-y: $padding-y
|
|
10668
|
+
$grid-column-menu-item-padding-x: $menu-popup-item-padding-x !default;
|
|
10669
|
+
$grid-column-menu-item-padding-y: $menu-popup-item-padding-y !default;
|
|
10250
10670
|
|
|
10251
|
-
$grid-column-menu-list-item-padding-x: $padding-x
|
|
10252
|
-
$grid-column-menu-list-item-padding-y: $padding-y
|
|
10671
|
+
$grid-column-menu-list-item-padding-x: $list-item-padding-x !default;
|
|
10672
|
+
$grid-column-menu-list-item-padding-y: $list-item-padding-y !default;
|
|
10253
10673
|
|
|
10254
10674
|
$grid-column-menu-items-wrap-padding-x: 0 !default;
|
|
10255
10675
|
$grid-column-menu-items-wrap-padding-y: map-get( $spacing, 2 ) !default;
|
|
@@ -12032,6 +12452,7 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
12032
12452
|
.k-color-preview {
|
|
12033
12453
|
border-width: $color-preview-border-width;
|
|
12034
12454
|
border-radius: $color-preview-border-radius;
|
|
12455
|
+
box-sizing: border-box;
|
|
12035
12456
|
border-style: solid;
|
|
12036
12457
|
display: inline-flex;
|
|
12037
12458
|
flex-direction: row;
|
|
@@ -12039,21 +12460,62 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
12039
12460
|
position: relative;
|
|
12040
12461
|
overflow: hidden;
|
|
12041
12462
|
}
|
|
12042
|
-
|
|
12043
|
-
|
|
12463
|
+
|
|
12464
|
+
|
|
12465
|
+
// Current Color
|
|
12466
|
+
.k-coloreditor-current-color {
|
|
12467
|
+
cursor: pointer;
|
|
12468
|
+
}
|
|
12469
|
+
|
|
12470
|
+
|
|
12471
|
+
// Icon color preview
|
|
12472
|
+
.k-icon-color-preview {
|
|
12473
|
+
border-width: 0;
|
|
12474
|
+
border-radius: 0;
|
|
12475
|
+
display: flex;
|
|
12476
|
+
flex-flow: column nowrap;
|
|
12477
|
+
align-items: center;
|
|
12478
|
+
justify-content: center;
|
|
12479
|
+
gap: 2px;
|
|
12480
|
+
|
|
12481
|
+
.k-color-preview-mask {
|
|
12482
|
+
width: calc( #{$icon-size} - 2px );
|
|
12483
|
+
height: 2px;
|
|
12484
|
+
}
|
|
12485
|
+
}
|
|
12486
|
+
|
|
12487
|
+
|
|
12488
|
+
// Color Preview Mask
|
|
12489
|
+
.k-color-preview-mask {
|
|
12044
12490
|
width: 100%;
|
|
12045
12491
|
height: 100%;
|
|
12046
|
-
display: block;
|
|
12047
12492
|
position: relative;
|
|
12493
|
+
}
|
|
12494
|
+
.k-color-preview-mask::before {
|
|
12495
|
+
content: "";
|
|
12496
|
+
width: 100%;
|
|
12497
|
+
height: 100%;
|
|
12498
|
+
position: absolute;
|
|
12499
|
+
top: 0;
|
|
12500
|
+
left: 0;
|
|
12048
12501
|
z-index: -1;
|
|
12502
|
+
background: $color-preview-transparent-color-image;
|
|
12503
|
+
background-size: contain;
|
|
12504
|
+
background-position: 0 0;
|
|
12049
12505
|
}
|
|
12050
12506
|
|
|
12051
|
-
// Current Color
|
|
12052
|
-
.k-coloreditor-current-color {
|
|
12053
|
-
cursor: pointer;
|
|
12054
|
-
}
|
|
12055
12507
|
|
|
12056
12508
|
// No Color
|
|
12509
|
+
.k-no-color .k-color-preview-mask::before {
|
|
12510
|
+
content: "";
|
|
12511
|
+
background-color: $color-preview-no-color-bg;
|
|
12512
|
+
background-image: $color-preview-no-color-image;
|
|
12513
|
+
background-size: 100% 100%;
|
|
12514
|
+
background-position: 0 0;
|
|
12515
|
+
}
|
|
12516
|
+
|
|
12517
|
+
|
|
12518
|
+
// No Color (legacy)
|
|
12057
12519
|
.k-no-color::before {
|
|
12058
12520
|
content: "";
|
|
12059
12521
|
width: 100%;
|
|
@@ -12080,12 +12542,6 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
12080
12542
|
$color-preview-border
|
|
12081
12543
|
);
|
|
12082
12544
|
|
|
12083
|
-
&::before {
|
|
12084
|
-
background: $color-preview-transparent-color-image;
|
|
12085
|
-
background-size: contain;
|
|
12086
|
-
background-position: 0;
|
|
12087
|
-
}
|
|
12088
|
-
|
|
12089
12545
|
&:hover,
|
|
12090
12546
|
&.k-state-hover,
|
|
12091
12547
|
&.k-hover {
|
|
@@ -12093,14 +12549,6 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
12093
12549
|
}
|
|
12094
12550
|
}
|
|
12095
12551
|
|
|
12096
|
-
// No Color
|
|
12097
|
-
.k-no-color::before {
|
|
12098
|
-
background-color: $color-preview-no-color-bg;
|
|
12099
|
-
background-image: $color-preview-no-color-image;
|
|
12100
|
-
background-size: 100% 100%;
|
|
12101
|
-
background-position: 0 0;
|
|
12102
|
-
}
|
|
12103
|
-
|
|
12104
12552
|
}
|
|
12105
12553
|
|
|
12106
12554
|
// #endregion
|
|
@@ -13313,7 +13761,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13313
13761
|
.k-button {
|
|
13314
13762
|
|
|
13315
13763
|
&::after {
|
|
13316
|
-
@include border-radius(
|
|
13764
|
+
@include border-radius( inherit );
|
|
13317
13765
|
content: "";
|
|
13318
13766
|
opacity: 0;
|
|
13319
13767
|
display: none;
|
|
@@ -13336,12 +13784,6 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13336
13784
|
|
|
13337
13785
|
.k-ie {
|
|
13338
13786
|
|
|
13339
|
-
.k-button,
|
|
13340
|
-
.k-button-group {
|
|
13341
|
-
display: inline-block;
|
|
13342
|
-
overflow: visible; // IE9
|
|
13343
|
-
}
|
|
13344
|
-
|
|
13345
13787
|
.k-button-icontext {
|
|
13346
13788
|
|
|
13347
13789
|
.k-icon,
|
|
@@ -13806,12 +14248,26 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13806
14248
|
flex: 1 0 0%;
|
|
13807
14249
|
}
|
|
13808
14250
|
|
|
14251
|
+
|
|
13809
14252
|
// Template
|
|
13810
14253
|
.k-toolbar-template {
|
|
13811
14254
|
align-self: center;
|
|
13812
14255
|
align-items: center;
|
|
13813
14256
|
}
|
|
13814
14257
|
|
|
14258
|
+
|
|
14259
|
+
// Child components
|
|
14260
|
+
.k-textbox,
|
|
14261
|
+
.k-combobox,
|
|
14262
|
+
.k-dropdown,
|
|
14263
|
+
.k-searchbox,
|
|
14264
|
+
.k-numerictextbox,
|
|
14265
|
+
.k-datepicker,
|
|
14266
|
+
.k-timepicker,
|
|
14267
|
+
.k-datetimepicker {
|
|
14268
|
+
width: 10em;
|
|
14269
|
+
}
|
|
14270
|
+
|
|
13815
14271
|
}
|
|
13816
14272
|
|
|
13817
14273
|
|
|
@@ -13826,6 +14282,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13826
14282
|
|
|
13827
14283
|
// Angular specific
|
|
13828
14284
|
kendo-toolbar-renderer {
|
|
14285
|
+
display: inline-block;
|
|
13829
14286
|
border-color: inherit;
|
|
13830
14287
|
}
|
|
13831
14288
|
|
|
@@ -14392,10 +14849,6 @@ $fieldset-legend-border: null !default;
|
|
|
14392
14849
|
display: inline-flex;
|
|
14393
14850
|
width: 100%;
|
|
14394
14851
|
}
|
|
14395
|
-
|
|
14396
|
-
.k-editor .k-dropdown {
|
|
14397
|
-
width: $input-default-width;
|
|
14398
|
-
}
|
|
14399
14852
|
}
|
|
14400
14853
|
|
|
14401
14854
|
// Form Buttons Container
|
|
@@ -15482,485 +15935,8 @@ $textarea-invalid-focus-shadow: $invalid-shadow !default;
|
|
|
15482
15935
|
|
|
15483
15936
|
// #endregion
|
|
15484
15937
|
// #region @import "checkbox/_index.scss"; -> packages/bootstrap/scss/checkbox/_index.scss
|
|
15485
|
-
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
15486
|
-
// File already imported_once. Skipping output.
|
|
15487
|
-
// #endregion
|
|
15488
|
-
|
|
15489
|
-
|
|
15490
|
-
// Dependencies
|
|
15491
|
-
// #region @import "../list/_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
15492
15938
|
// File already imported_once. Skipping output.
|
|
15493
15939
|
// #endregion
|
|
15494
|
-
|
|
15495
|
-
|
|
15496
|
-
// Component
|
|
15497
|
-
// #region @import "_variables.scss"; -> packages/bootstrap/scss/checkbox/_variables.scss
|
|
15498
|
-
// Checkbox
|
|
15499
|
-
$checkbox-size: map-get( $spacing, 4 ) !default;
|
|
15500
|
-
$checkbox-radius: map-get( $spacing, 1 ) !default;
|
|
15501
|
-
$checkbox-border-width: 1px !default;
|
|
15502
|
-
$checkbox-line-height: calc( #{$checkbox-size} + #{$checkbox-border-width} ) !default;
|
|
15503
|
-
|
|
15504
|
-
$checkbox-bg: $component-bg !default;
|
|
15505
|
-
$checkbox-text: null !default;
|
|
15506
|
-
$checkbox-border: contrast-wcag( $input-bg, $gray-400, $gray-600 ) !default;
|
|
15507
|
-
|
|
15508
|
-
$checkbox-hovered-bg: null !default;
|
|
15509
|
-
$checkbox-hovered-text: null !default;
|
|
15510
|
-
$checkbox-hovered-border: null !default;
|
|
15511
|
-
|
|
15512
|
-
$checkbox-checked-bg: $primary !default;
|
|
15513
|
-
$checkbox-checked-text: contrast-wcag( $checkbox-checked-bg ) !default;
|
|
15514
|
-
$checkbox-checked-border: $checkbox-checked-bg !default;
|
|
15515
|
-
|
|
15516
|
-
$checkbox-indeterminate-bg: $checkbox-checked-bg !default;
|
|
15517
|
-
$checkbox-indeterminate-text: $checkbox-checked-text !default;
|
|
15518
|
-
$checkbox-indeterminate-border: $checkbox-checked-border !default;
|
|
15519
|
-
|
|
15520
|
-
$checkbox-focused-border: try-tint( $primary, 50% ) !default;
|
|
15521
|
-
$checkbox-focused-shadow: 0 0 0 .25rem rgba( $primary, .25 ) !default;
|
|
15522
|
-
$checkbox-focused-checked-border: $checkbox-checked-border !default;
|
|
15523
|
-
$checkbox-focused-checked-shadow: $checkbox-focused-shadow !default;
|
|
15524
|
-
|
|
15525
|
-
$checkbox-disabled-bg: null !default;
|
|
15526
|
-
$checkbox-disabled-text: null !default;
|
|
15527
|
-
$checkbox-disabled-border: null !default;
|
|
15528
|
-
|
|
15529
|
-
$checkbox-disabled-checked-bg: null !default;
|
|
15530
|
-
$checkbox-disabled-checked-text: null !default;
|
|
15531
|
-
$checkbox-disabled-checked-border: null !default;
|
|
15532
|
-
|
|
15533
|
-
$checkbox-invalid-bg: null !default;
|
|
15534
|
-
$checkbox-invalid-text: $invalid-text !default;
|
|
15535
|
-
$checkbox-invalid-border: $invalid-border !default;
|
|
15536
|
-
|
|
15537
|
-
|
|
15538
|
-
// Checkbox indicator
|
|
15539
|
-
$checkbox-icon-type: image !default;
|
|
15540
|
-
|
|
15541
|
-
$checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
15542
|
-
$checkbox-glyph-size: $checkbox-size !default;
|
|
15543
|
-
$checkbox-checked-glyph: "\e118" !default;
|
|
15544
|
-
$checkbox-indeterminate-glyph: "\e121" !default;
|
|
15545
|
-
|
|
15546
|
-
$checkbox-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$checkbox-checked-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/></svg>") ) !default;
|
|
15547
|
-
$checkbox-indeterminate-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$checkbox-indeterminate-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>") ) !default;
|
|
15548
|
-
|
|
15549
|
-
$checkbox-marker-checked-width: ( $checkbox-size / 2 ) !default;
|
|
15550
|
-
$checkbox-marker-checked-height: ( $checkbox-size / 2 ) !default;
|
|
15551
|
-
$checkbox-marker-indeterminate-width: ( $checkbox-size / 2 ) !default;
|
|
15552
|
-
$checkbox-marker-indeterminate-height: 2px !default;
|
|
15553
|
-
|
|
15554
|
-
|
|
15555
|
-
// Checkbox label
|
|
15556
|
-
$checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
15557
|
-
|
|
15558
|
-
|
|
15559
|
-
// Checkbox list
|
|
15560
|
-
$checkbox-list-margin: 0px !default;
|
|
15561
|
-
$checkbox-list-padding: 0px !default;
|
|
15562
|
-
$checkbox-list-item-padding-x: 0px !default;
|
|
15563
|
-
$checkbox-list-item-padding-y: $list-item-padding-y !default;
|
|
15564
|
-
$checkbox-list-horizontal-item-margin-x: 32px !default;
|
|
15565
|
-
|
|
15566
|
-
|
|
15567
|
-
// Checkbox ripple
|
|
15568
|
-
$checkbox-ripple-size: $checkbox-size * 3 !default;
|
|
15569
|
-
$checkbox-ripple-margin: calc(-1 * (#{$checkbox-size} + #{$checkbox-border-width})) !default;
|
|
15570
|
-
$checkbox-ripple-opacity: .3 !default;
|
|
15571
|
-
|
|
15572
|
-
// #endregion
|
|
15573
|
-
// #region @import "_layout.scss"; -> packages/bootstrap/scss/checkbox/_layout.scss
|
|
15574
|
-
// #region @import "~@progress/kendo-theme-default/scss/checkbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_layout.scss
|
|
15575
|
-
@include exports( "checkbox/layout" ) {
|
|
15576
|
-
|
|
15577
|
-
// Checkbox
|
|
15578
|
-
.k-checkbox {
|
|
15579
|
-
@include border-radius( $checkbox-radius );
|
|
15580
|
-
margin: 0;
|
|
15581
|
-
padding: 0;
|
|
15582
|
-
width: $checkbox-size;
|
|
15583
|
-
height: $checkbox-size;
|
|
15584
|
-
line-height: initial;
|
|
15585
|
-
border-width: $checkbox-border-width;
|
|
15586
|
-
border-style: solid;
|
|
15587
|
-
outline: 0;
|
|
15588
|
-
box-sizing: border-box;
|
|
15589
|
-
background-position: center;
|
|
15590
|
-
background-repeat: no-repeat;
|
|
15591
|
-
background-size: contain;
|
|
15592
|
-
display: inline-block;
|
|
15593
|
-
vertical-align: middle;
|
|
15594
|
-
position: relative;
|
|
15595
|
-
cursor: pointer;
|
|
15596
|
-
-webkit-appearance: none;
|
|
15597
|
-
}
|
|
15598
|
-
|
|
15599
|
-
// Checkbox indicator
|
|
15600
|
-
.k-checkbox::before {
|
|
15601
|
-
@if $checkbox-icon-type == "glyph" {
|
|
15602
|
-
content: $checkbox-checked-glyph;
|
|
15603
|
-
width: $checkbox-glyph-size;
|
|
15604
|
-
height: $checkbox-glyph-size;
|
|
15605
|
-
font-size: $checkbox-glyph-size;
|
|
15606
|
-
font-family: $checkbox-glyph-font-family;
|
|
15607
|
-
line-height: 1;
|
|
15608
|
-
transform: scale(0) translate(-50%, -50%);
|
|
15609
|
-
overflow: hidden;
|
|
15610
|
-
position: absolute;
|
|
15611
|
-
top: 50%;
|
|
15612
|
-
left: 50%;
|
|
15613
|
-
}
|
|
15614
|
-
|
|
15615
|
-
@if $checkbox-icon-type == "marker" {
|
|
15616
|
-
content: "";
|
|
15617
|
-
width: $checkbox-marker-checked-width;
|
|
15618
|
-
height: $checkbox-marker-checked-height;
|
|
15619
|
-
background-color: currentColor;
|
|
15620
|
-
transform: scale(0) translate(-50%, -50%);
|
|
15621
|
-
overflow: hidden;
|
|
15622
|
-
position: absolute;
|
|
15623
|
-
top: 50%;
|
|
15624
|
-
left: 50%;
|
|
15625
|
-
}
|
|
15626
|
-
}
|
|
15627
|
-
|
|
15628
|
-
|
|
15629
|
-
// Checked state
|
|
15630
|
-
.k-checkbox:checked,
|
|
15631
|
-
.k-checkbox.k-checked {
|
|
15632
|
-
@if $checkbox-icon-type == "image" {
|
|
15633
|
-
background-image: $checkbox-checked-image;
|
|
15634
|
-
}
|
|
15635
|
-
|
|
15636
|
-
@if $checkbox-icon-type == "glyph" {
|
|
15637
|
-
&::before {
|
|
15638
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15639
|
-
}
|
|
15640
|
-
}
|
|
15641
|
-
|
|
15642
|
-
@if $checkbox-icon-type == "marker" {
|
|
15643
|
-
&::before {
|
|
15644
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15645
|
-
}
|
|
15646
|
-
}
|
|
15647
|
-
}
|
|
15648
|
-
|
|
15649
|
-
|
|
15650
|
-
// Indeterminate state
|
|
15651
|
-
.k-checkbox:indeterminate,
|
|
15652
|
-
.k-checkbox.k-indeterminate,
|
|
15653
|
-
.k-checkbox.k-state-indeterminate {
|
|
15654
|
-
@if $checkbox-icon-type == "image" {
|
|
15655
|
-
background-image: $checkbox-indeterminate-image;
|
|
15656
|
-
}
|
|
15657
|
-
|
|
15658
|
-
@if $checkbox-icon-type == "glyph" {
|
|
15659
|
-
&::before {
|
|
15660
|
-
content: $checkbox-indeterminate-glyph;
|
|
15661
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15662
|
-
}
|
|
15663
|
-
}
|
|
15664
|
-
|
|
15665
|
-
@if $checkbox-icon-type == "marker" {
|
|
15666
|
-
&::before {
|
|
15667
|
-
width: $checkbox-maker-indeterminate-width;
|
|
15668
|
-
height: $checkbox-marker-indeterminate-height;
|
|
15669
|
-
transform: scale(1) translate(-50%, -50%);
|
|
15670
|
-
}
|
|
15671
|
-
}
|
|
15672
|
-
}
|
|
15673
|
-
|
|
15674
|
-
|
|
15675
|
-
// Disabled state
|
|
15676
|
-
.k-checkbox:disabled,
|
|
15677
|
-
.k-checkbox.k-disabled,
|
|
15678
|
-
.k-checkbox:disabled + .k-checkbox-label,
|
|
15679
|
-
.k-checkbox.k-disabled + .k-checkbox-label {
|
|
15680
|
-
@include disabled( $disabled-styling );
|
|
15681
|
-
}
|
|
15682
|
-
|
|
15683
|
-
// Checkbox label
|
|
15684
|
-
.k-checkbox-label {
|
|
15685
|
-
margin: 0;
|
|
15686
|
-
padding: 0;
|
|
15687
|
-
line-height: $checkbox-line-height;
|
|
15688
|
-
display: inline-flex;
|
|
15689
|
-
align-items: flex-start;
|
|
15690
|
-
vertical-align: middle;
|
|
15691
|
-
position: relative;
|
|
15692
|
-
cursor: pointer;
|
|
15693
|
-
|
|
15694
|
-
.k-label {
|
|
15695
|
-
cursor: pointer;
|
|
15696
|
-
}
|
|
15697
|
-
|
|
15698
|
-
.k-ripple {
|
|
15699
|
-
top: $checkbox-size / 2;
|
|
15700
|
-
left: $checkbox-size / 2;
|
|
15701
|
-
right: auto;
|
|
15702
|
-
bottom: auto;
|
|
15703
|
-
width: $checkbox-size * 5 / 2;
|
|
15704
|
-
height: $checkbox-size * 5 / 2;
|
|
15705
|
-
transform: translate(-50%, -50%);
|
|
15706
|
-
border-radius: 50%;
|
|
15707
|
-
|
|
15708
|
-
// Hide ripple temporarily
|
|
15709
|
-
visibility: hidden !important; // sass-lint:disable-line no-important
|
|
15710
|
-
}
|
|
15711
|
-
|
|
15712
|
-
.k-ripple-blob {
|
|
15713
|
-
// sass-lint:disable-block no-important
|
|
15714
|
-
// use !important until ripple can apply these styles from the script
|
|
15715
|
-
top: 50% !important;
|
|
15716
|
-
left: 50% !important;
|
|
15717
|
-
width: 200% !important;
|
|
15718
|
-
height: 200% !important;
|
|
15719
|
-
}
|
|
15720
|
-
}
|
|
15721
|
-
.k-checkbox + .k-checkbox-label {
|
|
15722
|
-
display: inline;
|
|
15723
|
-
}
|
|
15724
|
-
.k-checkbox + .k-checkbox-label,
|
|
15725
|
-
.k-checkbox-label + .k-checkbox {
|
|
15726
|
-
margin-left: $checkbox-label-margin-x;
|
|
15727
|
-
}
|
|
15728
|
-
.k-checkbox-label > .k-checkbox {
|
|
15729
|
-
margin-right: $checkbox-label-margin-x;
|
|
15730
|
-
flex-shrink: 0;
|
|
15731
|
-
}
|
|
15732
|
-
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
15733
|
-
margin-right: 0;
|
|
15734
|
-
}
|
|
15735
|
-
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
15736
|
-
margin-right: $checkbox-label-margin-x;
|
|
15737
|
-
}
|
|
15738
|
-
kendo-label.k-checkbox-label > .k-label {
|
|
15739
|
-
display: inline;
|
|
15740
|
-
}
|
|
15741
|
-
|
|
15742
|
-
|
|
15743
|
-
// Empty label
|
|
15744
|
-
.k-checkbox-label:empty {
|
|
15745
|
-
display: none;
|
|
15746
|
-
}
|
|
15747
|
-
|
|
15748
|
-
|
|
15749
|
-
// Label with no text
|
|
15750
|
-
.k-checkbox-label.k-no-text {
|
|
15751
|
-
min-width: 1px;
|
|
15752
|
-
}
|
|
15753
|
-
|
|
15754
|
-
|
|
15755
|
-
// Checkbox list
|
|
15756
|
-
.k-checkbox-list {
|
|
15757
|
-
margin: $checkbox-list-margin;
|
|
15758
|
-
padding: $checkbox-list-padding;
|
|
15759
|
-
list-style: none;
|
|
15760
|
-
|
|
15761
|
-
.k-checkbox-item {
|
|
15762
|
-
padding: $checkbox-list-item-padding-y $checkbox-list-item-padding-x;
|
|
15763
|
-
}
|
|
15764
|
-
}
|
|
15765
|
-
|
|
15766
|
-
.k-list-horizontal {
|
|
15767
|
-
.k-checkbox-item {
|
|
15768
|
-
display: inline-block;
|
|
15769
|
-
margin: 0 $checkbox-list-horizontal-item-margin-x 0 0;
|
|
15770
|
-
|
|
15771
|
-
&:last-child {
|
|
15772
|
-
margin-right: 0;
|
|
15773
|
-
}
|
|
15774
|
-
}
|
|
15775
|
-
}
|
|
15776
|
-
|
|
15777
|
-
|
|
15778
|
-
// RTL
|
|
15779
|
-
.k-rtl,
|
|
15780
|
-
[dir="rtl"] {
|
|
15781
|
-
.k-checkbox + .k-checkbox-label,
|
|
15782
|
-
.k-checkbox-label + .k-checkbox {
|
|
15783
|
-
margin-left: 0;
|
|
15784
|
-
margin-right: $checkbox-label-margin-x;
|
|
15785
|
-
}
|
|
15786
|
-
.k-checkbox-label > .k-checkbox {
|
|
15787
|
-
margin-right: 0;
|
|
15788
|
-
margin-left: $checkbox-label-margin-x;
|
|
15789
|
-
}
|
|
15790
|
-
kendo-label.k-checkbox-label > .k-checkbox:last-child {
|
|
15791
|
-
margin-left: 0;
|
|
15792
|
-
}
|
|
15793
|
-
kendo-label.k-checkbox-label > .k-label:first-child {
|
|
15794
|
-
margin-right: 0;
|
|
15795
|
-
margin-left: $checkbox-label-margin-x;
|
|
15796
|
-
}
|
|
15797
|
-
|
|
15798
|
-
.k-list-horizontal {
|
|
15799
|
-
.k-checkbox-item {
|
|
15800
|
-
margin-right: 0;
|
|
15801
|
-
margin-left: $checkbox-list-horizontal-item-margin-x;
|
|
15802
|
-
|
|
15803
|
-
&:last-child {
|
|
15804
|
-
margin-left: 0;
|
|
15805
|
-
}
|
|
15806
|
-
}
|
|
15807
|
-
}
|
|
15808
|
-
}
|
|
15809
|
-
|
|
15810
|
-
.k-ripple-container {
|
|
15811
|
-
.k-checkbox::after {
|
|
15812
|
-
content: "";
|
|
15813
|
-
display: block;
|
|
15814
|
-
position: absolute;
|
|
15815
|
-
left: 0;
|
|
15816
|
-
top: 0;
|
|
15817
|
-
width: $checkbox-ripple-size;
|
|
15818
|
-
height: $checkbox-ripple-size;
|
|
15819
|
-
margin-left: $checkbox-ripple-margin;
|
|
15820
|
-
margin-top: $checkbox-ripple-margin;
|
|
15821
|
-
border-radius: 100%;
|
|
15822
|
-
z-index: 1;
|
|
15823
|
-
transform: scale(0);
|
|
15824
|
-
}
|
|
15825
|
-
|
|
15826
|
-
.k-checkbox:disabled::after,
|
|
15827
|
-
.k-checkbox.k-disabled::after {
|
|
15828
|
-
display: none;
|
|
15829
|
-
}
|
|
15830
|
-
}
|
|
15831
|
-
|
|
15832
|
-
}
|
|
15833
|
-
|
|
15834
|
-
|
|
15835
|
-
|
|
15836
|
-
|
|
15837
|
-
@include exports( "checkbox/layout/edge" ) {
|
|
15838
|
-
|
|
15839
|
-
.k-checkbox::-ms-check {
|
|
15840
|
-
border-width: 1px;
|
|
15841
|
-
border-color: inherit;
|
|
15842
|
-
color: inherit;
|
|
15843
|
-
background-color: inherit;
|
|
15844
|
-
}
|
|
15845
|
-
|
|
15846
|
-
}
|
|
15847
|
-
|
|
15848
|
-
// #endregion
|
|
15849
|
-
|
|
15850
|
-
// #endregion
|
|
15851
|
-
// #region @import "_theme.scss"; -> packages/bootstrap/scss/checkbox/_theme.scss
|
|
15852
|
-
// #region @import "~@progress/kendo-theme-default/scss/checkbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss
|
|
15853
|
-
@include exports("checkbox/theme") {
|
|
15854
|
-
|
|
15855
|
-
// Checkbox
|
|
15856
|
-
.k-checkbox {
|
|
15857
|
-
@include fill(
|
|
15858
|
-
$checkbox-text,
|
|
15859
|
-
$checkbox-bg,
|
|
15860
|
-
$checkbox-border
|
|
15861
|
-
);
|
|
15862
|
-
}
|
|
15863
|
-
|
|
15864
|
-
|
|
15865
|
-
// Hover state
|
|
15866
|
-
.k-checkbox:hover,
|
|
15867
|
-
.k-checkbox.k-state-hover {
|
|
15868
|
-
@include fill(
|
|
15869
|
-
$checkbox-hovered-text,
|
|
15870
|
-
$checkbox-hovered-bg,
|
|
15871
|
-
$checkbox-hovered-border
|
|
15872
|
-
);
|
|
15873
|
-
}
|
|
15874
|
-
|
|
15875
|
-
|
|
15876
|
-
// Focus state
|
|
15877
|
-
.k-checkbox:focus,
|
|
15878
|
-
.k-checkbox.k-state-focus {
|
|
15879
|
-
@include fill( $border: $checkbox-focused-border );
|
|
15880
|
-
@include box-shadow( $checkbox-focused-shadow );
|
|
15881
|
-
}
|
|
15882
|
-
|
|
15883
|
-
|
|
15884
|
-
// Indeterminate
|
|
15885
|
-
.k-checkbox:indeterminate,
|
|
15886
|
-
.k-checkbox.k-state-indeterminate,
|
|
15887
|
-
.k-checkbox.k-indeterminate {
|
|
15888
|
-
@include fill(
|
|
15889
|
-
$checkbox-indeterminate-text,
|
|
15890
|
-
$checkbox-indeterminate-bg,
|
|
15891
|
-
$checkbox-indeterminate-border
|
|
15892
|
-
);
|
|
15893
|
-
}
|
|
15894
|
-
|
|
15895
|
-
|
|
15896
|
-
// Checked
|
|
15897
|
-
.k-checkbox:checked,
|
|
15898
|
-
.k-checkbox.k-checked {
|
|
15899
|
-
@include fill(
|
|
15900
|
-
$checkbox-checked-text,
|
|
15901
|
-
$checkbox-checked-bg,
|
|
15902
|
-
$checkbox-checked-border
|
|
15903
|
-
);
|
|
15904
|
-
}
|
|
15905
|
-
.k-checkbox:checked:focus,
|
|
15906
|
-
.k-checkbox.k-checked.k-state-focus {
|
|
15907
|
-
@include fill( $border: $checkbox-focused-checked-border );
|
|
15908
|
-
@include box-shadow( $checkbox-focused-checked-shadow );
|
|
15909
|
-
}
|
|
15910
|
-
|
|
15911
|
-
|
|
15912
|
-
// Disabled
|
|
15913
|
-
.k-checkbox:disabled,
|
|
15914
|
-
.k-checkbox.k-disabled {
|
|
15915
|
-
@include fill(
|
|
15916
|
-
$checkbox-disabled-text,
|
|
15917
|
-
$checkbox-disabled-bg,
|
|
15918
|
-
$checkbox-disabled-border
|
|
15919
|
-
);
|
|
15920
|
-
}
|
|
15921
|
-
.k-checkbox:checked:disabled,
|
|
15922
|
-
.k-checkbox:indeterminate:disabled,
|
|
15923
|
-
.k-checkbox.k-state-indeterminate:disabled,
|
|
15924
|
-
.k-checkbox.k-checked.k-disabled,
|
|
15925
|
-
.k-checkbox.k-indeterminate.k-disabled {
|
|
15926
|
-
@include fill(
|
|
15927
|
-
$checkbox-disabled-checked-text,
|
|
15928
|
-
$checkbox-disabled-checked-bg,
|
|
15929
|
-
$checkbox-disabled-checked-border
|
|
15930
|
-
);
|
|
15931
|
-
}
|
|
15932
|
-
|
|
15933
|
-
|
|
15934
|
-
// Invalid
|
|
15935
|
-
.k-checkbox.k-invalid,
|
|
15936
|
-
.k-checkbox.k-state-invalid,
|
|
15937
|
-
.k-checkbox.ng-invalid.ng-touched,
|
|
15938
|
-
.k-checkbox.ng-invalid.ng-dirty {
|
|
15939
|
-
@include fill( $border: $checkbox-invalid-border );
|
|
15940
|
-
}
|
|
15941
|
-
.k-checkbox.k-invalid + .k-checkbox-label,
|
|
15942
|
-
.k-checkbox.k-state-invalid + .k-checkbox-label,
|
|
15943
|
-
.k-checkbox.ng-invalid.ng-touched + .k-checkbox-label,
|
|
15944
|
-
.k-checkbox.ng-invalid.ng-dirty + .k-checkbox-label {
|
|
15945
|
-
@include fill( $color: $checkbox-invalid-text );
|
|
15946
|
-
}
|
|
15947
|
-
|
|
15948
|
-
|
|
15949
|
-
// Ripple
|
|
15950
|
-
.k-ripple-container {
|
|
15951
|
-
.k-checkbox::after {
|
|
15952
|
-
background: $checkbox-checked-bg;
|
|
15953
|
-
opacity: $checkbox-ripple-opacity;
|
|
15954
|
-
}
|
|
15955
|
-
}
|
|
15956
|
-
|
|
15957
|
-
}
|
|
15958
|
-
|
|
15959
|
-
// #endregion
|
|
15960
|
-
|
|
15961
|
-
// #endregion
|
|
15962
|
-
|
|
15963
|
-
// #endregion
|
|
15964
15940
|
// #region @import "listbox/_index.scss"; -> packages/bootstrap/scss/listbox/_index.scss
|
|
15965
15941
|
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
15966
15942
|
// File already imported_once. Skipping output.
|
|
@@ -16495,6 +16471,9 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
16495
16471
|
|
|
16496
16472
|
|
|
16497
16473
|
// Dependencies
|
|
16474
|
+
// #region @import "../typography/_variables.scss"; -> packages/bootstrap/scss/typography/_variables.scss
|
|
16475
|
+
// File already imported_once. Skipping output.
|
|
16476
|
+
// #endregion
|
|
16498
16477
|
// #region @import "../list/_variables.scss"; -> packages/bootstrap/scss/list/_variables.scss
|
|
16499
16478
|
// File already imported_once. Skipping output.
|
|
16500
16479
|
// #endregion
|
|
@@ -16596,6 +16575,7 @@ $radio-ripple-opacity: .3 !default;
|
|
|
16596
16575
|
background-repeat: no-repeat;
|
|
16597
16576
|
background-size: contain;
|
|
16598
16577
|
display: inline-block;
|
|
16578
|
+
flex: none;
|
|
16599
16579
|
vertical-align: middle;
|
|
16600
16580
|
position: relative;
|
|
16601
16581
|
cursor: pointer;
|
|
@@ -16681,7 +16661,7 @@ $radio-ripple-opacity: .3 !default;
|
|
|
16681
16661
|
|
|
16682
16662
|
// Hide empty label
|
|
16683
16663
|
&:empty {
|
|
16684
|
-
display: none;
|
|
16664
|
+
display: none !important; // sass-lint:disable-line no-important
|
|
16685
16665
|
}
|
|
16686
16666
|
|
|
16687
16667
|
.k-ripple {
|
|
@@ -18908,19 +18888,19 @@ $autocomplete-disabled-shadow: null !default;
|
|
|
18908
18888
|
width: $input-default-width;
|
|
18909
18889
|
border-width: $input-border-width;
|
|
18910
18890
|
border-style: solid;
|
|
18911
|
-
outline: 0;
|
|
18912
18891
|
box-sizing: border-box;
|
|
18892
|
+
outline: 0;
|
|
18913
18893
|
font-family: $input-font-family;
|
|
18914
18894
|
font-size: $input-font-size;
|
|
18915
18895
|
line-height: $input-line-height;
|
|
18896
|
+
text-align: start;
|
|
18916
18897
|
white-space: nowrap;
|
|
18917
18898
|
display: inline-flex;
|
|
18918
18899
|
flex-flow: row nowrap;
|
|
18919
|
-
align-items: stretch;
|
|
18920
18900
|
vertical-align: middle;
|
|
18921
|
-
transition: all .1s ease; // sass-lint:disable-block no-transition-all
|
|
18922
18901
|
position: relative;
|
|
18923
|
-
|
|
18902
|
+
overflow: hidden;
|
|
18903
|
+
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
18924
18904
|
-webkit-touch-callout: none;
|
|
18925
18905
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
18926
18906
|
|
|
@@ -19991,9 +19971,9 @@ $coloreditor-header-padding-y: $coloreditor-spacer !default;
|
|
|
19991
19971
|
$coloreditor-header-padding-x: $coloreditor-header-padding-y !default;
|
|
19992
19972
|
$coloreditor-header-actions-gap: ( $coloreditor-spacer / 2 ) !default;
|
|
19993
19973
|
|
|
19994
|
-
$coloreditor-preview-gap:
|
|
19995
|
-
$coloreditor-color-preview-width:
|
|
19996
|
-
$coloreditor-color-preview-height:
|
|
19974
|
+
$coloreditor-preview-gap: map-get( $spacing, 1 ) !default;
|
|
19975
|
+
$coloreditor-color-preview-width: 32px !default;
|
|
19976
|
+
$coloreditor-color-preview-height: 12px !default;
|
|
19997
19977
|
|
|
19998
19978
|
$coloreditor-views-padding-y: $coloreditor-spacer !default;
|
|
19999
19979
|
$coloreditor-views-padding-x: $coloreditor-views-padding-y !default;
|
|
@@ -20031,8 +20011,12 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
20031
20011
|
}
|
|
20032
20012
|
|
|
20033
20013
|
.k-coloreditor-preview {
|
|
20034
|
-
|
|
20014
|
+
display: flex;
|
|
20015
|
+
flex-flow: column nowrap;
|
|
20016
|
+
align-items: stretch;
|
|
20017
|
+
justify-content: center;
|
|
20035
20018
|
gap: $coloreditor-preview-gap;
|
|
20019
|
+
position: relative;
|
|
20036
20020
|
z-index: 1;
|
|
20037
20021
|
}
|
|
20038
20022
|
.k-coloreditor-preview .k-color-preview {
|
|
@@ -20191,6 +20175,12 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
20191
20175
|
position: relative;
|
|
20192
20176
|
overflow: hidden;
|
|
20193
20177
|
}
|
|
20178
|
+
.k-color-preview {
|
|
20179
|
+
margin: $button-padding-y;
|
|
20180
|
+
width: calc( #{$button-inner-calc-size} - #{$button-padding-y * 2} );
|
|
20181
|
+
height: calc( #{$button-inner-calc-size} - #{$button-padding-y * 2} );
|
|
20182
|
+
z-index: 1;
|
|
20183
|
+
}
|
|
20194
20184
|
|
|
20195
20185
|
.k-tool-icon {
|
|
20196
20186
|
padding: $button-padding-y;
|
|
@@ -21224,6 +21214,7 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
21224
21214
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/dropdowngrid/_layout.scss
|
|
21225
21215
|
// #region @import "~@progress/kendo-theme-default/scss/dropdowngrid/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/dropdowngrid/_layout.scss
|
|
21226
21216
|
@include exports("dropdowngrid/layout") {
|
|
21217
|
+
|
|
21227
21218
|
.k-dropdowngrid-popup {
|
|
21228
21219
|
overflow: hidden;
|
|
21229
21220
|
}
|
|
@@ -21579,70 +21570,55 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
21579
21570
|
|
|
21580
21571
|
// Dropdown list
|
|
21581
21572
|
.k-dropdown {
|
|
21573
|
+
@include border-radius( $input-border-radius );
|
|
21582
21574
|
width: $input-default-width;
|
|
21583
|
-
border-width:
|
|
21584
|
-
|
|
21585
|
-
background: none;
|
|
21575
|
+
border-width: $input-border-width;
|
|
21576
|
+
border-style: solid;
|
|
21586
21577
|
box-sizing: border-box;
|
|
21578
|
+
outline: 0;
|
|
21587
21579
|
font-family: $input-font-family;
|
|
21588
21580
|
font-size: $input-font-size;
|
|
21589
21581
|
line-height: $input-line-height;
|
|
21590
|
-
text-align:
|
|
21582
|
+
text-align: start;
|
|
21591
21583
|
white-space: nowrap;
|
|
21592
21584
|
display: inline-flex;
|
|
21585
|
+
flex-flow: row nowrap;
|
|
21593
21586
|
vertical-align: middle;
|
|
21594
21587
|
position: relative;
|
|
21588
|
+
overflow: hidden;
|
|
21589
|
+
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
21595
21590
|
-webkit-touch-callout: none;
|
|
21596
21591
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
21597
21592
|
|
|
21598
|
-
.k-dropdown-wrap {
|
|
21599
|
-
@include border-radius( $input-border-radius );
|
|
21600
|
-
padding: 0;
|
|
21601
|
-
width: 100%;
|
|
21602
|
-
display: flex;
|
|
21603
|
-
flex-flow: row nowrap;
|
|
21604
|
-
border-width: 1px;
|
|
21605
|
-
border-style: solid;
|
|
21606
|
-
box-sizing: border-box;
|
|
21607
|
-
position: relative;
|
|
21608
|
-
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
21609
|
-
cursor: pointer;
|
|
21610
|
-
outline: 0;
|
|
21611
|
-
overflow: hidden;
|
|
21612
|
-
|
|
21613
21593
|
|
|
21614
|
-
|
|
21615
|
-
|
|
21594
|
+
// Input
|
|
21595
|
+
.k-input {}
|
|
21616
21596
|
|
|
21617
21597
|
|
|
21618
|
-
|
|
21619
|
-
|
|
21620
|
-
|
|
21621
|
-
|
|
21622
|
-
border-width: 0;
|
|
21623
|
-
border-inline-start-width: $picker-select-border-width;
|
|
21624
|
-
border-color: transparent;
|
|
21625
|
-
box-sizing: border-box;
|
|
21626
|
-
border-style: solid;
|
|
21627
|
-
display: flex;
|
|
21628
|
-
align-items: center;
|
|
21629
|
-
justify-content: center;
|
|
21630
|
-
flex: 0 0 auto;
|
|
21631
|
-
text-align: center;
|
|
21632
|
-
cursor: pointer;
|
|
21633
|
-
}
|
|
21598
|
+
// Loading icon
|
|
21599
|
+
.k-i-loading {
|
|
21600
|
+
width: $input-icon-width;
|
|
21601
|
+
height: $input-icon-height;
|
|
21634
21602
|
}
|
|
21635
21603
|
|
|
21636
|
-
}
|
|
21637
|
-
|
|
21638
21604
|
|
|
21639
|
-
|
|
21640
|
-
|
|
21641
|
-
|
|
21642
|
-
|
|
21643
|
-
|
|
21644
|
-
|
|
21645
|
-
|
|
21605
|
+
// Select
|
|
21606
|
+
.k-select {
|
|
21607
|
+
padding: $picker-select-padding-y $picker-select-padding-x;
|
|
21608
|
+
width: if( $use-picker-select-width, $spinner-width, null );
|
|
21609
|
+
border-width: 0;
|
|
21610
|
+
border-inline-start-width: $picker-select-border-width;
|
|
21611
|
+
border-style: solid;
|
|
21612
|
+
border-color: transparent;
|
|
21613
|
+
box-sizing: border-box;
|
|
21614
|
+
outline: 0;
|
|
21615
|
+
display: flex;
|
|
21616
|
+
flex-flow: row nowrap;
|
|
21617
|
+
align-items: center;
|
|
21618
|
+
justify-content: center;
|
|
21619
|
+
flex: 0 0 auto;
|
|
21620
|
+
cursor: pointer;
|
|
21621
|
+
}
|
|
21646
21622
|
}
|
|
21647
21623
|
|
|
21648
21624
|
|
|
@@ -21651,16 +21627,13 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
21651
21627
|
.k-dropdown-operator {
|
|
21652
21628
|
width: auto;
|
|
21653
21629
|
|
|
21654
|
-
.k-
|
|
21655
|
-
|
|
21656
|
-
|
|
21657
|
-
|
|
21658
|
-
|
|
21659
|
-
|
|
21660
|
-
height: $button-inner-calc-size;
|
|
21661
|
-
}
|
|
21630
|
+
.k-input {
|
|
21631
|
+
display: none;
|
|
21632
|
+
}
|
|
21633
|
+
.k-select {
|
|
21634
|
+
width: $button-inner-calc-size;
|
|
21635
|
+
height: $button-inner-calc-size;
|
|
21662
21636
|
}
|
|
21663
|
-
|
|
21664
21637
|
}
|
|
21665
21638
|
|
|
21666
21639
|
|
|
@@ -21682,14 +21655,11 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
21682
21655
|
|
|
21683
21656
|
// #endregion
|
|
21684
21657
|
|
|
21685
|
-
@include exports("dropdownlist/layout/bootstrap") {
|
|
21658
|
+
@include exports( "dropdownlist/layout/bootstrap" ) {
|
|
21686
21659
|
|
|
21687
|
-
// Dropdown
|
|
21660
|
+
// Dropdown list
|
|
21688
21661
|
.k-dropdown {
|
|
21689
|
-
|
|
21690
|
-
.k-dropdown-wrap {
|
|
21691
|
-
transition: $transition;
|
|
21692
|
-
}
|
|
21662
|
+
transition: $transition;
|
|
21693
21663
|
}
|
|
21694
21664
|
|
|
21695
21665
|
}
|
|
@@ -21699,79 +21669,8 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
21699
21669
|
// #region @import "~@progress/kendo-theme-default/scss/dropdownlist/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/dropdownlist/_theme.scss
|
|
21700
21670
|
@include exports( "dropdownlist/theme" ) {
|
|
21701
21671
|
|
|
21672
|
+
// Dropdown list
|
|
21702
21673
|
.k-dropdown {
|
|
21703
|
-
|
|
21704
|
-
.k-dropdown-wrap {
|
|
21705
|
-
@include fill(
|
|
21706
|
-
$dropdownlist-text,
|
|
21707
|
-
$dropdownlist-bg,
|
|
21708
|
-
$dropdownlist-border,
|
|
21709
|
-
$dropdownlist-gradient
|
|
21710
|
-
);
|
|
21711
|
-
|
|
21712
|
-
// Hover state
|
|
21713
|
-
&:hover,
|
|
21714
|
-
&.k-state-hover {
|
|
21715
|
-
@include fill(
|
|
21716
|
-
$dropdownlist-hovered-text,
|
|
21717
|
-
$dropdownlist-hovered-bg,
|
|
21718
|
-
$dropdownlist-hovered-border,
|
|
21719
|
-
$dropdownlist-hovered-gradient
|
|
21720
|
-
);
|
|
21721
|
-
}
|
|
21722
|
-
|
|
21723
|
-
&.k-state-active {}
|
|
21724
|
-
|
|
21725
|
-
// Focused state
|
|
21726
|
-
&.k-state-focused {
|
|
21727
|
-
@include fill(
|
|
21728
|
-
$dropdownlist-focused-text,
|
|
21729
|
-
$dropdownlist-focused-bg,
|
|
21730
|
-
$dropdownlist-focused-border,
|
|
21731
|
-
$dropdownlist-focused-gradient
|
|
21732
|
-
);
|
|
21733
|
-
@include box-shadow($dropdownlist-focused-shadow);
|
|
21734
|
-
}
|
|
21735
|
-
|
|
21736
|
-
// Invalid state
|
|
21737
|
-
&.k-invalid,
|
|
21738
|
-
&.k-invalid:hover,
|
|
21739
|
-
&.k-state-invalid {
|
|
21740
|
-
border-color: $invalid-border;
|
|
21741
|
-
|
|
21742
|
-
.k-input-validation-icon {
|
|
21743
|
-
color: $invalid-text;
|
|
21744
|
-
}
|
|
21745
|
-
|
|
21746
|
-
&:focus,
|
|
21747
|
-
&.k-state-focused {
|
|
21748
|
-
@include box-shadow($invalid-shadow);
|
|
21749
|
-
}
|
|
21750
|
-
}
|
|
21751
|
-
}
|
|
21752
|
-
|
|
21753
|
-
// Invalid
|
|
21754
|
-
&.k-state-invalid,
|
|
21755
|
-
&.ng-invalid.ng-touched,
|
|
21756
|
-
&.ng-invalid.ng-dirty {
|
|
21757
|
-
> .k-dropdown-wrap {
|
|
21758
|
-
border-color: $invalid-border;
|
|
21759
|
-
|
|
21760
|
-
.k-input-validation-icon {
|
|
21761
|
-
color: $invalid-text;
|
|
21762
|
-
}
|
|
21763
|
-
|
|
21764
|
-
&:focus,
|
|
21765
|
-
&.k-state-focused {
|
|
21766
|
-
@include box-shadow($invalid-shadow);
|
|
21767
|
-
}
|
|
21768
|
-
}
|
|
21769
|
-
}
|
|
21770
|
-
|
|
21771
|
-
}
|
|
21772
|
-
|
|
21773
|
-
// Native select
|
|
21774
|
-
select.k-dropdown {
|
|
21775
21674
|
@include fill(
|
|
21776
21675
|
$dropdownlist-text,
|
|
21777
21676
|
$dropdownlist-bg,
|
|
@@ -21780,7 +21679,8 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
21780
21679
|
);
|
|
21781
21680
|
|
|
21782
21681
|
// Hover state
|
|
21783
|
-
&:hover
|
|
21682
|
+
&:hover,
|
|
21683
|
+
&.k-state-hover {
|
|
21784
21684
|
@include fill(
|
|
21785
21685
|
$dropdownlist-hovered-text,
|
|
21786
21686
|
$dropdownlist-hovered-bg,
|
|
@@ -21789,8 +21689,18 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
21789
21689
|
);
|
|
21790
21690
|
}
|
|
21791
21691
|
|
|
21792
|
-
//
|
|
21793
|
-
&:focus
|
|
21692
|
+
// Focus state
|
|
21693
|
+
&:focus,
|
|
21694
|
+
&.k-state-focus {
|
|
21695
|
+
@include fill(
|
|
21696
|
+
$dropdownlist-focused-text,
|
|
21697
|
+
$dropdownlist-focused-bg,
|
|
21698
|
+
$dropdownlist-focused-border,
|
|
21699
|
+
$dropdownlist-focused-gradient
|
|
21700
|
+
);
|
|
21701
|
+
@include box-shadow($dropdownlist-focused-shadow);
|
|
21702
|
+
}
|
|
21703
|
+
&:focus-within {
|
|
21794
21704
|
@include fill(
|
|
21795
21705
|
$dropdownlist-focused-text,
|
|
21796
21706
|
$dropdownlist-focused-bg,
|
|
@@ -21799,6 +21709,24 @@ $dropdownlist-focused-shadow: $button-focused-shadow !default;
|
|
|
21799
21709
|
);
|
|
21800
21710
|
@include box-shadow($dropdownlist-focused-shadow);
|
|
21801
21711
|
}
|
|
21712
|
+
|
|
21713
|
+
|
|
21714
|
+
// Invalid state
|
|
21715
|
+
&.k-invalid,
|
|
21716
|
+
&.ng-invalid,
|
|
21717
|
+
&.k-state-invalid {
|
|
21718
|
+
border-color: $invalid-border;
|
|
21719
|
+
|
|
21720
|
+
.k-input-validation-icon {
|
|
21721
|
+
color: $invalid-text;
|
|
21722
|
+
}
|
|
21723
|
+
|
|
21724
|
+
&:focus-within,
|
|
21725
|
+
&.k-state-focus {
|
|
21726
|
+
@include box-shadow($invalid-shadow);
|
|
21727
|
+
}
|
|
21728
|
+
}
|
|
21729
|
+
|
|
21802
21730
|
}
|
|
21803
21731
|
|
|
21804
21732
|
}
|
|
@@ -22697,56 +22625,42 @@ $dropdowntree-filter-spacer: 0px !default;
|
|
|
22697
22625
|
// #endregion
|
|
22698
22626
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/maskedtextbox/_layout.scss
|
|
22699
22627
|
// #region @import "~@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss
|
|
22700
|
-
@include exports("maskedtextbox/layout") {
|
|
22628
|
+
@include exports( "maskedtextbox/layout" ) {
|
|
22701
22629
|
|
|
22702
22630
|
// Masked textbox
|
|
22703
22631
|
.k-maskedtextbox {
|
|
22632
|
+
@include border-radius( $input-border-radius );
|
|
22704
22633
|
width: $input-default-width;
|
|
22634
|
+
border-width: $input-border-width;
|
|
22635
|
+
border-style: solid;
|
|
22636
|
+
box-sizing: border-box;
|
|
22637
|
+
outline: 0;
|
|
22705
22638
|
font-family: $input-font-family;
|
|
22706
22639
|
font-size: $input-font-size;
|
|
22707
22640
|
line-height: $input-line-height;
|
|
22708
|
-
|
|
22709
|
-
box-sizing: border-box;
|
|
22710
|
-
outline: 0;
|
|
22711
|
-
background: none;
|
|
22712
|
-
text-align: left;
|
|
22641
|
+
text-align: start;
|
|
22713
22642
|
white-space: nowrap;
|
|
22714
22643
|
display: inline-flex;
|
|
22644
|
+
flex-flow: row nowrap;
|
|
22715
22645
|
vertical-align: middle;
|
|
22716
22646
|
position: relative;
|
|
22647
|
+
overflow: hidden;
|
|
22648
|
+
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
22717
22649
|
-webkit-touch-callout: none;
|
|
22718
22650
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
22719
22651
|
|
|
22720
|
-
> .k-textbox {
|
|
22721
|
-
flex: 1 0 0%;
|
|
22722
|
-
min-width: 0;
|
|
22723
|
-
|
|
22724
|
-
&.k-state-invalid {
|
|
22725
|
-
transition: none;
|
|
22726
|
-
}
|
|
22727
|
-
}
|
|
22728
|
-
|
|
22729
|
-
.k-i-warning {
|
|
22730
|
-
position: absolute;
|
|
22731
|
-
top: 50%;
|
|
22732
|
-
transform: translateY(-50%);
|
|
22733
|
-
right: $padding-x;
|
|
22734
|
-
}
|
|
22735
22652
|
|
|
22736
|
-
|
|
22737
|
-
.k-
|
|
22738
|
-
text-align: right;
|
|
22653
|
+
// Input
|
|
22654
|
+
.k-input {}
|
|
22739
22655
|
|
|
22740
|
-
.k-i-warning {
|
|
22741
|
-
right: auto;
|
|
22742
|
-
left: $padding-x;
|
|
22743
|
-
}
|
|
22744
|
-
}
|
|
22745
22656
|
|
|
22746
|
-
|
|
22747
|
-
|
|
22657
|
+
// Loading icon
|
|
22658
|
+
.k-i-loading {
|
|
22659
|
+
width: $input-icon-width;
|
|
22660
|
+
height: $input-icon-height;
|
|
22748
22661
|
}
|
|
22749
22662
|
}
|
|
22663
|
+
|
|
22750
22664
|
}
|
|
22751
22665
|
|
|
22752
22666
|
// #endregion
|
|
@@ -22754,33 +22668,63 @@ $dropdowntree-filter-spacer: 0px !default;
|
|
|
22754
22668
|
// #endregion
|
|
22755
22669
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/maskedtextbox/_theme.scss
|
|
22756
22670
|
// #region @import "~@progress/kendo-theme-default/scss/maskedtextbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/maskedtextbox/_theme.scss
|
|
22757
|
-
@include exports("maskedtextbox/theme") {
|
|
22671
|
+
@include exports( "maskedtextbox/theme" ) {
|
|
22758
22672
|
|
|
22673
|
+
// Masked textbox
|
|
22759
22674
|
.k-maskedtextbox {
|
|
22675
|
+
@include fill(
|
|
22676
|
+
$input-text,
|
|
22677
|
+
$input-bg,
|
|
22678
|
+
$input-border
|
|
22679
|
+
);
|
|
22760
22680
|
|
|
22761
|
-
|
|
22762
|
-
|
|
22681
|
+
// Hover state
|
|
22682
|
+
&:hover,
|
|
22683
|
+
&.k-state-hover {
|
|
22684
|
+
@include fill(
|
|
22685
|
+
$input-hovered-text,
|
|
22686
|
+
$input-hovered-bg,
|
|
22687
|
+
$input-hovered-border
|
|
22688
|
+
);
|
|
22763
22689
|
}
|
|
22764
22690
|
|
|
22765
|
-
|
|
22766
|
-
|
|
22767
|
-
&.
|
|
22768
|
-
|
|
22769
|
-
|
|
22770
|
-
|
|
22691
|
+
// Focus state
|
|
22692
|
+
&:focus,
|
|
22693
|
+
&.k-state-focus {
|
|
22694
|
+
@include fill(
|
|
22695
|
+
$input-focused-text,
|
|
22696
|
+
$input-focused-bg,
|
|
22697
|
+
$input-focused-border
|
|
22698
|
+
);
|
|
22699
|
+
@include box-shadow( $input-focused-shadow );
|
|
22700
|
+
}
|
|
22701
|
+
&:focus-within {
|
|
22702
|
+
@include fill(
|
|
22703
|
+
$input-focused-text,
|
|
22704
|
+
$input-focused-bg,
|
|
22705
|
+
$input-focused-border
|
|
22706
|
+
);
|
|
22707
|
+
@include box-shadow( $input-focused-shadow );
|
|
22708
|
+
}
|
|
22709
|
+
|
|
22710
|
+
|
|
22711
|
+
// Invalid state
|
|
22712
|
+
&.k-invalid,
|
|
22713
|
+
&.ng-invalid,
|
|
22714
|
+
&.k-state-invalid {
|
|
22715
|
+
border-color: $invalid-border;
|
|
22771
22716
|
|
|
22772
22717
|
.k-input-validation-icon {
|
|
22773
22718
|
color: $invalid-text;
|
|
22774
22719
|
}
|
|
22775
22720
|
|
|
22776
|
-
&:focus,
|
|
22777
|
-
&.k-state-
|
|
22778
|
-
|
|
22779
|
-
@include box-shadow($invalid-shadow);
|
|
22780
|
-
}
|
|
22721
|
+
&:focus-within,
|
|
22722
|
+
&.k-state-focus {
|
|
22723
|
+
@include box-shadow($invalid-shadow);
|
|
22781
22724
|
}
|
|
22782
22725
|
}
|
|
22783
22726
|
}
|
|
22727
|
+
|
|
22784
22728
|
}
|
|
22785
22729
|
|
|
22786
22730
|
// #endregion
|
|
@@ -24442,6 +24386,19 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
24442
24386
|
border-width: 0 0 0 1px;
|
|
24443
24387
|
display: inline-block;
|
|
24444
24388
|
}
|
|
24389
|
+
|
|
24390
|
+
|
|
24391
|
+
// Appbar child components
|
|
24392
|
+
.k-textbox,
|
|
24393
|
+
.k-combobox,
|
|
24394
|
+
.k-dropdown,
|
|
24395
|
+
.k-searchbox,
|
|
24396
|
+
.k-numerictextbox,
|
|
24397
|
+
.k-datepicker,
|
|
24398
|
+
.k-timepicker,
|
|
24399
|
+
.k-datetimepicker {
|
|
24400
|
+
width: 10em;
|
|
24401
|
+
}
|
|
24445
24402
|
}
|
|
24446
24403
|
|
|
24447
24404
|
.k-appbar-static {
|
|
@@ -34424,14 +34381,10 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34424
34381
|
width: auto;
|
|
34425
34382
|
min-width: $form-line-height * 1em;
|
|
34426
34383
|
}
|
|
34427
|
-
|
|
34428
|
-
|
|
34429
|
-
|
|
34430
|
-
|
|
34431
|
-
width: 6 * $spacer;
|
|
34432
|
-
}
|
|
34433
|
-
[data-tool="format"] {
|
|
34434
|
-
width: 4 * $spacer;
|
|
34384
|
+
|
|
34385
|
+
.k-combobox,
|
|
34386
|
+
.k-dropdown {
|
|
34387
|
+
width: 5em;
|
|
34435
34388
|
}
|
|
34436
34389
|
}
|
|
34437
34390
|
|
|
@@ -38410,6 +38363,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38410
38363
|
}
|
|
38411
38364
|
|
|
38412
38365
|
// Toolbar
|
|
38366
|
+
.k-editor-toolbar,
|
|
38413
38367
|
.k-editor > .k-toolbar {
|
|
38414
38368
|
border-width: 0 0 $toolbar-border-width 0;
|
|
38415
38369
|
flex-shrink: 0;
|
|
@@ -38437,13 +38391,14 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38437
38391
|
top: 0;
|
|
38438
38392
|
right: 0;
|
|
38439
38393
|
visibility: hidden;
|
|
38440
|
-
|
|
38441
|
-
|
|
38442
|
-
|
|
38443
|
-
|
|
38444
|
-
|
|
38445
|
-
|
|
38446
|
-
|
|
38394
|
+
|
|
38395
|
+
.k-overflow-anchor {
|
|
38396
|
+
border-width: 0;
|
|
38397
|
+
padding: $toolbar-padding-y;
|
|
38398
|
+
width: $toolbar-inner-calc-size;
|
|
38399
|
+
height: $toolbar-inner-calc-size;
|
|
38400
|
+
position: relative;
|
|
38401
|
+
}
|
|
38447
38402
|
}
|
|
38448
38403
|
|
|
38449
38404
|
.k-editor-export {
|
|
@@ -38561,15 +38516,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38561
38516
|
}
|
|
38562
38517
|
}
|
|
38563
38518
|
|
|
38564
|
-
.k-editor-widget .k-colorpicker {}
|
|
38565
|
-
|
|
38566
|
-
.k-rtl .k-editor .k-editor-widget .k-dropdown-wrap {
|
|
38567
|
-
padding-left: 0;
|
|
38568
|
-
|
|
38569
|
-
.k-select {
|
|
38570
|
-
border-width: 0;
|
|
38571
|
-
}
|
|
38572
|
-
}
|
|
38573
38519
|
|
|
38574
38520
|
// Find and replace dialog
|
|
38575
38521
|
.k-editor-find-replace {
|
|
@@ -39152,6 +39098,7 @@ $imageeditor-content-border-width: 1px !default;
|
|
|
39152
39098
|
|
|
39153
39099
|
$imageeditor-action-pane-padding-y: map-get( $spacing, 8 ) !default;
|
|
39154
39100
|
$imageeditor-action-pane-padding-x: map-get( $spacing, 4 ) !default;
|
|
39101
|
+
$imageeditor-action-pane-width: if( $imageeditor-content-border-width == null, 240px, calc(240px + #{$imageeditor-content-border-width}) );
|
|
39155
39102
|
|
|
39156
39103
|
$imageeditor-crop-border-width: 1px !default;
|
|
39157
39104
|
$imageeditor-crop-border-style: dashed !default;
|
|
@@ -39234,16 +39181,16 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
39234
39181
|
|
|
39235
39182
|
// Action Pane
|
|
39236
39183
|
.k-imageeditor-action-pane {
|
|
39184
|
+
padding: $imageeditor-action-pane-padding-y $imageeditor-action-pane-padding-x;
|
|
39185
|
+
width: $imageeditor-action-pane-width;
|
|
39237
39186
|
border-width: 0;
|
|
39238
39187
|
border-left-width: $imageeditor-content-border-width;
|
|
39239
39188
|
border-style: solid;
|
|
39240
39189
|
border-color: inherit;
|
|
39241
|
-
|
|
39190
|
+
box-sizing: border-box;
|
|
39191
|
+
flex: none;
|
|
39242
39192
|
overflow-y: auto;
|
|
39243
39193
|
}
|
|
39244
|
-
.k-imageeditor-action-pane > .k-form {
|
|
39245
|
-
padding: $imageeditor-action-pane-padding-y $imageeditor-action-pane-padding-x;
|
|
39246
|
-
}
|
|
39247
39194
|
|
|
39248
39195
|
|
|
39249
39196
|
// Crop Tool
|
|
@@ -39333,10 +39280,6 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
39333
39280
|
flex-direction: row;
|
|
39334
39281
|
align-self: flex-start;
|
|
39335
39282
|
}
|
|
39336
|
-
|
|
39337
|
-
.k-imageeditor-action-pane {
|
|
39338
|
-
flex: 0 0 auto;
|
|
39339
|
-
}
|
|
39340
39283
|
}
|
|
39341
39284
|
|
|
39342
39285
|
}
|
|
@@ -41908,7 +41851,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41908
41851
|
.k-widget.k-recur-month,
|
|
41909
41852
|
.k-widget.k-recur-weekday,
|
|
41910
41853
|
.k-widget.k-recur-weekday-offset {
|
|
41911
|
-
width:
|
|
41854
|
+
width: 10em;
|
|
41912
41855
|
}
|
|
41913
41856
|
|
|
41914
41857
|
}
|
|
@@ -43339,6 +43282,11 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
|
|
|
43339
43282
|
width: 100% !important;
|
|
43340
43283
|
// sass-lint:enable no-important
|
|
43341
43284
|
box-shadow: none;
|
|
43285
|
+
|
|
43286
|
+
|
|
43287
|
+
.k-dropdown {
|
|
43288
|
+
width: auto;
|
|
43289
|
+
}
|
|
43342
43290
|
}
|
|
43343
43291
|
.k-mediaplayer-time-wrap {
|
|
43344
43292
|
flex: 1;
|
|
@@ -45722,35 +45670,32 @@ $map-marker-fill: $primary !default;
|
|
|
45722
45670
|
|
|
45723
45671
|
// Buttons
|
|
45724
45672
|
.k-button {
|
|
45725
|
-
margin: 0;
|
|
45726
45673
|
padding: 0;
|
|
45727
45674
|
width: auto;
|
|
45728
45675
|
height: auto;
|
|
45729
|
-
border-radius: 100%;
|
|
45730
45676
|
line-height: 1;
|
|
45731
45677
|
box-shadow: none;
|
|
45732
45678
|
position: absolute;
|
|
45733
|
-
|
|
45734
|
-
&:not(:hover) {
|
|
45735
|
-
border-color: transparent;
|
|
45736
|
-
background: none;
|
|
45737
|
-
}
|
|
45738
45679
|
}
|
|
45680
|
+
.k-navigator-n,
|
|
45739
45681
|
.k-navigator-up {
|
|
45740
45682
|
transform: translateX(-50%);
|
|
45741
45683
|
top: $map-navigator-padding;
|
|
45742
45684
|
left: 50%;
|
|
45743
45685
|
}
|
|
45686
|
+
.k-navigator-e,
|
|
45744
45687
|
.k-navigator-right {
|
|
45745
45688
|
transform: translateY(-50%);
|
|
45746
45689
|
right: $map-navigator-padding;
|
|
45747
45690
|
top: 50%;
|
|
45748
45691
|
}
|
|
45692
|
+
.k-navigator-s,
|
|
45749
45693
|
.k-navigator-down {
|
|
45750
45694
|
transform: translateX(-50%);
|
|
45751
45695
|
bottom: $map-navigator-padding;
|
|
45752
45696
|
left: 50%;
|
|
45753
45697
|
}
|
|
45698
|
+
.k-navigator-w,
|
|
45754
45699
|
.k-navigator-left {
|
|
45755
45700
|
transform: translateY(-50%);
|
|
45756
45701
|
left: $map-navigator-padding;
|