@progress/kendo-theme-default 4.43.1-dev.7 → 4.43.1-dev.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +5173 -4913
- package/dist/all.scss +1084 -742
- package/package.json +2 -2
- package/scss/action-buttons/_layout.scss +7 -0
- package/scss/action-sheet/_layout.scss +6 -0
- package/scss/appbar/_layout.scss +6 -1
- package/scss/autocomplete/_layout.scss +6 -0
- package/scss/avatar/_layout.scss +6 -0
- package/scss/badge/_layout.scss +6 -0
- package/scss/bottom-navigation/_layout.scss +6 -0
- package/scss/breadcrumb/_layout.scss +6 -0
- package/scss/button/_layout.scss +9 -3
- package/scss/captcha/_layout.scss +6 -0
- package/scss/card/_layout.scss +6 -0
- package/scss/chat/_layout.scss +3 -2
- package/scss/chip/_layout.scss +6 -0
- package/scss/color-preview/_layout.scss +6 -0
- package/scss/coloreditor/_layout.scss +6 -0
- package/scss/colorgradient/_layout.scss +6 -0
- package/scss/colorpalette/_layout.scss +6 -0
- package/scss/colorpicker/_layout.scss +6 -3
- package/scss/combobox/_layout.scss +6 -1
- package/scss/dateinput/_layout.scss +7 -1
- package/scss/datepicker/_layout.scss +6 -0
- package/scss/daterangepicker/_layout.scss +6 -0
- package/scss/datetimepicker/_layout.scss +6 -2
- package/scss/drawer/_layout.scss +6 -0
- package/scss/dropdownlist/_layout.scss +6 -1
- package/scss/expansion-panel/_layout.scss +6 -1
- package/scss/fab/_layout.scss +6 -0
- package/scss/filter/_layout.scss +8 -0
- package/scss/floating-label/_layout.scss +7 -0
- package/scss/imageeditor/_layout.scss +6 -0
- package/scss/list/_layout.scss +10 -13
- package/scss/list/_theme.scss +4 -4
- package/scss/map/_layout.scss +7 -0
- package/scss/maskedtextbox/_layout.scss +6 -0
- package/scss/mediaplayer/_layout.scss +6 -0
- package/scss/multiselect/_layout.scss +6 -0
- package/scss/notification/_layout.scss +6 -0
- package/scss/numerictextbox/_layout.scss +6 -2
- package/scss/orgchart/_layout.scss +6 -0
- package/scss/pager/_layout.scss +6 -2
- package/scss/panelbar/_layout.scss +6 -0
- package/scss/pivotgrid/_layout.scss +55 -83
- package/scss/pivotgrid/_theme.scss +39 -73
- package/scss/popover/_layout.scss +6 -0
- package/scss/progressbar/_layout.scss +6 -0
- package/scss/rating/_layout.scss +6 -1
- package/scss/scheduler/_layout.scss +6 -0
- package/scss/searchbox/_layout.scss +6 -0
- package/scss/slider/_layout.scss +6 -2
- package/scss/stepper/_layout.scss +6 -1
- package/scss/switch/_layout.scss +14 -9
- package/scss/switch/_variables.scss +127 -33
- package/scss/tabstrip/_layout.scss +11 -3
- package/scss/taskboard/_layout.scss +6 -2
- package/scss/textarea/_layout.scss +7 -1
- package/scss/textbox/_layout.scss +6 -0
- package/scss/timeline/_layout.scss +6 -4
- package/scss/timepicker/_layout.scss +6 -1
- package/scss/toolbar/_index.scss +1 -0
- package/scss/tooltip/_layout.scss +6 -1
- package/scss/treeview/_layout.scss +7 -2
- package/scss/upload/_layout.scss +6 -1
package/dist/all.scss
CHANGED
|
@@ -6543,7 +6543,7 @@ $checkbox-ripple-opacity: .25 !default;
|
|
|
6543
6543
|
display: flex;
|
|
6544
6544
|
align-items: center;
|
|
6545
6545
|
align-content: center;
|
|
6546
|
-
gap:
|
|
6546
|
+
gap: $icon-spacing;
|
|
6547
6547
|
cursor: default;
|
|
6548
6548
|
position: relative;
|
|
6549
6549
|
transition-property: color, background-color, outline-color, box-shadow;
|
|
@@ -6619,18 +6619,15 @@ $checkbox-ripple-opacity: .25 !default;
|
|
|
6619
6619
|
|
|
6620
6620
|
|
|
6621
6621
|
// No data
|
|
6622
|
-
.k-
|
|
6623
|
-
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
|
|
6631
|
-
text-align: center;
|
|
6632
|
-
white-space: normal;
|
|
6633
|
-
}
|
|
6622
|
+
.k-no-data {
|
|
6623
|
+
min-height: 140px;
|
|
6624
|
+
box-sizing: border-box;
|
|
6625
|
+
display: flex;
|
|
6626
|
+
align-items: center;
|
|
6627
|
+
justify-content: center;
|
|
6628
|
+
font-weight: lighter;
|
|
6629
|
+
text-align: center;
|
|
6630
|
+
white-space: normal;
|
|
6634
6631
|
}
|
|
6635
6632
|
|
|
6636
6633
|
|
|
@@ -6739,12 +6736,12 @@ $checkbox-ripple-opacity: .25 !default;
|
|
|
6739
6736
|
background: transparent;
|
|
6740
6737
|
}
|
|
6741
6738
|
|
|
6739
|
+
}
|
|
6742
6740
|
|
|
6743
|
-
// No data
|
|
6744
|
-
.k-no-data {
|
|
6745
|
-
color: $list-no-data-text;
|
|
6746
|
-
}
|
|
6747
6741
|
|
|
6742
|
+
// No data
|
|
6743
|
+
.k-no-data {
|
|
6744
|
+
color: $list-no-data-text;
|
|
6748
6745
|
}
|
|
6749
6746
|
|
|
6750
6747
|
}
|
|
@@ -7886,12 +7883,19 @@ $floating-label-focus-text: null !default;
|
|
|
7886
7883
|
.k-floating-label-container {
|
|
7887
7884
|
padding-top: $floating-label-height;
|
|
7888
7885
|
width: $input-default-width;
|
|
7886
|
+
box-sizing: border-box;
|
|
7889
7887
|
display: inline-flex;
|
|
7890
7888
|
vertical-align: middle;
|
|
7891
7889
|
position: relative;
|
|
7892
7890
|
flex-direction: column;
|
|
7893
7891
|
justify-content: stretch;
|
|
7894
7892
|
|
|
7893
|
+
*,
|
|
7894
|
+
*::before,
|
|
7895
|
+
*::after {
|
|
7896
|
+
box-sizing: border-box;
|
|
7897
|
+
}
|
|
7898
|
+
|
|
7895
7899
|
> .k-label {
|
|
7896
7900
|
max-width: 90%;
|
|
7897
7901
|
font-size: $floating-label-font-size;
|
|
@@ -8055,6 +8059,12 @@ $floating-label-focus-text: null !default;
|
|
|
8055
8059
|
-webkit-touch-callout: none;
|
|
8056
8060
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
8057
8061
|
|
|
8062
|
+
*,
|
|
8063
|
+
*::before,
|
|
8064
|
+
*::after {
|
|
8065
|
+
box-sizing: border-box;
|
|
8066
|
+
}
|
|
8067
|
+
|
|
8058
8068
|
|
|
8059
8069
|
// Input
|
|
8060
8070
|
.k-input {}
|
|
@@ -8074,7 +8084,6 @@ $floating-label-focus-text: null !default;
|
|
|
8074
8084
|
border-width: 0;
|
|
8075
8085
|
border-inline-start-width: $picker-select-border-width;
|
|
8076
8086
|
border-style: solid;
|
|
8077
|
-
box-sizing: border-box;
|
|
8078
8087
|
outline: 0;
|
|
8079
8088
|
display: flex;
|
|
8080
8089
|
flex-flow: row nowrap;
|
|
@@ -9053,6 +9062,12 @@ $avatar-theme-colors: $theme-colors !default;
|
|
|
9053
9062
|
justify-content: center;
|
|
9054
9063
|
vertical-align: middle;
|
|
9055
9064
|
overflow: hidden;
|
|
9065
|
+
|
|
9066
|
+
*,
|
|
9067
|
+
*::before,
|
|
9068
|
+
*::after {
|
|
9069
|
+
box-sizing: border-box;
|
|
9070
|
+
}
|
|
9056
9071
|
}
|
|
9057
9072
|
|
|
9058
9073
|
|
|
@@ -9221,6 +9236,12 @@ $badge-dot-size-lg: 12px !default;
|
|
|
9221
9236
|
vertical-align: middle;
|
|
9222
9237
|
overflow: hidden;
|
|
9223
9238
|
text-overflow: ellipsis;
|
|
9239
|
+
|
|
9240
|
+
*,
|
|
9241
|
+
*::before,
|
|
9242
|
+
*::after {
|
|
9243
|
+
box-sizing: border-box;
|
|
9244
|
+
}
|
|
9224
9245
|
}
|
|
9225
9246
|
.k-badge > * {
|
|
9226
9247
|
color: inherit;
|
|
@@ -9650,6 +9671,12 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
|
|
|
9650
9671
|
cursor: pointer;
|
|
9651
9672
|
user-select: none;
|
|
9652
9673
|
|
|
9674
|
+
*,
|
|
9675
|
+
*::before,
|
|
9676
|
+
*::after {
|
|
9677
|
+
box-sizing: border-box;
|
|
9678
|
+
}
|
|
9679
|
+
|
|
9653
9680
|
.k-selected-icon-wrapper {
|
|
9654
9681
|
display: none !important; // sass-lint:disable-line no-important
|
|
9655
9682
|
}
|
|
@@ -10236,6 +10263,12 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
10236
10263
|
flex-wrap: nowrap;
|
|
10237
10264
|
position: relative;
|
|
10238
10265
|
overflow: hidden;
|
|
10266
|
+
|
|
10267
|
+
*,
|
|
10268
|
+
*::before,
|
|
10269
|
+
*::after {
|
|
10270
|
+
box-sizing: border-box;
|
|
10271
|
+
}
|
|
10239
10272
|
}
|
|
10240
10273
|
|
|
10241
10274
|
|
|
@@ -11147,6 +11180,12 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11147
11180
|
-webkit-appearance: none;
|
|
11148
11181
|
position: relative;
|
|
11149
11182
|
|
|
11183
|
+
*,
|
|
11184
|
+
*::before,
|
|
11185
|
+
*::after {
|
|
11186
|
+
box-sizing: border-box;
|
|
11187
|
+
}
|
|
11188
|
+
|
|
11150
11189
|
&:disabled,
|
|
11151
11190
|
&.k-state-disabled {
|
|
11152
11191
|
@include disabled( $disabled-styling );
|
|
@@ -11189,15 +11228,15 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11189
11228
|
|
|
11190
11229
|
// Button arrow
|
|
11191
11230
|
.k-button-arrow {
|
|
11192
|
-
padding-left: $button-arrow-padding-
|
|
11193
|
-
padding-right: $button-arrow-padding-
|
|
11231
|
+
padding-left: $button-arrow-padding-x;
|
|
11232
|
+
padding-right: $button-arrow-padding-x;
|
|
11194
11233
|
flex: none;
|
|
11195
11234
|
display: inline-flex;
|
|
11196
11235
|
align-items: center;
|
|
11197
11236
|
justify-content: center;
|
|
11198
11237
|
}
|
|
11199
11238
|
.k-button > .k-button-arrow {
|
|
11200
|
-
margin-inline-start: -$button-padding-
|
|
11239
|
+
margin-inline-start: -$button-arrow-padding-x;
|
|
11201
11240
|
margin-inline-end: -$button-padding-x;
|
|
11202
11241
|
}
|
|
11203
11242
|
|
|
@@ -11923,6 +11962,19 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11923
11962
|
|
|
11924
11963
|
// #endregion
|
|
11925
11964
|
|
|
11965
|
+
// #endregion
|
|
11966
|
+
// #region @import "../popup/_index.scss"; -> packages/default/scss/popup/_index.scss
|
|
11967
|
+
// File already imported_once. Skipping output.
|
|
11968
|
+
// #endregion
|
|
11969
|
+
// #region @import "../menu/_index.scss"; -> packages/default/scss/menu/_index.scss
|
|
11970
|
+
// #region @import "../core/_index.scss"; -> packages/default/scss/core/_index.scss
|
|
11971
|
+
// File already imported_once. Skipping output.
|
|
11972
|
+
// #endregion
|
|
11973
|
+
|
|
11974
|
+
|
|
11975
|
+
// Dependencies
|
|
11976
|
+
// #region @import "../common/_index.scss"; -> packages/default/scss/common/_index.scss
|
|
11977
|
+
// File already imported_once. Skipping output.
|
|
11926
11978
|
// #endregion
|
|
11927
11979
|
// #region @import "../popup/_index.scss"; -> packages/default/scss/popup/_index.scss
|
|
11928
11980
|
// File already imported_once. Skipping output.
|
|
@@ -11930,6 +11982,485 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
11930
11982
|
// #region @import "../icons/_index.scss"; -> packages/default/scss/icons/_index.scss
|
|
11931
11983
|
// File already imported_once. Skipping output.
|
|
11932
11984
|
// #endregion
|
|
11985
|
+
// #region @import "../list/_index.scss"; -> packages/default/scss/list/_index.scss
|
|
11986
|
+
// File already imported_once. Skipping output.
|
|
11987
|
+
// #endregion
|
|
11988
|
+
|
|
11989
|
+
|
|
11990
|
+
// Component
|
|
11991
|
+
// #region @import "_variables.scss"; -> packages/default/scss/menu/_variables.scss
|
|
11992
|
+
// File already imported_once. Skipping output.
|
|
11993
|
+
// #endregion
|
|
11994
|
+
// #region @import "_layout.scss"; -> packages/default/scss/menu/_layout.scss
|
|
11995
|
+
@include exports("menu/layout") {
|
|
11996
|
+
|
|
11997
|
+
// Base
|
|
11998
|
+
.k-menu {
|
|
11999
|
+
border-width: $menu-border-width;
|
|
12000
|
+
border-style: solid;
|
|
12001
|
+
box-sizing: border-box;
|
|
12002
|
+
outline: 0;
|
|
12003
|
+
font-family: $menu-font-family;
|
|
12004
|
+
font-size: $menu-font-size;
|
|
12005
|
+
line-height: $menu-line-height;
|
|
12006
|
+
display: flex;
|
|
12007
|
+
flex-wrap: wrap;
|
|
12008
|
+
align-items: stretch;
|
|
12009
|
+
position: relative;
|
|
12010
|
+
cursor: default;
|
|
12011
|
+
-webkit-touch-callout: none;
|
|
12012
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
12013
|
+
}
|
|
12014
|
+
|
|
12015
|
+
|
|
12016
|
+
// Menu item
|
|
12017
|
+
.k-menu-item {
|
|
12018
|
+
box-sizing: border-box;
|
|
12019
|
+
border-width: 0;
|
|
12020
|
+
outline: 0;
|
|
12021
|
+
display: flex;
|
|
12022
|
+
flex-flow: column nowrap;
|
|
12023
|
+
flex: none;
|
|
12024
|
+
position: relative;
|
|
12025
|
+
user-select: none;
|
|
12026
|
+
}
|
|
12027
|
+
|
|
12028
|
+
|
|
12029
|
+
// Menu link
|
|
12030
|
+
.k-menu-link {
|
|
12031
|
+
padding: $menu-item-padding-y $menu-item-padding-x;
|
|
12032
|
+
outline: 0;
|
|
12033
|
+
color: inherit;
|
|
12034
|
+
display: flex;
|
|
12035
|
+
flex-flow: row nowrap;
|
|
12036
|
+
flex: 1 1 auto;
|
|
12037
|
+
align-items: center;
|
|
12038
|
+
position: relative;
|
|
12039
|
+
white-space: nowrap;
|
|
12040
|
+
cursor: pointer;
|
|
12041
|
+
|
|
12042
|
+
> .k-icon:not(.k-menu-expand-arrow),
|
|
12043
|
+
> .k-image,
|
|
12044
|
+
> .k-sprite {
|
|
12045
|
+
margin-right: $menu-item-icon-spacing;
|
|
12046
|
+
}
|
|
12047
|
+
}
|
|
12048
|
+
|
|
12049
|
+
|
|
12050
|
+
// Menu item text
|
|
12051
|
+
.k-menu-link-text {
|
|
12052
|
+
flex: 1 1 auto;
|
|
12053
|
+
overflow: hidden;
|
|
12054
|
+
text-overflow: ellipsis;
|
|
12055
|
+
}
|
|
12056
|
+
|
|
12057
|
+
|
|
12058
|
+
// Expand arrow
|
|
12059
|
+
.k-menu-expand-arrow {
|
|
12060
|
+
margin-left: $icon-spacing;
|
|
12061
|
+
margin-right: -$icon-spacing;
|
|
12062
|
+
display: inline-flex;
|
|
12063
|
+
flex-flow: row wrap;
|
|
12064
|
+
align-items: center;
|
|
12065
|
+
flex: none;
|
|
12066
|
+
position: relative;
|
|
12067
|
+
}
|
|
12068
|
+
.k-menu-expand-arrow.k-i-arrow-60-left,
|
|
12069
|
+
.k-menu-expand-arrow.k-i-arrow-60-right {
|
|
12070
|
+
margin: 0;
|
|
12071
|
+
position: absolute;
|
|
12072
|
+
top: 50%;
|
|
12073
|
+
transform: translateY(-50%);
|
|
12074
|
+
}
|
|
12075
|
+
.k-menu-expand-arrow.k-i-arrow-60-right {
|
|
12076
|
+
right: $icon-spacing;
|
|
12077
|
+
}
|
|
12078
|
+
.k-menu-expand-arrow.k-i-arrow-60-left {
|
|
12079
|
+
left: $icon-spacing;
|
|
12080
|
+
}
|
|
12081
|
+
|
|
12082
|
+
|
|
12083
|
+
// Orientation -- horizontal
|
|
12084
|
+
.k-menu-horizontal {
|
|
12085
|
+
flex-direction: row;
|
|
12086
|
+
|
|
12087
|
+
> .k-menu-item + .k-menu-item {
|
|
12088
|
+
margin-left: $menu-item-spacing;
|
|
12089
|
+
}
|
|
12090
|
+
|
|
12091
|
+
> .k-separator {
|
|
12092
|
+
margin: 0 $menu-separator-spacing;
|
|
12093
|
+
width: 0;
|
|
12094
|
+
height: auto;
|
|
12095
|
+
border-width: 0 0 0 1px;
|
|
12096
|
+
border-style: solid;
|
|
12097
|
+
}
|
|
12098
|
+
}
|
|
12099
|
+
|
|
12100
|
+
|
|
12101
|
+
// Orientation -- vertical
|
|
12102
|
+
.k-menu-vertical {
|
|
12103
|
+
flex-direction: column;
|
|
12104
|
+
|
|
12105
|
+
> .k-menu-item + .k-menu-item {
|
|
12106
|
+
margin-top: $menu-item-spacing;
|
|
12107
|
+
}
|
|
12108
|
+
|
|
12109
|
+
> .k-menu-item > .k-menu-link {
|
|
12110
|
+
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
12111
|
+
padding-right: $menu-popup-item-padding-end;
|
|
12112
|
+
|
|
12113
|
+
.k-menu-expand-arrow {
|
|
12114
|
+
margin: 0;
|
|
12115
|
+
position: absolute;
|
|
12116
|
+
top: 50%;
|
|
12117
|
+
transform: translateY(-50%);
|
|
12118
|
+
right: $icon-spacing;
|
|
12119
|
+
}
|
|
12120
|
+
}
|
|
12121
|
+
|
|
12122
|
+
> .k-separator {
|
|
12123
|
+
margin: $menu-separator-spacing 0;
|
|
12124
|
+
height: 0;
|
|
12125
|
+
border-width: 1px 0 0;
|
|
12126
|
+
border-style: solid;
|
|
12127
|
+
border-color: $panel-border;
|
|
12128
|
+
display: block;
|
|
12129
|
+
}
|
|
12130
|
+
}
|
|
12131
|
+
|
|
12132
|
+
|
|
12133
|
+
// Menu popup
|
|
12134
|
+
.k-menu-popup {
|
|
12135
|
+
border-width: $menu-popup-border-width;
|
|
12136
|
+
border-style: solid;
|
|
12137
|
+
overflow: auto;
|
|
12138
|
+
max-height: 80vh;
|
|
12139
|
+
}
|
|
12140
|
+
|
|
12141
|
+
|
|
12142
|
+
// Sub menu
|
|
12143
|
+
.k-menu-group {
|
|
12144
|
+
margin: 0;
|
|
12145
|
+
padding: 0;
|
|
12146
|
+
// padding: $menu-popup-padding-y $menu-popup-padding-x;
|
|
12147
|
+
font-size: $menu-popup-font-size;
|
|
12148
|
+
line-height: $menu-popup-line-height;
|
|
12149
|
+
list-style: none;
|
|
12150
|
+
display: none;
|
|
12151
|
+
position: absolute;
|
|
12152
|
+
|
|
12153
|
+
.k-menu-popup & {
|
|
12154
|
+
position: relative;
|
|
12155
|
+
display: flex;
|
|
12156
|
+
flex-direction: column;
|
|
12157
|
+
}
|
|
12158
|
+
|
|
12159
|
+
// jquery popup overrides those
|
|
12160
|
+
.k-menu-item {
|
|
12161
|
+
font-size: $menu-popup-font-size;
|
|
12162
|
+
line-height: $menu-popup-line-height;
|
|
12163
|
+
}
|
|
12164
|
+
|
|
12165
|
+
.k-menu-item + .k-menu-item {
|
|
12166
|
+
margin-top: $menu-popup-item-spacing;
|
|
12167
|
+
}
|
|
12168
|
+
|
|
12169
|
+
.k-menu-link {
|
|
12170
|
+
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
12171
|
+
padding-right: $menu-popup-item-padding-end;
|
|
12172
|
+
|
|
12173
|
+
.k-menu-expand-arrow {
|
|
12174
|
+
margin: 0;
|
|
12175
|
+
position: absolute;
|
|
12176
|
+
top: 50%;
|
|
12177
|
+
transform: translateY(-50%);
|
|
12178
|
+
right: $icon-spacing;
|
|
12179
|
+
}
|
|
12180
|
+
}
|
|
12181
|
+
|
|
12182
|
+
.k-separator {
|
|
12183
|
+
margin: $menu-separator-spacing 0;
|
|
12184
|
+
height: 0;
|
|
12185
|
+
border-width: 1px 0 0;
|
|
12186
|
+
border-style: solid;
|
|
12187
|
+
border-color: $component-border;
|
|
12188
|
+
display: block;
|
|
12189
|
+
}
|
|
12190
|
+
}
|
|
12191
|
+
|
|
12192
|
+
|
|
12193
|
+
// Context menu
|
|
12194
|
+
.k-popups-wrapper {
|
|
12195
|
+
position: relative;
|
|
12196
|
+
border: 0;
|
|
12197
|
+
margin: 0;
|
|
12198
|
+
padding: 0;
|
|
12199
|
+
}
|
|
12200
|
+
.k-context-menu {
|
|
12201
|
+
margin: 0;
|
|
12202
|
+
padding: 0;
|
|
12203
|
+
// padding: $menu-popup-padding-y $menu-popup-padding-x;
|
|
12204
|
+
border-width: $menu-popup-border-width;
|
|
12205
|
+
border-style: solid;
|
|
12206
|
+
}
|
|
12207
|
+
.k-animation-container .k-context-menu.k-menu-horizontal {
|
|
12208
|
+
// kendo-jquery adds `display: block` via js and we need to override it.
|
|
12209
|
+
display: flex !important; // sass-lint:disable-line no-important
|
|
12210
|
+
flex-wrap: nowrap;
|
|
12211
|
+
}
|
|
12212
|
+
.k-context-menu-popup {
|
|
12213
|
+
z-index: 12000;
|
|
12214
|
+
|
|
12215
|
+
.k-context-menu {
|
|
12216
|
+
border-width: 0;
|
|
12217
|
+
}
|
|
12218
|
+
}
|
|
12219
|
+
.k-popup .k-context-menu,
|
|
12220
|
+
.k-context-menu-popup .k-context-menu {
|
|
12221
|
+
border-width: 0;
|
|
12222
|
+
}
|
|
12223
|
+
|
|
12224
|
+
|
|
12225
|
+
// Scrolling
|
|
12226
|
+
.k-menu-scroll-wrapper {
|
|
12227
|
+
margin: 0;
|
|
12228
|
+
padding: 0;
|
|
12229
|
+
border: 0;
|
|
12230
|
+
position: relative;
|
|
12231
|
+
|
|
12232
|
+
.k-menu {
|
|
12233
|
+
overflow: hidden;
|
|
12234
|
+
flex-wrap: nowrap;
|
|
12235
|
+
}
|
|
12236
|
+
}
|
|
12237
|
+
.k-menu-scroll-button {
|
|
12238
|
+
@include border-radius( 0 );
|
|
12239
|
+
padding: 0;
|
|
12240
|
+
border-width: 0;
|
|
12241
|
+
border-color: inherit;
|
|
12242
|
+
color: inherit;
|
|
12243
|
+
background: inherit;
|
|
12244
|
+
position: absolute;
|
|
12245
|
+
|
|
12246
|
+
&.k-scroll-left {
|
|
12247
|
+
top: 0;
|
|
12248
|
+
left: 0;
|
|
12249
|
+
height: 100%;
|
|
12250
|
+
width: 16px;
|
|
12251
|
+
border-right-width: 1px;
|
|
12252
|
+
}
|
|
12253
|
+
&.k-scroll-right {
|
|
12254
|
+
top: 0;
|
|
12255
|
+
right: 0;
|
|
12256
|
+
height: 100%;
|
|
12257
|
+
width: 16px;
|
|
12258
|
+
border-left-width: 1px;
|
|
12259
|
+
}
|
|
12260
|
+
&.k-scroll-up {
|
|
12261
|
+
top: 0;
|
|
12262
|
+
left: 0;
|
|
12263
|
+
width: 100%;
|
|
12264
|
+
height: 16px;
|
|
12265
|
+
border-bottom-width: 1px;
|
|
12266
|
+
}
|
|
12267
|
+
&.k-scroll-down {
|
|
12268
|
+
bottom: 0;
|
|
12269
|
+
left: 0;
|
|
12270
|
+
width: 100%;
|
|
12271
|
+
height: 16px;
|
|
12272
|
+
border-top-width: 1px;
|
|
12273
|
+
}
|
|
12274
|
+
}
|
|
12275
|
+
|
|
12276
|
+
|
|
12277
|
+
// RTL
|
|
12278
|
+
.k-rtl,
|
|
12279
|
+
[dir="rtl"] {
|
|
12280
|
+
|
|
12281
|
+
.k-menu-link {
|
|
12282
|
+
> .k-icon:not(.k-menu-expand-arrow),
|
|
12283
|
+
> .k-image,
|
|
12284
|
+
> .k-sprite {
|
|
12285
|
+
margin-left: $menu-item-icon-spacing;
|
|
12286
|
+
margin-right: 0;
|
|
12287
|
+
}
|
|
12288
|
+
}
|
|
12289
|
+
|
|
12290
|
+
.k-menu-expand-arrow.k-i-arrow-60-down {
|
|
12291
|
+
margin-left: -$icon-spacing;
|
|
12292
|
+
margin-right: $icon-spacing;
|
|
12293
|
+
}
|
|
12294
|
+
|
|
12295
|
+
|
|
12296
|
+
// Orientation -- horizontal
|
|
12297
|
+
.k-menu-horizontal {
|
|
12298
|
+
|
|
12299
|
+
> .k-menu-item + .k-menu-item {
|
|
12300
|
+
margin-right: $menu-item-spacing;
|
|
12301
|
+
margin-left: 0;
|
|
12302
|
+
}
|
|
12303
|
+
}
|
|
12304
|
+
|
|
12305
|
+
|
|
12306
|
+
// Orientation -- vertical
|
|
12307
|
+
.k-menu-vertical {
|
|
12308
|
+
|
|
12309
|
+
> .k-menu-item > .k-menu-link {
|
|
12310
|
+
padding-right: $menu-popup-item-padding-x;
|
|
12311
|
+
padding-left: $menu-popup-item-padding-end;
|
|
12312
|
+
|
|
12313
|
+
.k-menu-expand-arrow {
|
|
12314
|
+
right: auto;
|
|
12315
|
+
left: $icon-spacing;
|
|
12316
|
+
}
|
|
12317
|
+
}
|
|
12318
|
+
}
|
|
12319
|
+
|
|
12320
|
+
|
|
12321
|
+
// Sub menu
|
|
12322
|
+
.k-menu-group {
|
|
12323
|
+
|
|
12324
|
+
.k-menu-link {
|
|
12325
|
+
padding-right: $menu-popup-item-padding-x;
|
|
12326
|
+
padding-left: $menu-popup-item-padding-end;
|
|
12327
|
+
|
|
12328
|
+
.k-menu-expand-arrow {
|
|
12329
|
+
right: auto;
|
|
12330
|
+
left: $icon-spacing;
|
|
12331
|
+
}
|
|
12332
|
+
}
|
|
12333
|
+
|
|
12334
|
+
}
|
|
12335
|
+
|
|
12336
|
+
}
|
|
12337
|
+
|
|
12338
|
+
}
|
|
12339
|
+
|
|
12340
|
+
// #endregion
|
|
12341
|
+
// #region @import "_theme.scss"; -> packages/default/scss/menu/_theme.scss
|
|
12342
|
+
@include exports("menu/theme") {
|
|
12343
|
+
|
|
12344
|
+
.k-menu:not(.k-context-menu) {
|
|
12345
|
+
@include fill(
|
|
12346
|
+
$menu-text,
|
|
12347
|
+
$menu-bg,
|
|
12348
|
+
$menu-border,
|
|
12349
|
+
$menu-gradient
|
|
12350
|
+
);
|
|
12351
|
+
|
|
12352
|
+
> .k-item {
|
|
12353
|
+
@include fill(
|
|
12354
|
+
$menu-item-text,
|
|
12355
|
+
$menu-item-bg,
|
|
12356
|
+
$menu-item-border,
|
|
12357
|
+
$menu-item-gradient
|
|
12358
|
+
);
|
|
12359
|
+
|
|
12360
|
+
&:hover,
|
|
12361
|
+
&.k-state-hover {
|
|
12362
|
+
@include fill(
|
|
12363
|
+
$menu-item-hover-text,
|
|
12364
|
+
$menu-item-hover-bg,
|
|
12365
|
+
$menu-item-hover-border,
|
|
12366
|
+
$menu-item-hover-gradient
|
|
12367
|
+
);
|
|
12368
|
+
}
|
|
12369
|
+
|
|
12370
|
+
> .k-state-active,
|
|
12371
|
+
&.k-state-selected {
|
|
12372
|
+
@include fill(
|
|
12373
|
+
$menu-item-expanded-text,
|
|
12374
|
+
$menu-item-expanded-bg,
|
|
12375
|
+
$menu-item-expanded-border,
|
|
12376
|
+
$menu-item-expanded-gradient
|
|
12377
|
+
);
|
|
12378
|
+
}
|
|
12379
|
+
|
|
12380
|
+
&:focus,
|
|
12381
|
+
&.k-state-focus,
|
|
12382
|
+
&.k-state-focused {
|
|
12383
|
+
@include box-shadow( $menu-item-focus-shadow );
|
|
12384
|
+
}
|
|
12385
|
+
}
|
|
12386
|
+
}
|
|
12387
|
+
|
|
12388
|
+
.k-menu-group,
|
|
12389
|
+
.k-menu.k-context-menu {
|
|
12390
|
+
@include fill(
|
|
12391
|
+
$menu-popup-text,
|
|
12392
|
+
$menu-popup-bg,
|
|
12393
|
+
$menu-popup-border,
|
|
12394
|
+
$menu-popup-gradient
|
|
12395
|
+
);
|
|
12396
|
+
|
|
12397
|
+
.k-item {
|
|
12398
|
+
@include fill(
|
|
12399
|
+
$menu-popup-item-text,
|
|
12400
|
+
$menu-popup-item-bg,
|
|
12401
|
+
$menu-popup-item-border,
|
|
12402
|
+
$menu-popup-item-gradient
|
|
12403
|
+
);
|
|
12404
|
+
|
|
12405
|
+
&:hover,
|
|
12406
|
+
&.k-state-hover {
|
|
12407
|
+
@include fill(
|
|
12408
|
+
$menu-popup-item-hover-text,
|
|
12409
|
+
$menu-popup-item-hover-bg,
|
|
12410
|
+
$menu-popup-item-hover-border,
|
|
12411
|
+
$menu-popup-item-hover-gradient
|
|
12412
|
+
);
|
|
12413
|
+
}
|
|
12414
|
+
|
|
12415
|
+
> .k-state-active,
|
|
12416
|
+
&.k-state-selected {
|
|
12417
|
+
@include fill(
|
|
12418
|
+
$menu-popup-item-expanded-text,
|
|
12419
|
+
$menu-popup-item-expanded-bg,
|
|
12420
|
+
$menu-popup-item-expanded-border,
|
|
12421
|
+
$menu-popup-item-expanded-gradient
|
|
12422
|
+
);
|
|
12423
|
+
}
|
|
12424
|
+
|
|
12425
|
+
&:focus,
|
|
12426
|
+
&.k-state-focus,
|
|
12427
|
+
&.k-state-focused {
|
|
12428
|
+
@include box-shadow( $menu-popup-item-focus-shadow );
|
|
12429
|
+
}
|
|
12430
|
+
}
|
|
12431
|
+
}
|
|
12432
|
+
|
|
12433
|
+
|
|
12434
|
+
// Scrolling
|
|
12435
|
+
.k-menu-scroll-button {
|
|
12436
|
+
@include fill(
|
|
12437
|
+
$menu-scroll-button-text,
|
|
12438
|
+
$menu-scroll-button-bg,
|
|
12439
|
+
$menu-scroll-button-border,
|
|
12440
|
+
$menu-scroll-button-gradient
|
|
12441
|
+
);
|
|
12442
|
+
|
|
12443
|
+
&:hover {
|
|
12444
|
+
@include fill(
|
|
12445
|
+
$menu-scroll-button-hover-text,
|
|
12446
|
+
$menu-scroll-button-hover-bg,
|
|
12447
|
+
$menu-scroll-button-hover-border,
|
|
12448
|
+
$menu-scroll-button-hover-gradient
|
|
12449
|
+
);
|
|
12450
|
+
|
|
12451
|
+
&::before {
|
|
12452
|
+
opacity: 0;
|
|
12453
|
+
}
|
|
12454
|
+
}
|
|
12455
|
+
}
|
|
12456
|
+
}
|
|
12457
|
+
|
|
12458
|
+
// #endregion
|
|
12459
|
+
|
|
12460
|
+
// #endregion
|
|
12461
|
+
// #region @import "../icons/_index.scss"; -> packages/default/scss/icons/_index.scss
|
|
12462
|
+
// File already imported_once. Skipping output.
|
|
12463
|
+
// #endregion
|
|
11933
12464
|
|
|
11934
12465
|
|
|
11935
12466
|
// Component
|
|
@@ -12309,6 +12840,7 @@ $actions-gradient: null !default;
|
|
|
12309
12840
|
|
|
12310
12841
|
.k-actions {
|
|
12311
12842
|
padding: $actions-padding-y $actions-padding-x;
|
|
12843
|
+
box-sizing: border-box;
|
|
12312
12844
|
border-width: $actions-border-width 0 0 0;
|
|
12313
12845
|
border-style: solid;
|
|
12314
12846
|
border-color: inherit;
|
|
@@ -12320,6 +12852,12 @@ $actions-gradient: null !default;
|
|
|
12320
12852
|
overflow: hidden;
|
|
12321
12853
|
// TODO: remove
|
|
12322
12854
|
clear: both;
|
|
12855
|
+
|
|
12856
|
+
*,
|
|
12857
|
+
*::before,
|
|
12858
|
+
*::after {
|
|
12859
|
+
box-sizing: border-box;
|
|
12860
|
+
}
|
|
12323
12861
|
}
|
|
12324
12862
|
|
|
12325
12863
|
|
|
@@ -13008,6 +13546,12 @@ $fieldset-legend-border: null !default;
|
|
|
13008
13546
|
z-index: 12000;
|
|
13009
13547
|
-webkit-touch-callout: none;
|
|
13010
13548
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
13549
|
+
|
|
13550
|
+
*,
|
|
13551
|
+
*::before,
|
|
13552
|
+
*::after {
|
|
13553
|
+
box-sizing: border-box;
|
|
13554
|
+
}
|
|
13011
13555
|
}
|
|
13012
13556
|
|
|
13013
13557
|
.k-tooltip-icon {
|
|
@@ -13046,7 +13590,6 @@ $fieldset-legend-border: null !default;
|
|
|
13046
13590
|
border-width: $tooltip-callout-size;
|
|
13047
13591
|
border-style: solid;
|
|
13048
13592
|
border-color: transparent;
|
|
13049
|
-
box-sizing: border-box;
|
|
13050
13593
|
position: absolute;
|
|
13051
13594
|
pointer-events: none;
|
|
13052
13595
|
}
|
|
@@ -13278,6 +13821,12 @@ $textbox-line-height: $input-line-height !default;
|
|
|
13278
13821
|
position: relative;
|
|
13279
13822
|
-webkit-appearance: none;
|
|
13280
13823
|
|
|
13824
|
+
*,
|
|
13825
|
+
*::before,
|
|
13826
|
+
*::after {
|
|
13827
|
+
box-sizing: border-box;
|
|
13828
|
+
}
|
|
13829
|
+
|
|
13281
13830
|
// Hide clear icon
|
|
13282
13831
|
&::-ms-clear { display: none; }
|
|
13283
13832
|
|
|
@@ -13510,12 +14059,18 @@ $textarea-invalid-focus-shadow: $invalid-shadow !default;
|
|
|
13510
14059
|
// Targets https://github.com/telerik/kendo-react/issues/638.
|
|
13511
14060
|
box-shadow: none;
|
|
13512
14061
|
background: none;
|
|
13513
|
-
display: flex;
|
|
14062
|
+
display: inline-flex;
|
|
13514
14063
|
flex-wrap: nowrap;
|
|
13515
14064
|
vertical-align: middle;
|
|
13516
14065
|
position: relative;
|
|
13517
14066
|
-webkit-appearance: none;
|
|
13518
14067
|
|
|
14068
|
+
*,
|
|
14069
|
+
*::before,
|
|
14070
|
+
*::after {
|
|
14071
|
+
box-sizing: border-box;
|
|
14072
|
+
}
|
|
14073
|
+
|
|
13519
14074
|
// Hide clear icon
|
|
13520
14075
|
&::-ms-clear { display: none; }
|
|
13521
14076
|
|
|
@@ -13935,6 +14490,12 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
13935
14490
|
-webkit-touch-callout: none;
|
|
13936
14491
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
13937
14492
|
|
|
14493
|
+
*,
|
|
14494
|
+
*::before,
|
|
14495
|
+
*::after {
|
|
14496
|
+
box-sizing: border-box;
|
|
14497
|
+
}
|
|
14498
|
+
|
|
13938
14499
|
|
|
13939
14500
|
// Selection
|
|
13940
14501
|
> .k-state-selected {
|
|
@@ -14743,6 +15304,12 @@ $slider-disabled-opacity: null !default;
|
|
|
14743
15304
|
-webkit-touch-callout: none;
|
|
14744
15305
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
14745
15306
|
|
|
15307
|
+
*,
|
|
15308
|
+
*::before,
|
|
15309
|
+
*::after {
|
|
15310
|
+
box-sizing: border-box;
|
|
15311
|
+
}
|
|
15312
|
+
|
|
14746
15313
|
.k-label {
|
|
14747
15314
|
width: auto;
|
|
14748
15315
|
font-size: .92em;
|
|
@@ -14790,7 +15357,6 @@ $slider-disabled-opacity: null !default;
|
|
|
14790
15357
|
.k-slider-wrap {
|
|
14791
15358
|
width: 100%;
|
|
14792
15359
|
height: 100%;
|
|
14793
|
-
box-sizing: border-box;
|
|
14794
15360
|
display: flex;
|
|
14795
15361
|
flex-flow: inherit;
|
|
14796
15362
|
align-items: inherit;
|
|
@@ -15088,7 +15654,6 @@ $slider-disabled-opacity: null !default;
|
|
|
15088
15654
|
position: absolute;
|
|
15089
15655
|
text-align: center;
|
|
15090
15656
|
text-decoration: none;
|
|
15091
|
-
box-sizing: border-box;
|
|
15092
15657
|
width: $slider-draghandle-size;
|
|
15093
15658
|
height: $slider-draghandle-size;
|
|
15094
15659
|
|
|
@@ -16508,6 +17073,12 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
16508
17073
|
-webkit-touch-callout: none;
|
|
16509
17074
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
16510
17075
|
|
|
17076
|
+
*,
|
|
17077
|
+
*::before,
|
|
17078
|
+
*::after {
|
|
17079
|
+
box-sizing: border-box;
|
|
17080
|
+
}
|
|
17081
|
+
|
|
16511
17082
|
|
|
16512
17083
|
// Input
|
|
16513
17084
|
.k-input {}
|
|
@@ -16654,6 +17225,12 @@ $captcha-validation-message-font-style: italic !default;
|
|
|
16654
17225
|
display: flex;
|
|
16655
17226
|
flex-flow: column nowrap;
|
|
16656
17227
|
gap: $captcha-gap;
|
|
17228
|
+
|
|
17229
|
+
*,
|
|
17230
|
+
*::before,
|
|
17231
|
+
*::after {
|
|
17232
|
+
box-sizing: border-box;
|
|
17233
|
+
}
|
|
16657
17234
|
}
|
|
16658
17235
|
|
|
16659
17236
|
// Image
|
|
@@ -16766,6 +17343,12 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
16766
17343
|
position: relative;
|
|
16767
17344
|
-webkit-touch-callout: none;
|
|
16768
17345
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17346
|
+
|
|
17347
|
+
*,
|
|
17348
|
+
*::before,
|
|
17349
|
+
*::after {
|
|
17350
|
+
box-sizing: border-box;
|
|
17351
|
+
}
|
|
16769
17352
|
}
|
|
16770
17353
|
|
|
16771
17354
|
// Table
|
|
@@ -16913,6 +17496,12 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
16913
17496
|
-webkit-touch-callout: none;
|
|
16914
17497
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
16915
17498
|
|
|
17499
|
+
*,
|
|
17500
|
+
*::before,
|
|
17501
|
+
*::after {
|
|
17502
|
+
box-sizing: border-box;
|
|
17503
|
+
}
|
|
17504
|
+
|
|
16916
17505
|
|
|
16917
17506
|
// Input
|
|
16918
17507
|
.k-input {
|
|
@@ -16927,7 +17516,6 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
16927
17516
|
border-width: 0;
|
|
16928
17517
|
border-inline-start-width: $picker-select-border-width;
|
|
16929
17518
|
border-style: solid;
|
|
16930
|
-
box-sizing: border-box;
|
|
16931
17519
|
outline: 0;
|
|
16932
17520
|
display: flex;
|
|
16933
17521
|
flex-direction: column;
|
|
@@ -16941,7 +17529,6 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
16941
17529
|
.k-link {
|
|
16942
17530
|
padding: 0 $picker-select-padding-x;
|
|
16943
17531
|
min-width: $spinner-min-width;
|
|
16944
|
-
box-sizing: border-box;
|
|
16945
17532
|
flex: 1 1 auto;
|
|
16946
17533
|
display: block;
|
|
16947
17534
|
overflow: hidden;
|
|
@@ -17138,6 +17725,12 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
17138
17725
|
gap: $colorgradient-gap;
|
|
17139
17726
|
-webkit-touch-callout: none;
|
|
17140
17727
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17728
|
+
|
|
17729
|
+
*,
|
|
17730
|
+
*::before,
|
|
17731
|
+
*::after {
|
|
17732
|
+
box-sizing: border-box;
|
|
17733
|
+
}
|
|
17141
17734
|
}
|
|
17142
17735
|
|
|
17143
17736
|
// Canvas
|
|
@@ -17470,6 +18063,12 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
17470
18063
|
display: inline-flex;
|
|
17471
18064
|
flex-direction: column;
|
|
17472
18065
|
align-items: stretch;
|
|
18066
|
+
|
|
18067
|
+
*,
|
|
18068
|
+
*::before,
|
|
18069
|
+
*::after {
|
|
18070
|
+
box-sizing: border-box;
|
|
18071
|
+
}
|
|
17473
18072
|
}
|
|
17474
18073
|
|
|
17475
18074
|
// Header
|
|
@@ -17628,13 +18227,18 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
17628
18227
|
-webkit-touch-callout: none;
|
|
17629
18228
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17630
18229
|
|
|
18230
|
+
*,
|
|
18231
|
+
*::before,
|
|
18232
|
+
*::after {
|
|
18233
|
+
box-sizing: border-box;
|
|
18234
|
+
}
|
|
18235
|
+
|
|
17631
18236
|
.k-selected-color {
|
|
17632
18237
|
margin: $button-padding-y;
|
|
17633
18238
|
width: calc( #{$button-inner-calc-size} - #{$button-padding-y * 2} );
|
|
17634
18239
|
height: calc( #{$button-inner-calc-size} - #{$button-padding-y * 2} );
|
|
17635
18240
|
border-width: 1px;
|
|
17636
18241
|
border-style: solid;
|
|
17637
|
-
box-sizing: border-box;
|
|
17638
18242
|
background-clip: content-box;
|
|
17639
18243
|
line-height: 0;
|
|
17640
18244
|
position: relative;
|
|
@@ -17654,7 +18258,6 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
17654
18258
|
border-width: 0;
|
|
17655
18259
|
border-style: solid;
|
|
17656
18260
|
border-color: inherit;
|
|
17657
|
-
box-sizing: border-box;
|
|
17658
18261
|
font-size: inherit;
|
|
17659
18262
|
text-align: center;
|
|
17660
18263
|
flex-direction: column;
|
|
@@ -17690,7 +18293,6 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
17690
18293
|
border-inline-start-width: $picker-select-border-width;
|
|
17691
18294
|
border-style: solid;
|
|
17692
18295
|
border-color: transparent;
|
|
17693
|
-
box-sizing: border-box;
|
|
17694
18296
|
display: flex;
|
|
17695
18297
|
align-items: center;
|
|
17696
18298
|
justify-content: center;
|
|
@@ -17828,6 +18430,12 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
17828
18430
|
-webkit-touch-callout: none;
|
|
17829
18431
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
17830
18432
|
|
|
18433
|
+
*,
|
|
18434
|
+
*::before,
|
|
18435
|
+
*::after {
|
|
18436
|
+
box-sizing: border-box;
|
|
18437
|
+
}
|
|
18438
|
+
|
|
17831
18439
|
|
|
17832
18440
|
// Input
|
|
17833
18441
|
.k-input {}
|
|
@@ -17852,7 +18460,7 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
17852
18460
|
}
|
|
17853
18461
|
.k-link {
|
|
17854
18462
|
padding: 0 $picker-select-padding-x;
|
|
17855
|
-
min-width: $
|
|
18463
|
+
min-width: $spinner-min-width;
|
|
17856
18464
|
flex: 1 1 auto;
|
|
17857
18465
|
display: block;
|
|
17858
18466
|
overflow: hidden;
|
|
@@ -18026,6 +18634,12 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
18026
18634
|
-webkit-touch-callout: none;
|
|
18027
18635
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
18028
18636
|
|
|
18637
|
+
*,
|
|
18638
|
+
*::before,
|
|
18639
|
+
*::after {
|
|
18640
|
+
box-sizing: border-box;
|
|
18641
|
+
}
|
|
18642
|
+
|
|
18029
18643
|
|
|
18030
18644
|
// Input
|
|
18031
18645
|
.k-input {}
|
|
@@ -18198,6 +18812,12 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
18198
18812
|
-webkit-touch-callout: none;
|
|
18199
18813
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
18200
18814
|
|
|
18815
|
+
*,
|
|
18816
|
+
*::before,
|
|
18817
|
+
*::after {
|
|
18818
|
+
box-sizing: border-box;
|
|
18819
|
+
}
|
|
18820
|
+
|
|
18201
18821
|
|
|
18202
18822
|
// Input
|
|
18203
18823
|
.k-input {}
|
|
@@ -18210,7 +18830,6 @@ $colorpicker-focused-shadow: $button-focused-shadow !default;
|
|
|
18210
18830
|
border-width: 0;
|
|
18211
18831
|
border-inline-start-width: $picker-select-border-width;
|
|
18212
18832
|
border-style: solid;
|
|
18213
|
-
box-sizing: border-box;
|
|
18214
18833
|
outline: 0;
|
|
18215
18834
|
display: flex;
|
|
18216
18835
|
flex-flow: row nowrap;
|
|
@@ -18377,6 +18996,12 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
18377
18996
|
-webkit-touch-callout: none;
|
|
18378
18997
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
18379
18998
|
|
|
18999
|
+
*,
|
|
19000
|
+
*::before,
|
|
19001
|
+
*::after {
|
|
19002
|
+
box-sizing: border-box;
|
|
19003
|
+
}
|
|
19004
|
+
|
|
18380
19005
|
|
|
18381
19006
|
// Input
|
|
18382
19007
|
.k-input {}
|
|
@@ -18387,7 +19012,6 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
18387
19012
|
border-width: 0;
|
|
18388
19013
|
border-inline-start-width: $picker-select-border-width;
|
|
18389
19014
|
border-style: solid;
|
|
18390
|
-
box-sizing: border-box;
|
|
18391
19015
|
outline: 0;
|
|
18392
19016
|
display: flex;
|
|
18393
19017
|
align-items: stretch;
|
|
@@ -18406,7 +19030,6 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
18406
19030
|
display: flex;
|
|
18407
19031
|
align-items: center;
|
|
18408
19032
|
justify-content: center;
|
|
18409
|
-
box-sizing: border-box;
|
|
18410
19033
|
}
|
|
18411
19034
|
}
|
|
18412
19035
|
|
|
@@ -18593,6 +19216,12 @@ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-pa
|
|
|
18593
19216
|
flex-flow: row nowrap;
|
|
18594
19217
|
align-items: flex-start;
|
|
18595
19218
|
gap: map-get( $spacing, 2 );
|
|
19219
|
+
|
|
19220
|
+
*,
|
|
19221
|
+
*::before,
|
|
19222
|
+
*::after {
|
|
19223
|
+
box-sizing: border-box;
|
|
19224
|
+
}
|
|
18596
19225
|
}
|
|
18597
19226
|
|
|
18598
19227
|
|
|
@@ -19027,6 +19656,12 @@ $dropdownlist-focused-shadow: $input-focused-shadow !default;
|
|
|
19027
19656
|
-webkit-touch-callout: none;
|
|
19028
19657
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19029
19658
|
|
|
19659
|
+
*,
|
|
19660
|
+
*::before,
|
|
19661
|
+
*::after {
|
|
19662
|
+
box-sizing: border-box;
|
|
19663
|
+
}
|
|
19664
|
+
|
|
19030
19665
|
|
|
19031
19666
|
// Input
|
|
19032
19667
|
.k-input {}
|
|
@@ -19047,7 +19682,6 @@ $dropdownlist-focused-shadow: $input-focused-shadow !default;
|
|
|
19047
19682
|
border-inline-start-width: $picker-select-border-width;
|
|
19048
19683
|
border-style: solid;
|
|
19049
19684
|
border-color: transparent;
|
|
19050
|
-
box-sizing: border-box;
|
|
19051
19685
|
outline: 0;
|
|
19052
19686
|
display: flex;
|
|
19053
19687
|
flex-flow: row nowrap;
|
|
@@ -19274,6 +19908,12 @@ $multiselect-clear-right: calc( #{$icon-size} + #{$input-padding-y} ) !default;
|
|
|
19274
19908
|
-webkit-touch-callout: none;
|
|
19275
19909
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19276
19910
|
|
|
19911
|
+
*,
|
|
19912
|
+
*::before,
|
|
19913
|
+
*::after {
|
|
19914
|
+
box-sizing: border-box;
|
|
19915
|
+
}
|
|
19916
|
+
|
|
19277
19917
|
.k-loading-hidden {
|
|
19278
19918
|
visibility: hidden;
|
|
19279
19919
|
}
|
|
@@ -19739,13 +20379,18 @@ $treeview-loadmore-focus-shadow: $treeview-item-focused-shadow !default;
|
|
|
19739
20379
|
white-space: nowrap;
|
|
19740
20380
|
-webkit-touch-callout: none;
|
|
19741
20381
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20382
|
+
|
|
20383
|
+
*,
|
|
20384
|
+
*::before,
|
|
20385
|
+
*::after {
|
|
20386
|
+
box-sizing: border-box;
|
|
20387
|
+
}
|
|
19742
20388
|
}
|
|
19743
20389
|
|
|
19744
20390
|
|
|
19745
20391
|
// Treeview filter
|
|
19746
20392
|
.k-treeview-filter {
|
|
19747
|
-
padding: map-get( $spacing,
|
|
19748
|
-
box-sizing: border-box;
|
|
20393
|
+
padding: map-get( $spacing, 2 );
|
|
19749
20394
|
display: block;
|
|
19750
20395
|
position: relative;
|
|
19751
20396
|
flex: none;
|
|
@@ -20093,6 +20738,12 @@ $dropdowntree-filter-spacer: $dropdowntree-popup-spacer-y !default;
|
|
|
20093
20738
|
-webkit-touch-callout: none;
|
|
20094
20739
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20095
20740
|
|
|
20741
|
+
*,
|
|
20742
|
+
*::before,
|
|
20743
|
+
*::after {
|
|
20744
|
+
box-sizing: border-box;
|
|
20745
|
+
}
|
|
20746
|
+
|
|
20096
20747
|
|
|
20097
20748
|
// Input
|
|
20098
20749
|
.k-input {}
|
|
@@ -20236,6 +20887,12 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20236
20887
|
-webkit-touch-callout: none;
|
|
20237
20888
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20238
20889
|
|
|
20890
|
+
*,
|
|
20891
|
+
*::before,
|
|
20892
|
+
*::after {
|
|
20893
|
+
box-sizing: border-box;
|
|
20894
|
+
}
|
|
20895
|
+
|
|
20239
20896
|
&.k-state-readonly {
|
|
20240
20897
|
pointer-events: none;
|
|
20241
20898
|
}
|
|
@@ -20244,7 +20901,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20244
20901
|
.k-rating-container {
|
|
20245
20902
|
flex: 0 1 auto;
|
|
20246
20903
|
position: relative;
|
|
20247
|
-
box-sizing: border-box;
|
|
20248
20904
|
margin: 0 $rating-container-margin-x;
|
|
20249
20905
|
|
|
20250
20906
|
.k-rating-item {
|
|
@@ -20400,6 +21056,12 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20400
21056
|
-webkit-touch-callout: none;
|
|
20401
21057
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20402
21058
|
|
|
21059
|
+
*,
|
|
21060
|
+
*::before,
|
|
21061
|
+
*::after {
|
|
21062
|
+
box-sizing: border-box;
|
|
21063
|
+
}
|
|
21064
|
+
|
|
20403
21065
|
// Input
|
|
20404
21066
|
> .k-input {
|
|
20405
21067
|
padding: $input-padding-y $input-padding-x;
|
|
@@ -20503,17 +21165,22 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20503
21165
|
$switch-size: 60px !default;
|
|
20504
21166
|
$switch-border-radius: 9999px !default;
|
|
20505
21167
|
|
|
21168
|
+
/// Font family of the switch.
|
|
21169
|
+
/// @group switch
|
|
20506
21170
|
$switch-font-family: $font-family !default;
|
|
20507
21171
|
$switch-font-size: $font-size-xs !default;
|
|
20508
|
-
$switch-line-height: $line-height !default;
|
|
20509
21172
|
|
|
20510
21173
|
$switch-track-size: null !default;
|
|
21174
|
+
/// Border width of the switch track.
|
|
21175
|
+
/// @group switch
|
|
20511
21176
|
$switch-container-border-width: null !default;
|
|
20512
21177
|
$switch-container-padding-x: 0px !default;
|
|
20513
21178
|
$switch-container-padding-y: 0px !default;
|
|
20514
21179
|
|
|
20515
21180
|
$switch-handle-size: 30px !default;
|
|
20516
21181
|
$switch-handle-border-radius: 9999px !default;
|
|
21182
|
+
/// Border width of the switch thumb.
|
|
21183
|
+
/// @group switch
|
|
20517
21184
|
$switch-handle-border-width: 1px !default;
|
|
20518
21185
|
$switch-thumb-start-x: 0px !default;
|
|
20519
21186
|
// TODO: Remove width property from jQuery and Blazor, and do not use 100% for thumb X calc
|
|
@@ -20521,69 +21188,158 @@ $switch-thumb-end-x: calc( 100% - #{$switch-handle-size} ) !default;
|
|
|
20521
21188
|
|
|
20522
21189
|
$switch-label-offset: 8px !default;
|
|
20523
21190
|
$switch-label-width: calc( 100% - (#{$switch-handle-size} + #{$switch-label-offset} + #{$switch-container-padding-x} ) ) !default;
|
|
21191
|
+
/// Text transform of the switch label.
|
|
21192
|
+
/// @group switch
|
|
20524
21193
|
$switch-label-text-transform: uppercase !default;
|
|
21194
|
+
/// Display of the switch label.
|
|
21195
|
+
/// @group switch
|
|
20525
21196
|
$switch-label-display: inline !default;
|
|
20526
21197
|
|
|
20527
21198
|
$switch-container-shadow: inset 0 0 0 1px $base-border !default;
|
|
20528
21199
|
$switch-container-hovered-shadow: inset 0 0 0 1px $hovered-border !default;
|
|
20529
21200
|
$switch-container-focused-shadow: inset 0 0 0 3px rgba( black, .06) !default;
|
|
20530
21201
|
|
|
20531
|
-
|
|
20532
|
-
|
|
20533
|
-
$switch-on-border: null !default;
|
|
20534
|
-
$switch-on-gradient: null !default;
|
|
20535
|
-
$switch-on-shadow: null !default;
|
|
20536
|
-
|
|
20537
|
-
$switch-on-hovered-bg: shade( $switch-on-bg ) !default;
|
|
20538
|
-
$switch-on-hovered-text: $switch-on-text !default;
|
|
20539
|
-
$switch-on-hovered-border: null !default;
|
|
20540
|
-
$switch-on-hovered-gradient: null !default;
|
|
20541
|
-
|
|
20542
|
-
$switch-on-focused-bg: null !default;
|
|
20543
|
-
$switch-on-focused-text: null !default;
|
|
20544
|
-
$switch-on-focused-border: null !default;
|
|
20545
|
-
$switch-on-focused-gradient: null !default;
|
|
20546
|
-
$switch-on-focused-shadow: null !default;
|
|
20547
|
-
|
|
20548
|
-
$switch-on-handle-bg: darken( white, 5 ) !default;
|
|
20549
|
-
$switch-on-handle-text: $switch-on-text !default;
|
|
20550
|
-
$switch-on-handle-border: $base-border !default;
|
|
20551
|
-
$switch-on-handle-gradient: null !default;
|
|
20552
|
-
$switch-on-handle-shadow: null !default;
|
|
20553
|
-
|
|
20554
|
-
$switch-on-handle-hovered-bg: darken( white, 7 ) !default;
|
|
20555
|
-
$switch-on-handle-hovered-text: $switch-on-text !default;
|
|
20556
|
-
$switch-on-handle-hovered-border: $hovered-border !default;
|
|
20557
|
-
$switch-on-handle-hovered-gradient: null !default;
|
|
20558
|
-
|
|
21202
|
+
/// The background of the track when the switch is not checked.
|
|
21203
|
+
/// @group switch
|
|
20559
21204
|
$switch-off-bg: $component-bg !default;
|
|
21205
|
+
/// The text color of the track when the switch is not checked.
|
|
21206
|
+
/// @group switch
|
|
20560
21207
|
$switch-off-text: $component-text !default;
|
|
21208
|
+
/// The border color of the track when the switch is not checked.
|
|
21209
|
+
/// @group switch
|
|
20561
21210
|
$switch-off-border: null !default;
|
|
21211
|
+
/// The background gradient of the track when the switch is not checked.
|
|
21212
|
+
/// @group switch
|
|
20562
21213
|
$switch-off-gradient: null !default;
|
|
20563
21214
|
$switch-off-shadow: null !default;
|
|
20564
21215
|
|
|
21216
|
+
/// The background of the track when the hovered switch is not checked.
|
|
21217
|
+
/// @group switch
|
|
20565
21218
|
$switch-off-hovered-bg: $switch-off-bg !default;
|
|
21219
|
+
/// The text color of the track when the hovered switch is not checked.
|
|
21220
|
+
/// @group switch
|
|
20566
21221
|
$switch-off-hovered-text: $switch-off-text !default;
|
|
21222
|
+
/// The border color of the track when the hovered switch is not checked.
|
|
21223
|
+
/// @group switch
|
|
20567
21224
|
$switch-off-hovered-border: null !default;
|
|
21225
|
+
/// The background gradient of the track when the hovered switch is not checked.
|
|
21226
|
+
/// @group switch
|
|
20568
21227
|
$switch-off-hovered-gradient: null !default;
|
|
20569
21228
|
|
|
21229
|
+
/// The background of the track when the focused switch is not checked.
|
|
21230
|
+
/// @group switch
|
|
20570
21231
|
$switch-off-focused-bg: null !default;
|
|
21232
|
+
/// The text color of the track when the focused switch is not checked.
|
|
21233
|
+
/// @group switch
|
|
20571
21234
|
$switch-off-focused-text: null !default;
|
|
21235
|
+
/// The border color of the track when the focused switch is not checked.
|
|
21236
|
+
/// @group switch
|
|
20572
21237
|
$switch-off-focused-border: null !default;
|
|
21238
|
+
/// The background gradient of the track when the focused switch is not checked.
|
|
21239
|
+
/// @group switch
|
|
20573
21240
|
$switch-off-focused-gradient: null !default;
|
|
21241
|
+
/// The ring around the track when the focused switch is not checked.
|
|
21242
|
+
/// @group switch
|
|
20574
21243
|
$switch-off-focused-shadow: null !default;
|
|
20575
21244
|
|
|
20576
|
-
|
|
21245
|
+
/// The background of the thumb when the switch is not checked.
|
|
21246
|
+
/// @group switch
|
|
21247
|
+
$switch-off-handle-bg: darken( white, 5 ) !default;
|
|
21248
|
+
/// The text color of the thumb when the switch is not checked.
|
|
21249
|
+
/// @group switch
|
|
20577
21250
|
$switch-off-handle-text: $switch-off-text !default;
|
|
20578
|
-
|
|
21251
|
+
/// The border color of the thumb when the switch is not checked.
|
|
21252
|
+
/// @group switch
|
|
21253
|
+
$switch-off-handle-border: $base-border !default;
|
|
21254
|
+
/// The background gradient of the thumb when the switch is not checked.
|
|
21255
|
+
/// @group switch
|
|
20579
21256
|
$switch-off-handle-gradient: null !default;
|
|
20580
21257
|
$switch-off-handle-shadow: null !default;
|
|
20581
21258
|
|
|
20582
|
-
|
|
21259
|
+
/// The background of the thumb when the hovered switch is not checked.
|
|
21260
|
+
/// @group switch
|
|
21261
|
+
$switch-off-handle-hovered-bg: darken( white, 7 ) !default;
|
|
21262
|
+
/// The text color of the thumb when the hovered switch is not checked.
|
|
21263
|
+
/// @group switch
|
|
20583
21264
|
$switch-off-handle-hovered-text: $switch-off-text !default;
|
|
20584
|
-
|
|
21265
|
+
/// The border color of the thumb when the hovered switch is not checked.
|
|
21266
|
+
/// @group switch
|
|
21267
|
+
$switch-off-handle-hovered-border: $hovered-border !default;
|
|
21268
|
+
/// The background gradient of the thumb when the hovered switch is not checked.
|
|
21269
|
+
/// @group switch
|
|
20585
21270
|
$switch-off-handle-hovered-gradient: null !default;
|
|
20586
21271
|
|
|
21272
|
+
|
|
21273
|
+
/// The background of the track when the switch is checked.
|
|
21274
|
+
/// @group switch
|
|
21275
|
+
$switch-on-bg: $primary !default;
|
|
21276
|
+
/// The text color of the track when the switch is checked.
|
|
21277
|
+
/// @group switch
|
|
21278
|
+
$switch-on-text: contrast-wcag( $switch-on-bg ) !default;
|
|
21279
|
+
/// The border color of the track when the switch is checked.
|
|
21280
|
+
/// @group switch
|
|
21281
|
+
$switch-on-border: null !default;
|
|
21282
|
+
/// The background gradient of the track when the switch is checked.
|
|
21283
|
+
/// @group switch
|
|
21284
|
+
$switch-on-gradient: null !default;
|
|
21285
|
+
$switch-on-shadow: null !default;
|
|
21286
|
+
|
|
21287
|
+
/// The background of the track wen the hovered switch is checked.
|
|
21288
|
+
/// @group switch
|
|
21289
|
+
$switch-on-hovered-bg: shade( $switch-on-bg ) !default;
|
|
21290
|
+
/// The text color of the track wen the hovered switch is checked.
|
|
21291
|
+
/// @group switch
|
|
21292
|
+
$switch-on-hovered-text: $switch-on-text !default;
|
|
21293
|
+
/// The border color of the track wen the hovered switch is checked.
|
|
21294
|
+
/// @group switch
|
|
21295
|
+
$switch-on-hovered-border: null !default;
|
|
21296
|
+
/// The background gradient of the track wen the hovered switch is checked.
|
|
21297
|
+
/// @group switch
|
|
21298
|
+
$switch-on-hovered-gradient: null !default;
|
|
21299
|
+
|
|
21300
|
+
/// The background of the track wen the focused switch is checked.
|
|
21301
|
+
/// @group switch
|
|
21302
|
+
$switch-on-focused-bg: null !default;
|
|
21303
|
+
/// The text color of the track wen the focused switch is checked.
|
|
21304
|
+
/// @group switch
|
|
21305
|
+
$switch-on-focused-text: null !default;
|
|
21306
|
+
/// The border color of the track wen the focused switch is checked.
|
|
21307
|
+
/// @group switch
|
|
21308
|
+
$switch-on-focused-border: null !default;
|
|
21309
|
+
/// The background gradient of the track wen the focused switch is checked.
|
|
21310
|
+
/// @group switch
|
|
21311
|
+
$switch-on-focused-gradient: null !default;
|
|
21312
|
+
/// The ring around the track wen the focused switch is checked.
|
|
21313
|
+
/// @group switch
|
|
21314
|
+
$switch-on-focused-shadow: null !default;
|
|
21315
|
+
|
|
21316
|
+
/// The background of the thumb when the switch is checked.
|
|
21317
|
+
/// @group switch
|
|
21318
|
+
$switch-on-handle-bg: $switch-off-handle-bg !default;
|
|
21319
|
+
/// The text color of the thumb when the switch is checked.
|
|
21320
|
+
/// @group switch
|
|
21321
|
+
$switch-on-handle-text: $switch-on-text !default;
|
|
21322
|
+
/// The border color of the thumb when the switch is checked.
|
|
21323
|
+
/// @group switch
|
|
21324
|
+
$switch-on-handle-border: $switch-off-handle-border !default;
|
|
21325
|
+
/// The background gradient of the thumb when the switch is checked.
|
|
21326
|
+
/// @group switch
|
|
21327
|
+
$switch-on-handle-gradient: null !default;
|
|
21328
|
+
$switch-on-handle-shadow: null !default;
|
|
21329
|
+
|
|
21330
|
+
/// The background of the thumb when the hovered switch is checked.
|
|
21331
|
+
/// @group switch
|
|
21332
|
+
$switch-on-handle-hovered-bg: $switch-off-handle-hovered-bg !default;
|
|
21333
|
+
/// The text color of the thumb when the hovered switch is checked.
|
|
21334
|
+
/// @group switch
|
|
21335
|
+
$switch-on-handle-hovered-text: $switch-on-text !default;
|
|
21336
|
+
/// The border color of the thumb when the hovered switch is checked.
|
|
21337
|
+
/// @group switch
|
|
21338
|
+
$switch-on-handle-hovered-border: $switch-off-handle-hovered-border !default;
|
|
21339
|
+
/// The background gradient of the thumb when the hovered switch is checked.
|
|
21340
|
+
/// @group switch
|
|
21341
|
+
$switch-on-handle-hovered-gradient: null !default;
|
|
21342
|
+
|
|
20587
21343
|
// #endregion
|
|
20588
21344
|
// #region @import "_layout.scss"; -> packages/default/scss/switch/_layout.scss
|
|
20589
21345
|
@include exports("switch/layout") {
|
|
@@ -20597,14 +21353,20 @@ $switch-off-handle-hovered-gradient: null !default;
|
|
|
20597
21353
|
display: inline-flex;
|
|
20598
21354
|
align-items: center;
|
|
20599
21355
|
vertical-align: middle;
|
|
20600
|
-
font-family: $font-family;
|
|
20601
|
-
font-size: $font-size
|
|
20602
|
-
line-height:
|
|
21356
|
+
font-family: $switch-font-family;
|
|
21357
|
+
font-size: $switch-font-size;
|
|
21358
|
+
line-height: 1;
|
|
20603
21359
|
user-select: none;
|
|
20604
21360
|
text-align: left;
|
|
20605
21361
|
-webkit-touch-callout: none;
|
|
20606
21362
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
20607
21363
|
|
|
21364
|
+
*,
|
|
21365
|
+
*::before,
|
|
21366
|
+
*::after {
|
|
21367
|
+
box-sizing: border-box;
|
|
21368
|
+
}
|
|
21369
|
+
|
|
20608
21370
|
[type="checkbox"] {
|
|
20609
21371
|
display: none;
|
|
20610
21372
|
}
|
|
@@ -20614,11 +21376,9 @@ $switch-off-handle-hovered-gradient: null !default;
|
|
|
20614
21376
|
}
|
|
20615
21377
|
}
|
|
20616
21378
|
|
|
20617
|
-
.k-switch,
|
|
20618
|
-
.k-switch-container,
|
|
20619
|
-
.k-switch-handle {
|
|
20620
|
-
box-sizing: border-box;
|
|
20621
|
-
}
|
|
21379
|
+
// .k-switch,
|
|
21380
|
+
// .k-switch-container,
|
|
21381
|
+
// .k-switch-handle {}
|
|
20622
21382
|
|
|
20623
21383
|
|
|
20624
21384
|
// Switch track
|
|
@@ -20678,7 +21438,8 @@ $switch-off-handle-hovered-gradient: null !default;
|
|
|
20678
21438
|
|
|
20679
21439
|
// RTL
|
|
20680
21440
|
.k-rtl .k-switch,
|
|
20681
|
-
|
|
21441
|
+
[dir="rtl"] .k-switch,
|
|
21442
|
+
.k-switch[dir="rtl"] {
|
|
20682
21443
|
&.k-switch-on .k-switch-handle {
|
|
20683
21444
|
left: $switch-thumb-start-x;
|
|
20684
21445
|
}
|
|
@@ -21084,6 +21845,12 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21084
21845
|
-webkit-touch-callout: none;
|
|
21085
21846
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
21086
21847
|
|
|
21848
|
+
*,
|
|
21849
|
+
*::before,
|
|
21850
|
+
*::after {
|
|
21851
|
+
box-sizing: border-box;
|
|
21852
|
+
}
|
|
21853
|
+
|
|
21087
21854
|
.k-upload-button {
|
|
21088
21855
|
min-width: 7em;
|
|
21089
21856
|
}
|
|
@@ -21239,7 +22006,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21239
22006
|
border-style: solid;
|
|
21240
22007
|
font-size: ($font-size * .57);
|
|
21241
22008
|
text-transform: uppercase;
|
|
21242
|
-
box-sizing: content-box;
|
|
21243
22009
|
position: absolute;
|
|
21244
22010
|
top: $upload-item-padding-y;
|
|
21245
22011
|
}
|
|
@@ -21709,9 +22475,14 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
21709
22475
|
-webkit-touch-callout: none;
|
|
21710
22476
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
21711
22477
|
|
|
22478
|
+
*,
|
|
22479
|
+
*::before,
|
|
22480
|
+
*::after {
|
|
22481
|
+
box-sizing: border-box;
|
|
22482
|
+
}
|
|
22483
|
+
|
|
21712
22484
|
> * {
|
|
21713
22485
|
flex-shrink: 0;
|
|
21714
|
-
|
|
21715
22486
|
}
|
|
21716
22487
|
|
|
21717
22488
|
// Appbar section
|
|
@@ -21947,6 +22718,12 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
21947
22718
|
cursor: pointer;
|
|
21948
22719
|
outline: none;
|
|
21949
22720
|
|
|
22721
|
+
*,
|
|
22722
|
+
*::before,
|
|
22723
|
+
*::after {
|
|
22724
|
+
box-sizing: border-box;
|
|
22725
|
+
}
|
|
22726
|
+
|
|
21950
22727
|
&:focus {
|
|
21951
22728
|
outline: none;
|
|
21952
22729
|
}
|
|
@@ -22245,496 +23022,7 @@ $fab-size-lg: calc( #{$fab-line-height-lg * 1em} + #{$fab-padding-y-lg * 2} + #{
|
|
|
22245
23022
|
|
|
22246
23023
|
// #endregion
|
|
22247
23024
|
// #region @import "menu/_index.scss"; -> packages/default/scss/menu/_index.scss
|
|
22248
|
-
// #region @import "../core/_index.scss"; -> packages/default/scss/core/_index.scss
|
|
22249
|
-
// File already imported_once. Skipping output.
|
|
22250
|
-
// #endregion
|
|
22251
|
-
|
|
22252
|
-
|
|
22253
|
-
// Dependencies
|
|
22254
|
-
// #region @import "../common/_index.scss"; -> packages/default/scss/common/_index.scss
|
|
22255
|
-
// File already imported_once. Skipping output.
|
|
22256
|
-
// #endregion
|
|
22257
|
-
// #region @import "../popup/_index.scss"; -> packages/default/scss/popup/_index.scss
|
|
22258
|
-
// File already imported_once. Skipping output.
|
|
22259
|
-
// #endregion
|
|
22260
|
-
// #region @import "../icons/_index.scss"; -> packages/default/scss/icons/_index.scss
|
|
22261
|
-
// File already imported_once. Skipping output.
|
|
22262
|
-
// #endregion
|
|
22263
|
-
// #region @import "../list/_index.scss"; -> packages/default/scss/list/_index.scss
|
|
22264
|
-
// File already imported_once. Skipping output.
|
|
22265
|
-
// #endregion
|
|
22266
|
-
|
|
22267
|
-
|
|
22268
|
-
// Component
|
|
22269
|
-
// #region @import "_variables.scss"; -> packages/default/scss/menu/_variables.scss
|
|
22270
23025
|
// File already imported_once. Skipping output.
|
|
22271
|
-
// #endregion
|
|
22272
|
-
// #region @import "_layout.scss"; -> packages/default/scss/menu/_layout.scss
|
|
22273
|
-
@include exports("menu/layout") {
|
|
22274
|
-
|
|
22275
|
-
// Base
|
|
22276
|
-
.k-menu {
|
|
22277
|
-
border-width: $menu-border-width;
|
|
22278
|
-
border-style: solid;
|
|
22279
|
-
box-sizing: border-box;
|
|
22280
|
-
outline: 0;
|
|
22281
|
-
font-family: $menu-font-family;
|
|
22282
|
-
font-size: $menu-font-size;
|
|
22283
|
-
line-height: $menu-line-height;
|
|
22284
|
-
display: flex;
|
|
22285
|
-
flex-wrap: wrap;
|
|
22286
|
-
align-items: stretch;
|
|
22287
|
-
position: relative;
|
|
22288
|
-
cursor: default;
|
|
22289
|
-
-webkit-touch-callout: none;
|
|
22290
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
22291
|
-
}
|
|
22292
|
-
|
|
22293
|
-
|
|
22294
|
-
// Menu item
|
|
22295
|
-
.k-menu-item {
|
|
22296
|
-
box-sizing: border-box;
|
|
22297
|
-
border-width: 0;
|
|
22298
|
-
outline: 0;
|
|
22299
|
-
display: flex;
|
|
22300
|
-
flex-flow: column nowrap;
|
|
22301
|
-
flex: none;
|
|
22302
|
-
position: relative;
|
|
22303
|
-
user-select: none;
|
|
22304
|
-
}
|
|
22305
|
-
|
|
22306
|
-
|
|
22307
|
-
// Menu link
|
|
22308
|
-
.k-menu-link {
|
|
22309
|
-
padding: $menu-item-padding-y $menu-item-padding-x;
|
|
22310
|
-
outline: 0;
|
|
22311
|
-
color: inherit;
|
|
22312
|
-
display: flex;
|
|
22313
|
-
flex-flow: row nowrap;
|
|
22314
|
-
flex: 1 1 auto;
|
|
22315
|
-
align-items: center;
|
|
22316
|
-
position: relative;
|
|
22317
|
-
white-space: nowrap;
|
|
22318
|
-
cursor: pointer;
|
|
22319
|
-
|
|
22320
|
-
> .k-icon:not(.k-menu-expand-arrow),
|
|
22321
|
-
> .k-image,
|
|
22322
|
-
> .k-sprite {
|
|
22323
|
-
margin-right: $menu-item-icon-spacing;
|
|
22324
|
-
}
|
|
22325
|
-
}
|
|
22326
|
-
|
|
22327
|
-
|
|
22328
|
-
// Menu item text
|
|
22329
|
-
.k-menu-link-text {
|
|
22330
|
-
flex: 1 1 auto;
|
|
22331
|
-
overflow: hidden;
|
|
22332
|
-
text-overflow: ellipsis;
|
|
22333
|
-
}
|
|
22334
|
-
|
|
22335
|
-
|
|
22336
|
-
// Expand arrow
|
|
22337
|
-
.k-menu-expand-arrow {
|
|
22338
|
-
margin-left: $icon-spacing;
|
|
22339
|
-
margin-right: -$icon-spacing;
|
|
22340
|
-
display: inline-flex;
|
|
22341
|
-
flex-flow: row wrap;
|
|
22342
|
-
align-items: center;
|
|
22343
|
-
flex: none;
|
|
22344
|
-
position: relative;
|
|
22345
|
-
}
|
|
22346
|
-
.k-menu-expand-arrow.k-i-arrow-60-left,
|
|
22347
|
-
.k-menu-expand-arrow.k-i-arrow-60-right {
|
|
22348
|
-
margin: 0;
|
|
22349
|
-
position: absolute;
|
|
22350
|
-
top: 50%;
|
|
22351
|
-
transform: translateY(-50%);
|
|
22352
|
-
}
|
|
22353
|
-
.k-menu-expand-arrow.k-i-arrow-60-right {
|
|
22354
|
-
right: $icon-spacing;
|
|
22355
|
-
}
|
|
22356
|
-
.k-menu-expand-arrow.k-i-arrow-60-left {
|
|
22357
|
-
left: $icon-spacing;
|
|
22358
|
-
}
|
|
22359
|
-
|
|
22360
|
-
|
|
22361
|
-
// Orientation -- horizontal
|
|
22362
|
-
.k-menu-horizontal {
|
|
22363
|
-
flex-direction: row;
|
|
22364
|
-
|
|
22365
|
-
> .k-menu-item + .k-menu-item {
|
|
22366
|
-
margin-left: $menu-item-spacing;
|
|
22367
|
-
}
|
|
22368
|
-
|
|
22369
|
-
> .k-separator {
|
|
22370
|
-
margin: 0 $menu-separator-spacing;
|
|
22371
|
-
width: 0;
|
|
22372
|
-
height: auto;
|
|
22373
|
-
border-width: 0 0 0 1px;
|
|
22374
|
-
border-style: solid;
|
|
22375
|
-
}
|
|
22376
|
-
}
|
|
22377
|
-
|
|
22378
|
-
|
|
22379
|
-
// Orientation -- vertical
|
|
22380
|
-
.k-menu-vertical {
|
|
22381
|
-
flex-direction: column;
|
|
22382
|
-
|
|
22383
|
-
> .k-menu-item + .k-menu-item {
|
|
22384
|
-
margin-top: $menu-item-spacing;
|
|
22385
|
-
}
|
|
22386
|
-
|
|
22387
|
-
> .k-menu-item > .k-menu-link {
|
|
22388
|
-
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
22389
|
-
padding-right: $menu-popup-item-padding-end;
|
|
22390
|
-
|
|
22391
|
-
.k-menu-expand-arrow {
|
|
22392
|
-
margin: 0;
|
|
22393
|
-
position: absolute;
|
|
22394
|
-
top: 50%;
|
|
22395
|
-
transform: translateY(-50%);
|
|
22396
|
-
right: $icon-spacing;
|
|
22397
|
-
}
|
|
22398
|
-
}
|
|
22399
|
-
|
|
22400
|
-
> .k-separator {
|
|
22401
|
-
margin: $menu-separator-spacing 0;
|
|
22402
|
-
height: 0;
|
|
22403
|
-
border-width: 1px 0 0;
|
|
22404
|
-
border-style: solid;
|
|
22405
|
-
border-color: $panel-border;
|
|
22406
|
-
display: block;
|
|
22407
|
-
}
|
|
22408
|
-
}
|
|
22409
|
-
|
|
22410
|
-
|
|
22411
|
-
// Menu popup
|
|
22412
|
-
.k-menu-popup {
|
|
22413
|
-
border-width: $menu-popup-border-width;
|
|
22414
|
-
border-style: solid;
|
|
22415
|
-
overflow: auto;
|
|
22416
|
-
max-height: 80vh;
|
|
22417
|
-
}
|
|
22418
|
-
|
|
22419
|
-
|
|
22420
|
-
// Sub menu
|
|
22421
|
-
.k-menu-group {
|
|
22422
|
-
margin: 0;
|
|
22423
|
-
padding: 0;
|
|
22424
|
-
// padding: $menu-popup-padding-y $menu-popup-padding-x;
|
|
22425
|
-
font-size: $menu-popup-font-size;
|
|
22426
|
-
line-height: $menu-popup-line-height;
|
|
22427
|
-
list-style: none;
|
|
22428
|
-
display: none;
|
|
22429
|
-
position: absolute;
|
|
22430
|
-
|
|
22431
|
-
.k-menu-popup & {
|
|
22432
|
-
position: relative;
|
|
22433
|
-
display: flex;
|
|
22434
|
-
flex-direction: column;
|
|
22435
|
-
}
|
|
22436
|
-
|
|
22437
|
-
// jquery popup overrides those
|
|
22438
|
-
.k-menu-item {
|
|
22439
|
-
font-size: $menu-popup-font-size;
|
|
22440
|
-
line-height: $menu-popup-line-height;
|
|
22441
|
-
}
|
|
22442
|
-
|
|
22443
|
-
.k-menu-item + .k-menu-item {
|
|
22444
|
-
margin-top: $menu-popup-item-spacing;
|
|
22445
|
-
}
|
|
22446
|
-
|
|
22447
|
-
.k-menu-link {
|
|
22448
|
-
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
22449
|
-
padding-right: $menu-popup-item-padding-end;
|
|
22450
|
-
|
|
22451
|
-
.k-menu-expand-arrow {
|
|
22452
|
-
margin: 0;
|
|
22453
|
-
position: absolute;
|
|
22454
|
-
top: 50%;
|
|
22455
|
-
transform: translateY(-50%);
|
|
22456
|
-
right: $icon-spacing;
|
|
22457
|
-
}
|
|
22458
|
-
}
|
|
22459
|
-
|
|
22460
|
-
.k-separator {
|
|
22461
|
-
margin: $menu-separator-spacing 0;
|
|
22462
|
-
height: 0;
|
|
22463
|
-
border-width: 1px 0 0;
|
|
22464
|
-
border-style: solid;
|
|
22465
|
-
border-color: $component-border;
|
|
22466
|
-
display: block;
|
|
22467
|
-
}
|
|
22468
|
-
}
|
|
22469
|
-
|
|
22470
|
-
|
|
22471
|
-
// Context menu
|
|
22472
|
-
.k-popups-wrapper {
|
|
22473
|
-
position: relative;
|
|
22474
|
-
border: 0;
|
|
22475
|
-
margin: 0;
|
|
22476
|
-
padding: 0;
|
|
22477
|
-
}
|
|
22478
|
-
.k-context-menu {
|
|
22479
|
-
margin: 0;
|
|
22480
|
-
padding: 0;
|
|
22481
|
-
// padding: $menu-popup-padding-y $menu-popup-padding-x;
|
|
22482
|
-
border-width: $menu-popup-border-width;
|
|
22483
|
-
border-style: solid;
|
|
22484
|
-
}
|
|
22485
|
-
.k-animation-container .k-context-menu.k-menu-horizontal {
|
|
22486
|
-
// kendo-jquery adds `display: block` via js and we need to override it.
|
|
22487
|
-
display: flex !important; // sass-lint:disable-line no-important
|
|
22488
|
-
flex-wrap: nowrap;
|
|
22489
|
-
}
|
|
22490
|
-
.k-context-menu-popup {
|
|
22491
|
-
z-index: 12000;
|
|
22492
|
-
|
|
22493
|
-
.k-context-menu {
|
|
22494
|
-
border-width: 0;
|
|
22495
|
-
}
|
|
22496
|
-
}
|
|
22497
|
-
.k-popup .k-context-menu,
|
|
22498
|
-
.k-context-menu-popup .k-context-menu {
|
|
22499
|
-
border-width: 0;
|
|
22500
|
-
}
|
|
22501
|
-
|
|
22502
|
-
|
|
22503
|
-
// Scrolling
|
|
22504
|
-
.k-menu-scroll-wrapper {
|
|
22505
|
-
margin: 0;
|
|
22506
|
-
padding: 0;
|
|
22507
|
-
border: 0;
|
|
22508
|
-
position: relative;
|
|
22509
|
-
|
|
22510
|
-
.k-menu {
|
|
22511
|
-
overflow: hidden;
|
|
22512
|
-
flex-wrap: nowrap;
|
|
22513
|
-
}
|
|
22514
|
-
}
|
|
22515
|
-
.k-menu-scroll-button {
|
|
22516
|
-
@include border-radius( 0 );
|
|
22517
|
-
padding: 0;
|
|
22518
|
-
border-width: 0;
|
|
22519
|
-
border-color: inherit;
|
|
22520
|
-
color: inherit;
|
|
22521
|
-
background: inherit;
|
|
22522
|
-
position: absolute;
|
|
22523
|
-
|
|
22524
|
-
&.k-scroll-left {
|
|
22525
|
-
top: 0;
|
|
22526
|
-
left: 0;
|
|
22527
|
-
height: 100%;
|
|
22528
|
-
width: 16px;
|
|
22529
|
-
border-right-width: 1px;
|
|
22530
|
-
}
|
|
22531
|
-
&.k-scroll-right {
|
|
22532
|
-
top: 0;
|
|
22533
|
-
right: 0;
|
|
22534
|
-
height: 100%;
|
|
22535
|
-
width: 16px;
|
|
22536
|
-
border-left-width: 1px;
|
|
22537
|
-
}
|
|
22538
|
-
&.k-scroll-up {
|
|
22539
|
-
top: 0;
|
|
22540
|
-
left: 0;
|
|
22541
|
-
width: 100%;
|
|
22542
|
-
height: 16px;
|
|
22543
|
-
border-bottom-width: 1px;
|
|
22544
|
-
}
|
|
22545
|
-
&.k-scroll-down {
|
|
22546
|
-
bottom: 0;
|
|
22547
|
-
left: 0;
|
|
22548
|
-
width: 100%;
|
|
22549
|
-
height: 16px;
|
|
22550
|
-
border-top-width: 1px;
|
|
22551
|
-
}
|
|
22552
|
-
}
|
|
22553
|
-
|
|
22554
|
-
|
|
22555
|
-
// RTL
|
|
22556
|
-
.k-rtl,
|
|
22557
|
-
[dir="rtl"] {
|
|
22558
|
-
|
|
22559
|
-
.k-menu-link {
|
|
22560
|
-
> .k-icon:not(.k-menu-expand-arrow),
|
|
22561
|
-
> .k-image,
|
|
22562
|
-
> .k-sprite {
|
|
22563
|
-
margin-left: $menu-item-icon-spacing;
|
|
22564
|
-
margin-right: 0;
|
|
22565
|
-
}
|
|
22566
|
-
}
|
|
22567
|
-
|
|
22568
|
-
.k-menu-expand-arrow.k-i-arrow-60-down {
|
|
22569
|
-
margin-left: -$icon-spacing;
|
|
22570
|
-
margin-right: $icon-spacing;
|
|
22571
|
-
}
|
|
22572
|
-
|
|
22573
|
-
|
|
22574
|
-
// Orientation -- horizontal
|
|
22575
|
-
.k-menu-horizontal {
|
|
22576
|
-
|
|
22577
|
-
> .k-menu-item + .k-menu-item {
|
|
22578
|
-
margin-right: $menu-item-spacing;
|
|
22579
|
-
margin-left: 0;
|
|
22580
|
-
}
|
|
22581
|
-
}
|
|
22582
|
-
|
|
22583
|
-
|
|
22584
|
-
// Orientation -- vertical
|
|
22585
|
-
.k-menu-vertical {
|
|
22586
|
-
|
|
22587
|
-
> .k-menu-item > .k-menu-link {
|
|
22588
|
-
padding-right: $menu-popup-item-padding-x;
|
|
22589
|
-
padding-left: $menu-popup-item-padding-end;
|
|
22590
|
-
|
|
22591
|
-
.k-menu-expand-arrow {
|
|
22592
|
-
right: auto;
|
|
22593
|
-
left: $icon-spacing;
|
|
22594
|
-
}
|
|
22595
|
-
}
|
|
22596
|
-
}
|
|
22597
|
-
|
|
22598
|
-
|
|
22599
|
-
// Sub menu
|
|
22600
|
-
.k-menu-group {
|
|
22601
|
-
|
|
22602
|
-
.k-menu-link {
|
|
22603
|
-
padding-right: $menu-popup-item-padding-x;
|
|
22604
|
-
padding-left: $menu-popup-item-padding-end;
|
|
22605
|
-
|
|
22606
|
-
.k-menu-expand-arrow {
|
|
22607
|
-
right: auto;
|
|
22608
|
-
left: $icon-spacing;
|
|
22609
|
-
}
|
|
22610
|
-
}
|
|
22611
|
-
|
|
22612
|
-
}
|
|
22613
|
-
|
|
22614
|
-
}
|
|
22615
|
-
|
|
22616
|
-
}
|
|
22617
|
-
|
|
22618
|
-
// #endregion
|
|
22619
|
-
// #region @import "_theme.scss"; -> packages/default/scss/menu/_theme.scss
|
|
22620
|
-
@include exports("menu/theme") {
|
|
22621
|
-
|
|
22622
|
-
.k-menu:not(.k-context-menu) {
|
|
22623
|
-
@include fill(
|
|
22624
|
-
$menu-text,
|
|
22625
|
-
$menu-bg,
|
|
22626
|
-
$menu-border,
|
|
22627
|
-
$menu-gradient
|
|
22628
|
-
);
|
|
22629
|
-
|
|
22630
|
-
> .k-item {
|
|
22631
|
-
@include fill(
|
|
22632
|
-
$menu-item-text,
|
|
22633
|
-
$menu-item-bg,
|
|
22634
|
-
$menu-item-border,
|
|
22635
|
-
$menu-item-gradient
|
|
22636
|
-
);
|
|
22637
|
-
|
|
22638
|
-
&:hover,
|
|
22639
|
-
&.k-state-hover {
|
|
22640
|
-
@include fill(
|
|
22641
|
-
$menu-item-hover-text,
|
|
22642
|
-
$menu-item-hover-bg,
|
|
22643
|
-
$menu-item-hover-border,
|
|
22644
|
-
$menu-item-hover-gradient
|
|
22645
|
-
);
|
|
22646
|
-
}
|
|
22647
|
-
|
|
22648
|
-
> .k-state-active,
|
|
22649
|
-
&.k-state-selected {
|
|
22650
|
-
@include fill(
|
|
22651
|
-
$menu-item-expanded-text,
|
|
22652
|
-
$menu-item-expanded-bg,
|
|
22653
|
-
$menu-item-expanded-border,
|
|
22654
|
-
$menu-item-expanded-gradient
|
|
22655
|
-
);
|
|
22656
|
-
}
|
|
22657
|
-
|
|
22658
|
-
&:focus,
|
|
22659
|
-
&.k-state-focus,
|
|
22660
|
-
&.k-state-focused {
|
|
22661
|
-
@include box-shadow( $menu-item-focus-shadow );
|
|
22662
|
-
}
|
|
22663
|
-
}
|
|
22664
|
-
}
|
|
22665
|
-
|
|
22666
|
-
.k-menu-group,
|
|
22667
|
-
.k-menu.k-context-menu {
|
|
22668
|
-
@include fill(
|
|
22669
|
-
$menu-popup-text,
|
|
22670
|
-
$menu-popup-bg,
|
|
22671
|
-
$menu-popup-border,
|
|
22672
|
-
$menu-popup-gradient
|
|
22673
|
-
);
|
|
22674
|
-
|
|
22675
|
-
.k-item {
|
|
22676
|
-
@include fill(
|
|
22677
|
-
$menu-popup-item-text,
|
|
22678
|
-
$menu-popup-item-bg,
|
|
22679
|
-
$menu-popup-item-border,
|
|
22680
|
-
$menu-popup-item-gradient
|
|
22681
|
-
);
|
|
22682
|
-
|
|
22683
|
-
&:hover,
|
|
22684
|
-
&.k-state-hover {
|
|
22685
|
-
@include fill(
|
|
22686
|
-
$menu-popup-item-hover-text,
|
|
22687
|
-
$menu-popup-item-hover-bg,
|
|
22688
|
-
$menu-popup-item-hover-border,
|
|
22689
|
-
$menu-popup-item-hover-gradient
|
|
22690
|
-
);
|
|
22691
|
-
}
|
|
22692
|
-
|
|
22693
|
-
> .k-state-active,
|
|
22694
|
-
&.k-state-selected {
|
|
22695
|
-
@include fill(
|
|
22696
|
-
$menu-popup-item-expanded-text,
|
|
22697
|
-
$menu-popup-item-expanded-bg,
|
|
22698
|
-
$menu-popup-item-expanded-border,
|
|
22699
|
-
$menu-popup-item-expanded-gradient
|
|
22700
|
-
);
|
|
22701
|
-
}
|
|
22702
|
-
|
|
22703
|
-
&:focus,
|
|
22704
|
-
&.k-state-focus,
|
|
22705
|
-
&.k-state-focused {
|
|
22706
|
-
@include box-shadow( $menu-popup-item-focus-shadow );
|
|
22707
|
-
}
|
|
22708
|
-
}
|
|
22709
|
-
}
|
|
22710
|
-
|
|
22711
|
-
|
|
22712
|
-
// Scrolling
|
|
22713
|
-
.k-menu-scroll-button {
|
|
22714
|
-
@include fill(
|
|
22715
|
-
$menu-scroll-button-text,
|
|
22716
|
-
$menu-scroll-button-bg,
|
|
22717
|
-
$menu-scroll-button-border,
|
|
22718
|
-
$menu-scroll-button-gradient
|
|
22719
|
-
);
|
|
22720
|
-
|
|
22721
|
-
&:hover {
|
|
22722
|
-
@include fill(
|
|
22723
|
-
$menu-scroll-button-hover-text,
|
|
22724
|
-
$menu-scroll-button-hover-bg,
|
|
22725
|
-
$menu-scroll-button-hover-border,
|
|
22726
|
-
$menu-scroll-button-hover-gradient
|
|
22727
|
-
);
|
|
22728
|
-
|
|
22729
|
-
&::before {
|
|
22730
|
-
opacity: 0;
|
|
22731
|
-
}
|
|
22732
|
-
}
|
|
22733
|
-
}
|
|
22734
|
-
}
|
|
22735
|
-
|
|
22736
|
-
// #endregion
|
|
22737
|
-
|
|
22738
23026
|
// #endregion
|
|
22739
23027
|
// #region @import "toolbar/_index.scss"; -> packages/default/scss/toolbar/_index.scss
|
|
22740
23028
|
// File already imported_once. Skipping output.
|
|
@@ -22866,6 +23154,12 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22866
23154
|
overflow-y: auto;
|
|
22867
23155
|
position: fixed;
|
|
22868
23156
|
z-index: 10002;
|
|
23157
|
+
|
|
23158
|
+
*,
|
|
23159
|
+
*::before,
|
|
23160
|
+
*::after {
|
|
23161
|
+
box-sizing: border-box;
|
|
23162
|
+
}
|
|
22869
23163
|
}
|
|
22870
23164
|
|
|
22871
23165
|
|
|
@@ -23517,6 +23811,12 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
23517
23811
|
-webkit-touch-callout: none;
|
|
23518
23812
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
23519
23813
|
|
|
23814
|
+
*,
|
|
23815
|
+
*::before,
|
|
23816
|
+
*::after {
|
|
23817
|
+
box-sizing: border-box;
|
|
23818
|
+
}
|
|
23819
|
+
|
|
23520
23820
|
// Borders
|
|
23521
23821
|
.k-drawer-mini &.k-drawer-start,
|
|
23522
23822
|
.k-drawer-expanded &.k-drawer-start,
|
|
@@ -23866,6 +24166,12 @@ $notification-themes: () !default;
|
|
|
23866
24166
|
display: block;
|
|
23867
24167
|
-webkit-touch-callout: none;
|
|
23868
24168
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24169
|
+
|
|
24170
|
+
*,
|
|
24171
|
+
*::before,
|
|
24172
|
+
*::after {
|
|
24173
|
+
box-sizing: border-box;
|
|
24174
|
+
}
|
|
23869
24175
|
}
|
|
23870
24176
|
|
|
23871
24177
|
.k-notification-wrap {
|
|
@@ -24096,6 +24402,12 @@ $card-focus-callout-box-shadow-w: 2px -1px 4px 0 rgba( black, .06) !default;
|
|
|
24096
24402
|
overflow: hidden;
|
|
24097
24403
|
-webkit-touch-callout: none;
|
|
24098
24404
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24405
|
+
|
|
24406
|
+
*,
|
|
24407
|
+
*::before,
|
|
24408
|
+
*::after {
|
|
24409
|
+
box-sizing: border-box;
|
|
24410
|
+
}
|
|
24099
24411
|
}
|
|
24100
24412
|
.k-card > .k-card-inner {
|
|
24101
24413
|
@include border-radius( $card-inner-border-radius );
|
|
@@ -24636,6 +24948,12 @@ $popover-callout-shadow-w: rgba( black, .03 ) 2px -1px 4px 0px !default;
|
|
|
24636
24948
|
z-index: 12000;
|
|
24637
24949
|
-webkit-touch-callout: none;
|
|
24638
24950
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24951
|
+
|
|
24952
|
+
*,
|
|
24953
|
+
*::before,
|
|
24954
|
+
*::after {
|
|
24955
|
+
box-sizing: border-box;
|
|
24956
|
+
}
|
|
24639
24957
|
}
|
|
24640
24958
|
|
|
24641
24959
|
// Header
|
|
@@ -24904,6 +25222,12 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
24904
25222
|
outline: none;
|
|
24905
25223
|
-webkit-touch-callout: none;
|
|
24906
25224
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
25225
|
+
|
|
25226
|
+
*,
|
|
25227
|
+
*::before,
|
|
25228
|
+
*::after {
|
|
25229
|
+
box-sizing: border-box;
|
|
25230
|
+
}
|
|
24907
25231
|
}
|
|
24908
25232
|
|
|
24909
25233
|
.k-bottom-nav-border {
|
|
@@ -25149,6 +25473,12 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25149
25473
|
flex-direction: row;
|
|
25150
25474
|
-webkit-touch-callout: none;
|
|
25151
25475
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
25476
|
+
|
|
25477
|
+
*,
|
|
25478
|
+
*::before,
|
|
25479
|
+
*::after {
|
|
25480
|
+
box-sizing: border-box;
|
|
25481
|
+
}
|
|
25152
25482
|
}
|
|
25153
25483
|
|
|
25154
25484
|
|
|
@@ -25468,6 +25798,12 @@ $pager-dropdown-width: 5em !default;
|
|
|
25468
25798
|
-webkit-touch-callout: none;
|
|
25469
25799
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
25470
25800
|
|
|
25801
|
+
*,
|
|
25802
|
+
*::before,
|
|
25803
|
+
*::after {
|
|
25804
|
+
box-sizing: border-box;
|
|
25805
|
+
}
|
|
25806
|
+
|
|
25471
25807
|
.k-link {
|
|
25472
25808
|
text-decoration: none;
|
|
25473
25809
|
outline: 0;
|
|
@@ -25520,7 +25856,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25520
25856
|
%base-pager-item {
|
|
25521
25857
|
min-width: $button-calc-size;
|
|
25522
25858
|
height: $button-calc-size;
|
|
25523
|
-
box-sizing: border-box;
|
|
25524
25859
|
color: inherit;
|
|
25525
25860
|
text-align: center;
|
|
25526
25861
|
display: inline-flex;
|
|
@@ -25680,7 +26015,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25680
26015
|
}
|
|
25681
26016
|
|
|
25682
26017
|
height: $button-calc-size;
|
|
25683
|
-
box-sizing: border-box;
|
|
25684
26018
|
border-color: inherit;
|
|
25685
26019
|
}
|
|
25686
26020
|
|
|
@@ -25999,6 +26333,12 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
25999
26333
|
color: inherit;
|
|
26000
26334
|
background: none;
|
|
26001
26335
|
|
|
26336
|
+
*,
|
|
26337
|
+
*::before,
|
|
26338
|
+
*::after {
|
|
26339
|
+
box-sizing: border-box;
|
|
26340
|
+
}
|
|
26341
|
+
|
|
26002
26342
|
|
|
26003
26343
|
// Step list
|
|
26004
26344
|
.k-step-list {
|
|
@@ -26048,7 +26388,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
26048
26388
|
transition-property: color, background-color, border-color;
|
|
26049
26389
|
transition-duration: .4s;
|
|
26050
26390
|
transition-timing-function: ease-in-out;
|
|
26051
|
-
box-sizing: content-box;
|
|
26052
26391
|
|
|
26053
26392
|
&::after {
|
|
26054
26393
|
@include border-radius( 100% );
|
|
@@ -26708,19 +27047,27 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26708
27047
|
}
|
|
26709
27048
|
|
|
26710
27049
|
> .k-button {
|
|
26711
|
-
|
|
27050
|
+
width: auto;
|
|
27051
|
+
height: auto;
|
|
27052
|
+
flex: none;
|
|
26712
27053
|
align-self: stretch;
|
|
27054
|
+
aspect-ratio: auto;
|
|
27055
|
+
|
|
27056
|
+
.k-button-icon {
|
|
27057
|
+
min-width: auto;
|
|
27058
|
+
min-height: auto;
|
|
27059
|
+
}
|
|
26713
27060
|
}
|
|
26714
27061
|
|
|
26715
27062
|
&.k-hstack {
|
|
26716
27063
|
> .k-button {
|
|
26717
|
-
|
|
27064
|
+
padding: 0 map-get( $spacing, 1 );
|
|
26718
27065
|
}
|
|
26719
27066
|
}
|
|
26720
27067
|
|
|
26721
27068
|
&.k-vstack {
|
|
26722
27069
|
> .k-button {
|
|
26723
|
-
|
|
27070
|
+
padding: map-get( $spacing, 1 ) 0;
|
|
26724
27071
|
}
|
|
26725
27072
|
}
|
|
26726
27073
|
}
|
|
@@ -27288,6 +27635,12 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
27288
27635
|
-webkit-touch-callout: none;
|
|
27289
27636
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
27290
27637
|
|
|
27638
|
+
*,
|
|
27639
|
+
*::before,
|
|
27640
|
+
*::after {
|
|
27641
|
+
box-sizing: border-box;
|
|
27642
|
+
}
|
|
27643
|
+
|
|
27291
27644
|
.k-rtl &,
|
|
27292
27645
|
&.k-rtl,
|
|
27293
27646
|
&[dir = "rtl"] {
|
|
@@ -27327,7 +27680,6 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
27327
27680
|
// Expander content
|
|
27328
27681
|
.k-expander-content {
|
|
27329
27682
|
padding: $expander-content-padding-y $expander-content-padding-x;
|
|
27330
|
-
box-sizing: border-box;
|
|
27331
27683
|
}
|
|
27332
27684
|
|
|
27333
27685
|
// Multiple expanders
|
|
@@ -27531,6 +27883,12 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27531
27883
|
-webkit-touch-callout: none;
|
|
27532
27884
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
27533
27885
|
|
|
27886
|
+
*,
|
|
27887
|
+
*::before,
|
|
27888
|
+
*::after {
|
|
27889
|
+
box-sizing: border-box;
|
|
27890
|
+
}
|
|
27891
|
+
|
|
27534
27892
|
|
|
27535
27893
|
// Root
|
|
27536
27894
|
> .k-item,
|
|
@@ -33177,6 +33535,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
33177
33535
|
border-style: solid;
|
|
33178
33536
|
align-items: flex-start;
|
|
33179
33537
|
flex-wrap: wrap;
|
|
33538
|
+
box-shadow: none;
|
|
33180
33539
|
|
|
33181
33540
|
> * {
|
|
33182
33541
|
max-width: 100%;
|
|
@@ -33187,33 +33546,6 @@ $pivotgrid-remove-text: null !default;
|
|
|
33187
33546
|
}
|
|
33188
33547
|
}
|
|
33189
33548
|
|
|
33190
|
-
.k-pivot-toolbar .k-button,
|
|
33191
|
-
.k-fieldselector .k-list li.k-item {
|
|
33192
|
-
@include border-radius( $border-radius );
|
|
33193
|
-
padding: $button-padding-y $button-padding-x;
|
|
33194
|
-
padding-right: calc( #{$button-padding-x} + #{$icon-size * 3} );
|
|
33195
|
-
min-height: auto;
|
|
33196
|
-
font-size: $font-size;
|
|
33197
|
-
line-height: $button-line-height;
|
|
33198
|
-
text-align: left;
|
|
33199
|
-
white-space: normal;
|
|
33200
|
-
word-break: break-word;
|
|
33201
|
-
position: relative;
|
|
33202
|
-
cursor: move;
|
|
33203
|
-
|
|
33204
|
-
.k-field-actions .k-setting-delete {
|
|
33205
|
-
box-sizing: content-box;
|
|
33206
|
-
}
|
|
33207
|
-
}
|
|
33208
|
-
|
|
33209
|
-
.k-field-actions {
|
|
33210
|
-
position: absolute;
|
|
33211
|
-
right: $button-padding-y;
|
|
33212
|
-
top: $button-padding-y;
|
|
33213
|
-
line-height: 1;
|
|
33214
|
-
cursor: pointer;
|
|
33215
|
-
}
|
|
33216
|
-
|
|
33217
33549
|
.k-pivot-layout {
|
|
33218
33550
|
border-spacing: 0;
|
|
33219
33551
|
table-layout: auto;
|
|
@@ -33236,6 +33568,8 @@ $pivotgrid-remove-text: null !default;
|
|
|
33236
33568
|
.k-pivot-rowheaders > .k-grid,
|
|
33237
33569
|
.k-pivot-table > .k-grid {
|
|
33238
33570
|
border-width: 0;
|
|
33571
|
+
color: inherit;
|
|
33572
|
+
background: none;
|
|
33239
33573
|
}
|
|
33240
33574
|
|
|
33241
33575
|
.k-pivot-rowheaders > .k-grid td:first-child,
|
|
@@ -33299,77 +33633,73 @@ $pivotgrid-remove-text: null !default;
|
|
|
33299
33633
|
@include exports("pivotgrid/configurator/layout/legacy") {
|
|
33300
33634
|
|
|
33301
33635
|
|
|
33302
|
-
|
|
33303
|
-
|
|
33304
|
-
border-style: solid;
|
|
33636
|
+
// jquery specific -- old pivot
|
|
33637
|
+
.k-pivotgrid-wrapper {
|
|
33305
33638
|
box-sizing: border-box;
|
|
33306
|
-
|
|
33307
|
-
|
|
33308
|
-
|
|
33309
|
-
|
|
33310
|
-
-webkit-touch-callout: none;
|
|
33311
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
33312
|
-
|
|
33313
|
-
.k-columns {
|
|
33314
|
-
display: flex;
|
|
33315
|
-
align-items: stretch;
|
|
33316
|
-
|
|
33317
|
-
> div {
|
|
33318
|
-
padding: $table-cell-padding-y;
|
|
33319
|
-
width: 50%;
|
|
33320
|
-
box-sizing: border-box;
|
|
33321
|
-
border-width: 0;
|
|
33322
|
-
border-style: solid;
|
|
33323
|
-
float: left;
|
|
33324
|
-
overflow: auto;
|
|
33325
|
-
}
|
|
33326
|
-
> div + div {
|
|
33327
|
-
border-left-width: 1px;
|
|
33328
|
-
}
|
|
33329
|
-
}
|
|
33330
|
-
|
|
33639
|
+
display: flex;
|
|
33640
|
+
flex-flow: row nowrap;
|
|
33641
|
+
align-items: flex-start;
|
|
33642
|
+
gap: map-get( $spacing, 2 );
|
|
33331
33643
|
|
|
33332
|
-
|
|
33333
|
-
|
|
33334
|
-
|
|
33644
|
+
> .k-pivotgrid-configurator-panel {
|
|
33645
|
+
max-width: 320px;
|
|
33646
|
+
flex: none;
|
|
33335
33647
|
}
|
|
33336
|
-
|
|
33337
|
-
|
|
33648
|
+
> .k-pivot {
|
|
33649
|
+
flex: 1;
|
|
33338
33650
|
}
|
|
33651
|
+
}
|
|
33652
|
+
.k-pivotgrid-configurator-panel.kendo-jquery {
|
|
33653
|
+
box-sizing: border-box;
|
|
33654
|
+
display: inline-flex;
|
|
33339
33655
|
|
|
33340
|
-
|
|
33341
|
-
|
|
33342
|
-
.k-treeview {
|
|
33343
|
-
border-width: 0;
|
|
33344
|
-
overflow: visible;
|
|
33656
|
+
.k-pivotgrid-configurator {
|
|
33657
|
+
height: 100%;
|
|
33345
33658
|
}
|
|
33346
33659
|
|
|
33347
|
-
.k-
|
|
33348
|
-
|
|
33349
|
-
|
|
33350
|
-
|
|
33351
|
-
|
|
33660
|
+
.k-pivotgrid-configurator-content {
|
|
33661
|
+
padding: map-get( $spacing, 4 );
|
|
33662
|
+
max-height: 100%;
|
|
33663
|
+
display: flex;
|
|
33664
|
+
flex-flow: column nowrap;
|
|
33665
|
+
gap: map-get( $spacing, 4 );
|
|
33666
|
+
overflow-x: hidden;
|
|
33667
|
+
overflow-y: auto;
|
|
33352
33668
|
}
|
|
33353
33669
|
|
|
33354
|
-
|
|
33355
|
-
|
|
33356
|
-
|
|
33357
|
-
|
|
33358
|
-
padding: $padding-y-sm;
|
|
33359
|
-
border-width: 1px;
|
|
33360
|
-
border-style: solid;
|
|
33670
|
+
.k-pivotgrid-targets {
|
|
33671
|
+
display: flex;
|
|
33672
|
+
flex-flow: column nowrap;
|
|
33673
|
+
gap: map-get( $spacing, 4 );
|
|
33361
33674
|
}
|
|
33362
|
-
|
|
33363
|
-
|
|
33675
|
+
|
|
33676
|
+
.k-pivotgrid-configurator-section {
|
|
33677
|
+
display: flex;
|
|
33678
|
+
flex-flow: column nowrap;
|
|
33679
|
+
gap: map-get( $spacing, 2 );
|
|
33364
33680
|
}
|
|
33365
|
-
|
|
33681
|
+
|
|
33682
|
+
.k-column-fields {
|
|
33683
|
+
margin: 0;
|
|
33684
|
+
padding: map-get( $spacing, 1 );
|
|
33685
|
+
max-height: 200px;
|
|
33366
33686
|
border-width: 1px;
|
|
33367
33687
|
border-style: solid;
|
|
33688
|
+
display: flex;
|
|
33689
|
+
flex-flow: row wrap;
|
|
33690
|
+
gap: map-get( $spacing, 1 );
|
|
33691
|
+
overflow-x: hidden;
|
|
33692
|
+
overflow-y: auto;
|
|
33693
|
+
|
|
33694
|
+
> * {
|
|
33695
|
+
margin: 0;
|
|
33696
|
+
}
|
|
33368
33697
|
}
|
|
33369
|
-
.k-
|
|
33370
|
-
|
|
33698
|
+
.k-ie & .k-column-fields {
|
|
33699
|
+
> * {
|
|
33700
|
+
margin: 2px;
|
|
33701
|
+
}
|
|
33371
33702
|
}
|
|
33372
|
-
|
|
33373
33703
|
}
|
|
33374
33704
|
|
|
33375
33705
|
}
|
|
@@ -33584,103 +33914,59 @@ $pivotgrid-remove-text: null !default;
|
|
|
33584
33914
|
@include exports("pivotgrid/theme/legacy") {
|
|
33585
33915
|
|
|
33586
33916
|
.k-pivot {
|
|
33917
|
+
@include fill (
|
|
33918
|
+
$pivotgrid-text,
|
|
33919
|
+
$pivotgrid-bg,
|
|
33920
|
+
$pivotgrid-border
|
|
33921
|
+
);
|
|
33922
|
+
}
|
|
33923
|
+
.k-pivot-table {
|
|
33587
33924
|
border-color: $pivotgrid-border;
|
|
33588
33925
|
}
|
|
33589
33926
|
|
|
33590
|
-
|
|
33591
|
-
.k-pivot-
|
|
33592
|
-
|
|
33927
|
+
// Pivotgrid header
|
|
33928
|
+
.k-pivot-rowheaders {
|
|
33929
|
+
@include fill(
|
|
33930
|
+
$pivotgrid-headers-text,
|
|
33931
|
+
$pivotgrid-headers-bg,
|
|
33932
|
+
$pivotgrid-headers-border
|
|
33933
|
+
);
|
|
33593
33934
|
}
|
|
33594
33935
|
|
|
33595
|
-
|
|
33596
|
-
|
|
33936
|
+
|
|
33937
|
+
// Pivotgrid toolbar
|
|
33938
|
+
.k-pivot-toolbar {
|
|
33939
|
+
@include fill(
|
|
33940
|
+
$pivotgrid-headers-text,
|
|
33941
|
+
$pivotgrid-headers-bg,
|
|
33942
|
+
$pivotgrid-headers-border
|
|
33943
|
+
);
|
|
33944
|
+
|
|
33945
|
+
.k-empty {
|
|
33946
|
+
color: $subtle-text;
|
|
33947
|
+
}
|
|
33597
33948
|
}
|
|
33598
33949
|
|
|
33599
|
-
.k-
|
|
33600
|
-
background-color: $pivotgrid-
|
|
33950
|
+
.k-alt {
|
|
33951
|
+
background-color: $pivotgrid-alt-bg;
|
|
33601
33952
|
}
|
|
33602
33953
|
|
|
33603
33954
|
.k-pivot-toolbar,
|
|
33604
33955
|
.k-pivot-table,
|
|
33605
|
-
.k-fieldselector,
|
|
33606
|
-
.k-fieldselector .k-list-container,
|
|
33607
|
-
.k-fieldselector .k-columns > div,
|
|
33608
33956
|
.k-pivot-rowheaders > .k-grid td:first-child,
|
|
33609
33957
|
.k-pivot-table .k-grid-header .k-header.k-first {
|
|
33610
33958
|
border-color: $pivotgrid-chrome-border;
|
|
33611
33959
|
}
|
|
33612
33960
|
|
|
33613
|
-
.k-pivot-rowheaders .k-alt .k-alt,
|
|
33614
33961
|
.k-header.k-alt {
|
|
33615
33962
|
background-color: $pivotgrid-row-headers-bg;
|
|
33616
33963
|
}
|
|
33617
33964
|
|
|
33618
|
-
.k-pivot-
|
|
33619
|
-
.k-fieldselector .k-list li.k-item {
|
|
33620
|
-
@include fill(
|
|
33621
|
-
$button-text,
|
|
33622
|
-
$button-bg,
|
|
33623
|
-
$button-border,
|
|
33624
|
-
$button-gradient
|
|
33625
|
-
);
|
|
33626
|
-
|
|
33627
|
-
&:hover,
|
|
33628
|
-
&.k-state-hover {
|
|
33629
|
-
@include fill(
|
|
33630
|
-
$button-hovered-text,
|
|
33631
|
-
$button-hovered-bg,
|
|
33632
|
-
$button-hovered-border,
|
|
33633
|
-
$button-hovered-gradient
|
|
33634
|
-
);
|
|
33635
|
-
}
|
|
33636
|
-
|
|
33637
|
-
// Pressed state
|
|
33638
|
-
&:active,
|
|
33639
|
-
&.k-state-active {
|
|
33640
|
-
@include fill(
|
|
33641
|
-
$button-active-text,
|
|
33642
|
-
$button-active-bg,
|
|
33643
|
-
$button-active-border,
|
|
33644
|
-
$button-active-gradient
|
|
33645
|
-
);
|
|
33646
|
-
}
|
|
33647
|
-
|
|
33648
|
-
// Focused state
|
|
33649
|
-
&:focus,
|
|
33650
|
-
&.k-state-focus,
|
|
33651
|
-
&.k-state-focused {
|
|
33652
|
-
box-shadow: $button-focused-shadow;
|
|
33653
|
-
}
|
|
33654
|
-
|
|
33655
|
-
&.k-empty {
|
|
33656
|
-
color: $subtle-text;
|
|
33657
|
-
}
|
|
33658
|
-
}
|
|
33659
|
-
|
|
33660
|
-
.k-pivot-toolbar {
|
|
33661
|
-
.k-empty {
|
|
33662
|
-
color: $subtle-text;
|
|
33663
|
-
}
|
|
33664
|
-
}
|
|
33665
|
-
|
|
33666
|
-
.k-pivot-layout .k-grid-footer,
|
|
33667
|
-
.k-pivot-layout .k-grid.k-alt {
|
|
33965
|
+
.k-pivot-layout .k-grid-footer {
|
|
33668
33966
|
color: $pivotgrid-alt-text;
|
|
33669
33967
|
background-color: $pivotgrid-alt-bg;
|
|
33670
33968
|
}
|
|
33671
33969
|
|
|
33672
|
-
// Loading indicator
|
|
33673
|
-
.k-fieldselector {
|
|
33674
|
-
.k-i-loading {
|
|
33675
|
-
border-color: $header-bg;
|
|
33676
|
-
}
|
|
33677
|
-
|
|
33678
|
-
.k-i-loading::before,
|
|
33679
|
-
.k-i-loading::after {
|
|
33680
|
-
background-color: $header-bg;
|
|
33681
|
-
}
|
|
33682
|
-
}
|
|
33683
|
-
|
|
33684
33970
|
// KPI icons
|
|
33685
33971
|
.k-i-kpi-trend-increase,
|
|
33686
33972
|
.k-i-kpi-trend-decrease,
|
|
@@ -33699,6 +33985,16 @@ $pivotgrid-remove-text: null !default;
|
|
|
33699
33985
|
.k-i-kpi-status-open {
|
|
33700
33986
|
color: $success;
|
|
33701
33987
|
}
|
|
33988
|
+
|
|
33989
|
+
|
|
33990
|
+
// Configurator
|
|
33991
|
+
.k-pivotgrid-configurator-panel.kendo-jquery {
|
|
33992
|
+
|
|
33993
|
+
.k-column-fields {
|
|
33994
|
+
border-color: $component-border;
|
|
33995
|
+
}
|
|
33996
|
+
|
|
33997
|
+
}
|
|
33702
33998
|
}
|
|
33703
33999
|
|
|
33704
34000
|
// #endregion
|
|
@@ -33896,11 +34192,19 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
33896
34192
|
// #endregion
|
|
33897
34193
|
// #region @import "_layout.scss"; -> packages/default/scss/filter/_layout.scss
|
|
33898
34194
|
@include exports("filter/layout") {
|
|
34195
|
+
|
|
33899
34196
|
.k-filter {
|
|
34197
|
+
box-sizing: border-box;
|
|
33900
34198
|
border-width: 0;
|
|
33901
34199
|
display: inline-block;
|
|
33902
34200
|
background-color: transparent;
|
|
33903
34201
|
|
|
34202
|
+
*,
|
|
34203
|
+
*::before,
|
|
34204
|
+
*::after {
|
|
34205
|
+
box-sizing: border-box;
|
|
34206
|
+
}
|
|
34207
|
+
|
|
33904
34208
|
ul {
|
|
33905
34209
|
padding: 0;
|
|
33906
34210
|
|
|
@@ -34658,6 +34962,12 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
34658
34962
|
display: flex;
|
|
34659
34963
|
flex-direction: column;
|
|
34660
34964
|
position: relative;
|
|
34965
|
+
|
|
34966
|
+
*,
|
|
34967
|
+
*::before,
|
|
34968
|
+
*::after {
|
|
34969
|
+
box-sizing: border-box;
|
|
34970
|
+
}
|
|
34661
34971
|
}
|
|
34662
34972
|
|
|
34663
34973
|
// Toolbar
|
|
@@ -34726,7 +35036,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
34726
35036
|
.k-taskboard-column-cards {
|
|
34727
35037
|
padding: $taskboard-column-cards-padding-y $taskboard-column-cards-padding-x;
|
|
34728
35038
|
min-height: 100%;
|
|
34729
|
-
box-sizing: border-box;
|
|
34730
35039
|
display: flex;
|
|
34731
35040
|
flex-direction: column;
|
|
34732
35041
|
gap: $taskboard-column-cards-gap 0;
|
|
@@ -34758,7 +35067,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
34758
35067
|
width: $taskboard-pane-width;
|
|
34759
35068
|
border-width: $taskboard-pane-border-width;
|
|
34760
35069
|
border-style: solid;
|
|
34761
|
-
box-sizing: border-box;
|
|
34762
35070
|
display: flex;
|
|
34763
35071
|
flex-direction: column;
|
|
34764
35072
|
position: absolute;
|
|
@@ -35990,6 +36298,12 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
35990
36298
|
line-height: $imageeditor-line-height;
|
|
35991
36299
|
-webkit-touch-callout: none;
|
|
35992
36300
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
36301
|
+
|
|
36302
|
+
*,
|
|
36303
|
+
*::before,
|
|
36304
|
+
*::after {
|
|
36305
|
+
box-sizing: border-box;
|
|
36306
|
+
}
|
|
35993
36307
|
}
|
|
35994
36308
|
|
|
35995
36309
|
|
|
@@ -38652,6 +38966,12 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38652
38966
|
flex-shrink: 0;
|
|
38653
38967
|
font-size: inherit;
|
|
38654
38968
|
}
|
|
38969
|
+
|
|
38970
|
+
.k-no-data {
|
|
38971
|
+
height: auto;
|
|
38972
|
+
min-height: auto;
|
|
38973
|
+
color: inherit;
|
|
38974
|
+
}
|
|
38655
38975
|
}
|
|
38656
38976
|
|
|
38657
38977
|
}
|
|
@@ -39766,12 +40086,13 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39766
40086
|
|
|
39767
40087
|
|
|
39768
40088
|
.k-scroll-button {
|
|
40089
|
+
// IMPORTANT: if we don't set padding, the browser will set for us
|
|
40090
|
+
padding: 0 map-get( $spacing, 1 );
|
|
39769
40091
|
height: 100%;
|
|
39770
40092
|
aspect-ratio: auto;
|
|
39771
40093
|
position: absolute;
|
|
39772
40094
|
z-index: 2;
|
|
39773
|
-
top:
|
|
39774
|
-
transform: translateY(-50%);
|
|
40095
|
+
top: 0;
|
|
39775
40096
|
|
|
39776
40097
|
.k-button-icon {
|
|
39777
40098
|
min-width: auto;
|
|
@@ -40025,6 +40346,12 @@ $mediaplayer-titlebar-gradient: rgba( $mediaplayer-text, .7 ), rgba( $mediaplaye
|
|
|
40025
40346
|
-webkit-touch-callout: none;
|
|
40026
40347
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
40027
40348
|
|
|
40349
|
+
*,
|
|
40350
|
+
*::before,
|
|
40351
|
+
*::after {
|
|
40352
|
+
box-sizing: border-box;
|
|
40353
|
+
}
|
|
40354
|
+
|
|
40028
40355
|
> iframe {
|
|
40029
40356
|
width: 100%;
|
|
40030
40357
|
height: 100%;
|
|
@@ -40241,6 +40568,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40241
40568
|
-webkit-touch-callout: none;
|
|
40242
40569
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
40243
40570
|
|
|
40571
|
+
*,
|
|
40572
|
+
*::before,
|
|
40573
|
+
*::after {
|
|
40574
|
+
box-sizing: border-box;
|
|
40575
|
+
}
|
|
40576
|
+
|
|
40244
40577
|
ul {
|
|
40245
40578
|
margin: 0;
|
|
40246
40579
|
padding: 0;
|
|
@@ -40258,7 +40591,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40258
40591
|
line-height: $timeline-flag-line-height;
|
|
40259
40592
|
min-width: $timeline-flag-min-width;
|
|
40260
40593
|
max-width: $timeline-flag-max-width;
|
|
40261
|
-
box-sizing: border-box;
|
|
40262
40594
|
position: relative;
|
|
40263
40595
|
z-index: 1;
|
|
40264
40596
|
}
|
|
@@ -40338,7 +40670,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40338
40670
|
margin: $timeline-spacing-y 0;
|
|
40339
40671
|
width: 100%;
|
|
40340
40672
|
position: relative;
|
|
40341
|
-
box-sizing: border-box;
|
|
40342
40673
|
border: 0;
|
|
40343
40674
|
}
|
|
40344
40675
|
|
|
@@ -40528,12 +40859,10 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40528
40859
|
|
|
40529
40860
|
.k-timeline-card {
|
|
40530
40861
|
height: 100%;
|
|
40531
|
-
box-sizing: border-box;
|
|
40532
40862
|
}
|
|
40533
40863
|
|
|
40534
40864
|
.k-card {
|
|
40535
40865
|
max-height: 100%;
|
|
40536
|
-
box-sizing: border-box;
|
|
40537
40866
|
}
|
|
40538
40867
|
|
|
40539
40868
|
.k-timeline-events-list {
|
|
@@ -42335,12 +42664,19 @@ $map-marker-fill: $primary !default;
|
|
|
42335
42664
|
// Layout
|
|
42336
42665
|
.k-map {
|
|
42337
42666
|
height: 600px;
|
|
42667
|
+
box-sizing: border-box;
|
|
42338
42668
|
border-width: $map-border-width;
|
|
42339
42669
|
border-style: solid;
|
|
42340
42670
|
font-size: $map-font-size;
|
|
42341
42671
|
line-height: $map-line-height;
|
|
42342
42672
|
font-family: $map-font-family;
|
|
42343
42673
|
|
|
42674
|
+
*,
|
|
42675
|
+
*::before,
|
|
42676
|
+
*::after {
|
|
42677
|
+
box-sizing: border-box;
|
|
42678
|
+
}
|
|
42679
|
+
|
|
42344
42680
|
|
|
42345
42681
|
// Scroll
|
|
42346
42682
|
.km-scroll-wrapper {
|
|
@@ -42608,6 +42944,12 @@ $orgchart-line-v-height: 25px !default;
|
|
|
42608
42944
|
font-family: $orgchart-font-family;
|
|
42609
42945
|
line-height: $orgchart-line-height;
|
|
42610
42946
|
overflow: auto;
|
|
42947
|
+
|
|
42948
|
+
*,
|
|
42949
|
+
*::before,
|
|
42950
|
+
*::after {
|
|
42951
|
+
box-sizing: border-box;
|
|
42952
|
+
}
|
|
42611
42953
|
}
|
|
42612
42954
|
|
|
42613
42955
|
.k-orgchart-container {
|