@syncfusion/ej2-angular-splitbuttons 20.1.55 → 20.2.36
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +23 -0
- package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +64 -0
- package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +34 -0
- package/esm2020/src/drop-down-button/items.directive.mjs +46 -0
- package/esm2020/src/index.mjs +13 -0
- package/esm2020/src/progress-button/progressbutton-all.module.mjs +23 -0
- package/esm2020/src/progress-button/progressbutton.component.mjs +59 -0
- package/esm2020/src/progress-button/progressbutton.module.mjs +25 -0
- package/esm2020/src/split-button/items.directive.mjs +46 -0
- package/esm2020/src/split-button/splitbutton-all.module.mjs +23 -0
- package/esm2020/src/split-button/splitbutton.component.mjs +64 -0
- package/esm2020/src/split-button/splitbutton.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/package.json +28 -14
- package/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
- package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
- package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
- package/src/drop-down-button/items.directive.d.ts +5 -0
- package/src/progress-button/progressbutton-all.module.d.ts +6 -0
- package/src/progress-button/progressbutton.component.d.ts +3 -0
- package/src/progress-button/progressbutton.module.d.ts +6 -0
- package/src/split-button/items.directive.d.ts +5 -0
- package/src/split-button/splitbutton-all.module.d.ts +6 -0
- package/src/split-button/splitbutton.component.d.ts +3 -0
- package/src/split-button/splitbutton.module.d.ts +7 -0
- package/styles/bootstrap-dark.css +0 -8
- package/styles/bootstrap.css +0 -8
- package/styles/bootstrap4.css +0 -8
- package/styles/bootstrap5-dark.css +14 -0
- package/styles/bootstrap5.css +14 -0
- package/styles/button-group/_all.scss +2 -0
- package/styles/button-group/_bootstrap-dark-definition.scss +32 -0
- package/styles/button-group/_bootstrap-definition.scss +30 -0
- package/styles/button-group/_bootstrap4-definition.scss +30 -0
- package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
- package/styles/button-group/_bootstrap5-definition.scss +31 -0
- package/styles/button-group/_fabric-dark-definition.scss +32 -0
- package/styles/button-group/_fabric-definition.scss +30 -0
- package/styles/button-group/_fluent-dark-definition.scss +1 -0
- package/styles/button-group/_fluent-definition.scss +31 -0
- package/styles/button-group/_fusionnew-definition.scss +31 -0
- package/styles/button-group/_group-button-mixin.scss +72 -0
- package/styles/button-group/_highcontrast-definition.scss +32 -0
- package/styles/button-group/_highcontrast-light-definition.scss +35 -0
- package/styles/button-group/_layout.scss +288 -0
- package/styles/button-group/_material-dark-definition.scss +32 -0
- package/styles/button-group/_material-definition.scss +30 -0
- package/styles/button-group/_material3-definition.scss +31 -0
- package/styles/button-group/_tailwind-dark-definition.scss +1 -0
- package/styles/button-group/_tailwind-definition.scss +31 -0
- package/styles/button-group/_theme.scss +386 -0
- package/styles/button-group/bootstrap-dark.css +0 -8
- package/styles/button-group/bootstrap-dark.scss +4 -1
- package/styles/button-group/bootstrap.css +0 -8
- package/styles/button-group/bootstrap.scss +4 -1
- package/styles/button-group/bootstrap4.css +0 -8
- package/styles/button-group/bootstrap4.scss +4 -1
- package/styles/button-group/bootstrap5-dark.css +12 -0
- package/styles/button-group/bootstrap5-dark.scss +4 -1
- package/styles/button-group/bootstrap5.css +12 -0
- package/styles/button-group/bootstrap5.scss +4 -1
- package/styles/button-group/fabric-dark.css +0 -8
- package/styles/button-group/fabric-dark.scss +4 -1
- package/styles/button-group/fabric.css +0 -8
- package/styles/button-group/fabric.scss +4 -1
- package/styles/button-group/fluent-dark.css +0 -8
- package/styles/button-group/fluent-dark.scss +4 -1
- package/styles/button-group/fluent.css +0 -8
- package/styles/button-group/fluent.scss +4 -1
- package/styles/button-group/highcontrast-light.css +0 -8
- package/styles/button-group/highcontrast-light.scss +4 -1
- package/styles/button-group/highcontrast.css +0 -8
- package/styles/button-group/highcontrast.scss +4 -1
- package/styles/button-group/material-dark.css +0 -8
- package/styles/button-group/material-dark.scss +4 -1
- package/styles/button-group/material.css +0 -8
- package/styles/button-group/material.scss +4 -1
- package/styles/button-group/tailwind-dark.css +8 -12
- package/styles/button-group/tailwind-dark.scss +4 -1
- package/styles/button-group/tailwind.css +8 -12
- package/styles/button-group/tailwind.scss +4 -1
- package/styles/drop-down-button/_all.scss +2 -0
- package/styles/drop-down-button/_bootstrap-dark-definition.scss +50 -0
- package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-button/_bootstrap5-definition.scss +51 -0
- package/styles/drop-down-button/_fabric-dark-definition.scss +50 -0
- package/styles/drop-down-button/_fabric-definition.scss +48 -0
- package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-button/_fluent-definition.scss +52 -0
- package/styles/drop-down-button/_fusionnew-definition.scss +51 -0
- package/styles/drop-down-button/_highcontrast-definition.scss +48 -0
- package/styles/drop-down-button/_highcontrast-light-definition.scss +49 -0
- package/styles/drop-down-button/_layout.scss +217 -0
- package/styles/drop-down-button/_material-dark-definition.scss +50 -0
- package/styles/drop-down-button/_material-definition.scss +48 -0
- package/styles/drop-down-button/_material3-definition.scss +51 -0
- package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-button/_tailwind-definition.scss +50 -0
- package/styles/drop-down-button/_theme.scss +57 -0
- package/styles/drop-down-button/bootstrap-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap.scss +6 -1
- package/styles/drop-down-button/bootstrap4.scss +6 -1
- package/styles/drop-down-button/bootstrap5-dark.css +2 -0
- package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap5.css +2 -0
- package/styles/drop-down-button/bootstrap5.scss +6 -1
- package/styles/drop-down-button/fabric-dark.scss +6 -1
- package/styles/drop-down-button/fabric.scss +6 -1
- package/styles/drop-down-button/fluent-dark.scss +6 -1
- package/styles/drop-down-button/fluent.scss +6 -1
- package/styles/drop-down-button/highcontrast-light.scss +6 -1
- package/styles/drop-down-button/highcontrast.scss +6 -1
- package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
- package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
- package/styles/drop-down-button/icons/_fabric.scss +10 -0
- package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
- package/styles/drop-down-button/icons/_fluent.scss +10 -0
- package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
- package/styles/drop-down-button/icons/_material-dark.scss +10 -0
- package/styles/drop-down-button/icons/_material.scss +10 -0
- package/styles/drop-down-button/icons/_material3.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind.scss +10 -0
- package/styles/drop-down-button/material-dark.scss +6 -1
- package/styles/drop-down-button/material.scss +6 -1
- package/styles/drop-down-button/tailwind-dark.css +2 -0
- package/styles/drop-down-button/tailwind-dark.scss +6 -1
- package/styles/drop-down-button/tailwind.css +2 -0
- package/styles/drop-down-button/tailwind.scss +6 -1
- package/styles/fabric-dark.css +0 -8
- package/styles/fabric.css +0 -8
- package/styles/fluent-dark.css +1 -9
- package/styles/fluent.css +1 -9
- package/styles/highcontrast-light.css +0 -8
- package/styles/highcontrast.css +0 -8
- package/styles/material-dark.css +0 -8
- package/styles/material.css +0 -8
- package/styles/progress-button/_all.scss +2 -0
- package/styles/progress-button/_bootstrap-dark-definition.scss +26 -0
- package/styles/progress-button/_bootstrap-definition.scss +24 -0
- package/styles/progress-button/_bootstrap4-definition.scss +24 -0
- package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/progress-button/_bootstrap5-definition.scss +21 -0
- package/styles/progress-button/_fabric-dark-definition.scss +26 -0
- package/styles/progress-button/_fabric-definition.scss +24 -0
- package/styles/progress-button/_fluent-dark-definition.scss +1 -0
- package/styles/progress-button/_fluent-definition.scss +21 -0
- package/styles/progress-button/_fusionnew-definition.scss +21 -0
- package/styles/progress-button/_highcontrast-definition.scss +24 -0
- package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
- package/styles/progress-button/_layout.scss +395 -0
- package/styles/progress-button/_material-dark-definition.scss +26 -0
- package/styles/progress-button/_material-definition.scss +24 -0
- package/styles/progress-button/_material3-definition.scss +21 -0
- package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
- package/styles/progress-button/_tailwind-definition.scss +21 -0
- package/styles/progress-button/_theme.scss +456 -0
- package/styles/progress-button/bootstrap-dark.scss +5 -1
- package/styles/progress-button/bootstrap.scss +5 -1
- package/styles/progress-button/bootstrap4.scss +5 -1
- package/styles/progress-button/bootstrap5-dark.scss +5 -1
- package/styles/progress-button/bootstrap5.scss +5 -1
- package/styles/progress-button/fabric-dark.scss +5 -1
- package/styles/progress-button/fabric.scss +5 -1
- package/styles/progress-button/fluent-dark.css +1 -1
- package/styles/progress-button/fluent-dark.scss +5 -1
- package/styles/progress-button/fluent.css +1 -1
- package/styles/progress-button/fluent.scss +5 -1
- package/styles/progress-button/highcontrast-light.scss +5 -1
- package/styles/progress-button/highcontrast.scss +5 -1
- package/styles/progress-button/material-dark.scss +5 -1
- package/styles/progress-button/material.scss +5 -1
- package/styles/progress-button/tailwind-dark.scss +5 -1
- package/styles/progress-button/tailwind.scss +5 -1
- package/styles/split-button/_all.scss +2 -0
- package/styles/split-button/_bootstrap-dark-definition.scss +25 -0
- package/styles/split-button/_bootstrap-definition.scss +23 -0
- package/styles/split-button/_bootstrap4-definition.scss +25 -0
- package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/split-button/_bootstrap5-definition.scss +25 -0
- package/styles/split-button/_fabric-dark-definition.scss +25 -0
- package/styles/split-button/_fabric-definition.scss +23 -0
- package/styles/split-button/_fluent-dark-definition.scss +1 -0
- package/styles/split-button/_fluent-definition.scss +25 -0
- package/styles/split-button/_fusionnew-definition.scss +25 -0
- package/styles/split-button/_highcontrast-definition.scss +23 -0
- package/styles/split-button/_highcontrast-light-definition.scss +26 -0
- package/styles/split-button/_layout.scss +419 -0
- package/styles/split-button/_material-dark-definition.scss +25 -0
- package/styles/split-button/_material-definition.scss +23 -0
- package/styles/split-button/_material3-definition.scss +25 -0
- package/styles/split-button/_tailwind-dark-definition.scss +1 -0
- package/styles/split-button/_tailwind-definition.scss +25 -0
- package/styles/split-button/_theme.scss +136 -0
- package/styles/split-button/bootstrap-dark.scss +6 -1
- package/styles/split-button/bootstrap.scss +6 -1
- package/styles/split-button/bootstrap4.scss +6 -1
- package/styles/split-button/bootstrap5-dark.scss +6 -1
- package/styles/split-button/bootstrap5.scss +6 -1
- package/styles/split-button/fabric-dark.scss +6 -1
- package/styles/split-button/fabric.scss +6 -1
- package/styles/split-button/fluent-dark.scss +6 -1
- package/styles/split-button/fluent.scss +6 -1
- package/styles/split-button/highcontrast-light.scss +6 -1
- package/styles/split-button/highcontrast.scss +6 -1
- package/styles/split-button/material-dark.scss +6 -1
- package/styles/split-button/material.scss +6 -1
- package/styles/split-button/tailwind-dark.scss +6 -1
- package/styles/split-button/tailwind.scss +6 -1
- package/styles/tailwind-dark.css +10 -12
- package/styles/tailwind.css +10 -12
- package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
- package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
- package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
- package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
- package/CHANGELOG.md +0 -250
- package/dist/ej2-angular-splitbuttons.umd.js +0 -603
- package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
- package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
- package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
- package/ej2-angular-splitbuttons.d.ts +0 -7
- package/ej2-angular-splitbuttons.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -25
- package/schematics/generators/dropdownbutton-default/index.d.ts +0 -3
- package/schematics/generators/dropdownbutton-default/index.js +0 -8
- package/schematics/generators/dropdownbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/dropdownbutton-default/sample-details.js +0 -7
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -49
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
- package/schematics/generators/dropdownbutton-default/schema.d.ts +0 -3
- package/schematics/generators/dropdownbutton-default/schema.js +0 -2
- package/schematics/generators/dropdownbutton-default/schema.json +0 -124
- package/schematics/generators/progressbutton-default/index.d.ts +0 -3
- package/schematics/generators/progressbutton-default/index.js +0 -8
- package/schematics/generators/progressbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/progressbutton-default/sample-details.js +0 -7
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -47
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -53
- package/schematics/generators/progressbutton-default/schema.d.ts +0 -3
- package/schematics/generators/progressbutton-default/schema.js +0 -2
- package/schematics/generators/progressbutton-default/schema.json +0 -124
- package/schematics/generators/splitbutton-default/index.d.ts +0 -3
- package/schematics/generators/splitbutton-default/index.js +0 -8
- package/schematics/generators/splitbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/splitbutton-default/sample-details.js +0 -7
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -37
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
- package/schematics/generators/splitbutton-default/schema.d.ts +0 -3
- package/schematics/generators/splitbutton-default/schema.js +0 -2
- package/schematics/generators/splitbutton-default/schema.json +0 -124
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$split-btn-zindex: 2 !default;
|
|
3
|
+
$split-btn-border-radius: 4px !default;
|
|
4
|
+
$split-btn-focus-outline-offset: 0 !default;
|
|
5
|
+
$split-btn-vertical-secondary-icon-line-height: .334em !default;
|
|
6
|
+
$split-btn-seperator-border: 1px solid !default;
|
|
7
|
+
$split-btn-sec-btn-margin-left: -1px !default;
|
|
8
|
+
$split-btn-icon-btn-padding: 8px !default;
|
|
9
|
+
$split-btn-icon-btn-padding-bigger: 12px !default;
|
|
10
|
+
$split-btn-focus-border-color: $secondary-border-color !default;
|
|
11
|
+
$split-btn-focus-vertical-border-color: $secondary-border-color !default;
|
|
12
|
+
$split-btn-seperator-border-color: $secondary-border-color !default;
|
|
13
|
+
$split-btn-seperator-default-border-color: $secondary-border-color !default;
|
|
14
|
+
$split-btn-seperator-vertical-border-color: $secondary-border-color !default;
|
|
15
|
+
$split-btn-hover-border-color: $secondary-border-color !default;
|
|
16
|
+
$split-btn-hover-vertical-border-color: $secondary-border-color !default;
|
|
17
|
+
$split-btn-active-border-color: $secondary-bg-color-pressed !default;
|
|
18
|
+
$split-btn-active-vertical-border-color: $secondary-bg-color-pressed !default;
|
|
19
|
+
$split-btn-disabled-vertical-border-color: $secondary-border-color !default;
|
|
20
|
+
$split-btn-active-box-shadow: $shadow-focus-ring2 !default;
|
|
21
|
+
$split-btn-disabled-left-border-color: $secondary-border-color !default;
|
|
22
|
+
$split-btn-hover-left-border-color: $secondary-border-color !default;
|
|
23
|
+
$split-btn-focus-left-border-color: $secondary-border-color !default;
|
|
24
|
+
$split-btn-active-left-border-color: $secondary-border-color !default;
|
|
25
|
+
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
@include export-module('split-button-theme') {
|
|
2
|
+
/*! splitbutton theme */
|
|
3
|
+
.e-split-btn-wrapper {
|
|
4
|
+
.e-split-btn {
|
|
5
|
+
border-right-color: $split-btn-seperator-border-color;
|
|
6
|
+
|
|
7
|
+
&:focus {
|
|
8
|
+
border-right-color: $split-btn-focus-border-color;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&:active {
|
|
12
|
+
border-right-color: $split-btn-active-border-color;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&:disabled {
|
|
16
|
+
border-right-color: $btn-disabled-bgcolor;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&:hover :not(e-active) {
|
|
21
|
+
& .e-split-btn {
|
|
22
|
+
border-right-color: $split-btn-hover-border-color;
|
|
23
|
+
|
|
24
|
+
&:disabled {
|
|
25
|
+
border-right-color: $btn-disabled-border-color;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&.e-rtl {
|
|
31
|
+
.e-split-btn {
|
|
32
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' {
|
|
33
|
+
border-color: transparent;
|
|
34
|
+
}
|
|
35
|
+
@else {
|
|
36
|
+
border-left-color: $split-btn-seperator-border-color;
|
|
37
|
+
border-right-color: $split-btn-seperator-default-border-color;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&:focus {
|
|
41
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' {
|
|
42
|
+
border-color: transparent;
|
|
43
|
+
}
|
|
44
|
+
@else {
|
|
45
|
+
border-left-color: $split-btn-focus-border-color;
|
|
46
|
+
border-right-color: $split-btn-focus-vertical-border-color;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&:active {
|
|
51
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' {
|
|
52
|
+
border-color: transparent;
|
|
53
|
+
}
|
|
54
|
+
@else {
|
|
55
|
+
border-left-color: $split-btn-active-border-color;
|
|
56
|
+
border-right-color: $split-btn-active-vertical-border-color;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&:disabled {
|
|
61
|
+
border-left-color: $btn-disabled-border-color;
|
|
62
|
+
border-right-color: $split-btn-disabled-vertical-border-color;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&:hover {
|
|
67
|
+
& .e-split-btn :not(e-active) {
|
|
68
|
+
border-left-color: $split-btn-hover-border-color;
|
|
69
|
+
border-right-color: $split-btn-hover-vertical-border-color;
|
|
70
|
+
|
|
71
|
+
&:disabled {
|
|
72
|
+
border-left-color: $btn-disabled-border-color;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.e-vertical {
|
|
79
|
+
.e-split-btn {
|
|
80
|
+
border-bottom-color: $split-btn-seperator-vertical-border-color;
|
|
81
|
+
border-right-color: $split-btn-seperator-default-border-color;
|
|
82
|
+
|
|
83
|
+
&:focus {
|
|
84
|
+
border-bottom-color: $split-btn-focus-border-color;
|
|
85
|
+
border-right-color: $split-btn-focus-vertical-border-color;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&:active {
|
|
89
|
+
border-bottom-color: $split-btn-active-border-color;
|
|
90
|
+
border-right-color: $split-btn-active-vertical-border-color;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
&:disabled {
|
|
94
|
+
border-bottom-color: $btn-disabled-border-color;
|
|
95
|
+
border-right-color: $split-btn-disabled-vertical-border-color;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&:hover {
|
|
100
|
+
& .e-split-btn {
|
|
101
|
+
border-bottom-color: $split-btn-hover-border-color;
|
|
102
|
+
border-right-color: $split-btn-hover-vertical-border-color;
|
|
103
|
+
|
|
104
|
+
&:disabled {
|
|
105
|
+
border-bottom-color: $btn-disabled-border-color;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&.e-rtl {
|
|
111
|
+
.e-split-btn {
|
|
112
|
+
border-left-color: $split-btn-seperator-default-border-color;
|
|
113
|
+
|
|
114
|
+
&:focus {
|
|
115
|
+
border-left-color: $split-btn-focus-left-border-color;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&:active {
|
|
119
|
+
border-left-color: $split-btn-active-left-border-color;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&:disabled {
|
|
123
|
+
border-left-color: $split-btn-disabled-left-border-color;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&:hover {
|
|
128
|
+
& .e-split-btn {
|
|
129
|
+
border-left-color: $split-btn-hover-left-border-color;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/bootstrap-dark-definition.scss';
|
|
4
|
+
@import './../drop-down-button/bootstrap-dark-definition.scss';
|
|
5
|
+
@import 'bootstrap-dark-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/bootstrap-definition.scss';
|
|
4
|
+
@import './../drop-down-button/bootstrap-definition.scss';
|
|
5
|
+
@import 'bootstrap-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap4-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/bootstrap4-definition.scss';
|
|
4
|
+
@import './../drop-down-button/bootstrap4-definition.scss';
|
|
5
|
+
@import 'bootstrap4-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import './../drop-down-button/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'bootstrap5-dark-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/bootstrap5-definition.scss';
|
|
4
|
+
@import './../drop-down-button/bootstrap5-definition.scss';
|
|
5
|
+
@import 'bootstrap5-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fabric-dark-definition.scss';
|
|
4
|
+
@import './../drop-down-button/fabric-dark-definition.scss';
|
|
5
|
+
@import 'fabric-dark-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fabric-definition.scss';
|
|
4
|
+
@import './../drop-down-button/fabric-definition.scss';
|
|
5
|
+
@import 'fabric-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fluent-dark-definition.scss';
|
|
4
|
+
@import './../drop-down-button/fluent-dark-definition.scss';
|
|
5
|
+
@import 'fluent-dark-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/fluent-definition.scss';
|
|
4
|
+
@import './../drop-down-button/fluent-definition.scss';
|
|
5
|
+
@import 'fluent-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
|
|
4
|
+
@import './../drop-down-button/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'highcontrast-light-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/highcontrast-definition.scss';
|
|
4
|
+
@import './../drop-down-button/highcontrast-definition.scss';
|
|
5
|
+
@import 'highcontrast-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/material-dark-definition.scss';
|
|
4
|
+
@import './../drop-down-button/material-dark-definition.scss';
|
|
5
|
+
@import 'material-dark-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/material-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/material-definition.scss';
|
|
4
|
+
@import './../drop-down-button/material-definition.scss';
|
|
5
|
+
@import 'material-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/tailwind-dark-definition.scss';
|
|
4
|
+
@import './../drop-down-button/tailwind-dark-definition.scss';
|
|
5
|
+
@import 'tailwind-dark-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/tailwind-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/tailwind-definition.scss';
|
|
4
|
+
@import './../drop-down-button/tailwind-definition.scss';
|
|
5
|
+
@import 'tailwind-definition.scss';
|
|
6
|
+
@import 'all.scss';
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
|
|
79
79
|
.e-dropdown-popup {
|
|
80
80
|
position: absolute;
|
|
81
|
+
border-radius: 4px;
|
|
81
82
|
margin-top: 4px;
|
|
82
83
|
}
|
|
83
84
|
.e-dropdown-popup ul {
|
|
@@ -157,6 +158,7 @@
|
|
|
157
158
|
|
|
158
159
|
*.e-bigger .e-dropdown-popup {
|
|
159
160
|
background-color: transparent;
|
|
161
|
+
border-radius: 4px;
|
|
160
162
|
}
|
|
161
163
|
|
|
162
164
|
*.e-bigger .e-dropdown-popup ul,
|
|
@@ -549,6 +551,14 @@
|
|
|
549
551
|
flex-direction: row;
|
|
550
552
|
position: relative;
|
|
551
553
|
}
|
|
554
|
+
*.e-btn-group input:focus + label.e-btn,
|
|
555
|
+
*.e-btn-group .e-btn:focus,
|
|
556
|
+
*.e-btn-group .e-btn:hover,
|
|
557
|
+
*.e-css.e-btn-group input:focus + label.e-btn,
|
|
558
|
+
*.e-css.e-btn-group .e-btn:focus,
|
|
559
|
+
*.e-css.e-btn-group .e-btn:hover {
|
|
560
|
+
z-index: 2;
|
|
561
|
+
}
|
|
552
562
|
*.e-btn-group input + label.e-btn,
|
|
553
563
|
*.e-css.e-btn-group input + label.e-btn {
|
|
554
564
|
margin-bottom: 0;
|
|
@@ -794,7 +804,6 @@
|
|
|
794
804
|
outline: #1f2937 0 solid;
|
|
795
805
|
outline-offset: 0;
|
|
796
806
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
797
|
-
box-shadow: none;
|
|
798
807
|
outline-color: inherit;
|
|
799
808
|
}
|
|
800
809
|
.e-btn-group .e-btn:focus.e-primary,
|
|
@@ -806,7 +815,6 @@
|
|
|
806
815
|
color: #000;
|
|
807
816
|
outline: #1f2937 0 solid;
|
|
808
817
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
809
|
-
box-shadow: none;
|
|
810
818
|
outline-color: inherit;
|
|
811
819
|
}
|
|
812
820
|
.e-btn-group .e-btn:focus.e-success,
|
|
@@ -817,7 +825,6 @@
|
|
|
817
825
|
border-color: #22c55e;
|
|
818
826
|
color: #000;
|
|
819
827
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
820
|
-
box-shadow: none;
|
|
821
828
|
outline-color: inherit;
|
|
822
829
|
}
|
|
823
830
|
.e-btn-group .e-btn:focus.e-info,
|
|
@@ -828,7 +835,6 @@
|
|
|
828
835
|
border-color: #0ea5e9;
|
|
829
836
|
color: #fff;
|
|
830
837
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
831
|
-
box-shadow: none;
|
|
832
838
|
outline-color: inherit;
|
|
833
839
|
}
|
|
834
840
|
.e-btn-group .e-btn:focus.e-warning,
|
|
@@ -839,7 +845,6 @@
|
|
|
839
845
|
border-color: #ea580c;
|
|
840
846
|
color: #fff;
|
|
841
847
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
842
|
-
box-shadow: none;
|
|
843
848
|
outline-color: inherit;
|
|
844
849
|
}
|
|
845
850
|
.e-btn-group .e-btn:focus.e-danger,
|
|
@@ -850,7 +855,6 @@
|
|
|
850
855
|
border-color: #f87171;
|
|
851
856
|
color: #000;
|
|
852
857
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
853
|
-
box-shadow: none;
|
|
854
858
|
outline-color: inherit;
|
|
855
859
|
}
|
|
856
860
|
.e-btn-group .e-btn:focus.e-link,
|
|
@@ -870,42 +874,36 @@
|
|
|
870
874
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
871
875
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
872
876
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
873
|
-
box-shadow: none;
|
|
874
877
|
}
|
|
875
878
|
.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
876
879
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
877
880
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
878
881
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
879
882
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
880
|
-
box-shadow: none;
|
|
881
883
|
}
|
|
882
884
|
.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
883
885
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
884
886
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
885
887
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
886
888
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
887
|
-
box-shadow: none;
|
|
888
889
|
}
|
|
889
890
|
.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
890
891
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
891
892
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
892
893
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
893
894
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
894
|
-
box-shadow: none;
|
|
895
895
|
}
|
|
896
896
|
.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
897
897
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
898
898
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
899
899
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
900
900
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
901
|
-
box-shadow: none;
|
|
902
901
|
}
|
|
903
902
|
.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
904
903
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
905
904
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
906
905
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
907
906
|
box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.95), 0 0 0 4px #22d3ee;
|
|
908
|
-
box-shadow: none;
|
|
909
907
|
}
|
|
910
908
|
.e-btn-group .e-btn:active,
|
|
911
909
|
.e-btn-group input:active + label.e-btn,
|
package/styles/tailwind.css
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
|
|
79
79
|
.e-dropdown-popup {
|
|
80
80
|
position: absolute;
|
|
81
|
+
border-radius: 4px;
|
|
81
82
|
margin-top: 4px;
|
|
82
83
|
}
|
|
83
84
|
.e-dropdown-popup ul {
|
|
@@ -157,6 +158,7 @@
|
|
|
157
158
|
|
|
158
159
|
*.e-bigger .e-dropdown-popup {
|
|
159
160
|
background-color: transparent;
|
|
161
|
+
border-radius: 4px;
|
|
160
162
|
}
|
|
161
163
|
|
|
162
164
|
*.e-bigger .e-dropdown-popup ul,
|
|
@@ -549,6 +551,14 @@
|
|
|
549
551
|
flex-direction: row;
|
|
550
552
|
position: relative;
|
|
551
553
|
}
|
|
554
|
+
*.e-btn-group input:focus + label.e-btn,
|
|
555
|
+
*.e-btn-group .e-btn:focus,
|
|
556
|
+
*.e-btn-group .e-btn:hover,
|
|
557
|
+
*.e-css.e-btn-group input:focus + label.e-btn,
|
|
558
|
+
*.e-css.e-btn-group .e-btn:focus,
|
|
559
|
+
*.e-css.e-btn-group .e-btn:hover {
|
|
560
|
+
z-index: 2;
|
|
561
|
+
}
|
|
552
562
|
*.e-btn-group input + label.e-btn,
|
|
553
563
|
*.e-css.e-btn-group input + label.e-btn {
|
|
554
564
|
margin-bottom: 0;
|
|
@@ -794,7 +804,6 @@
|
|
|
794
804
|
outline: #fff 0 solid;
|
|
795
805
|
outline-offset: 0;
|
|
796
806
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
797
|
-
box-shadow: none;
|
|
798
807
|
outline-color: inherit;
|
|
799
808
|
}
|
|
800
809
|
.e-btn-group .e-btn:focus.e-primary,
|
|
@@ -806,7 +815,6 @@
|
|
|
806
815
|
color: #fff;
|
|
807
816
|
outline: #fff 0 solid;
|
|
808
817
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
809
|
-
box-shadow: none;
|
|
810
818
|
outline-color: inherit;
|
|
811
819
|
}
|
|
812
820
|
.e-btn-group .e-btn:focus.e-success,
|
|
@@ -817,7 +825,6 @@
|
|
|
817
825
|
border-color: #15803d;
|
|
818
826
|
color: #fff;
|
|
819
827
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
820
|
-
box-shadow: none;
|
|
821
828
|
outline-color: inherit;
|
|
822
829
|
}
|
|
823
830
|
.e-btn-group .e-btn:focus.e-info,
|
|
@@ -828,7 +835,6 @@
|
|
|
828
835
|
border-color: #0e7490;
|
|
829
836
|
color: #fff;
|
|
830
837
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
831
|
-
box-shadow: none;
|
|
832
838
|
outline-color: inherit;
|
|
833
839
|
}
|
|
834
840
|
.e-btn-group .e-btn:focus.e-warning,
|
|
@@ -839,7 +845,6 @@
|
|
|
839
845
|
border-color: #c2410c;
|
|
840
846
|
color: #fff;
|
|
841
847
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
842
|
-
box-shadow: none;
|
|
843
848
|
outline-color: inherit;
|
|
844
849
|
}
|
|
845
850
|
.e-btn-group .e-btn:focus.e-danger,
|
|
@@ -850,7 +855,6 @@
|
|
|
850
855
|
border-color: #dc2626;
|
|
851
856
|
color: #fff;
|
|
852
857
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
853
|
-
box-shadow: none;
|
|
854
858
|
outline-color: inherit;
|
|
855
859
|
}
|
|
856
860
|
.e-btn-group .e-btn:focus.e-link,
|
|
@@ -870,42 +874,36 @@
|
|
|
870
874
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
871
875
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
872
876
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
873
|
-
box-shadow: none;
|
|
874
877
|
}
|
|
875
878
|
.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
876
879
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
877
880
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
878
881
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
879
882
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
880
|
-
box-shadow: none;
|
|
881
883
|
}
|
|
882
884
|
.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
883
885
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
884
886
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
885
887
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
886
888
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
887
|
-
box-shadow: none;
|
|
888
889
|
}
|
|
889
890
|
.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
890
891
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
891
892
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
892
893
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
893
894
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
894
|
-
box-shadow: none;
|
|
895
895
|
}
|
|
896
896
|
.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
897
897
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
898
898
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
899
899
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
900
900
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
901
|
-
box-shadow: none;
|
|
902
901
|
}
|
|
903
902
|
.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
904
903
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
905
904
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
906
905
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
907
906
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
908
|
-
box-shadow: none;
|
|
909
907
|
}
|
|
910
908
|
.e-btn-group .e-btn:active,
|
|
911
909
|
.e-btn-group input:active + label.e-btn,
|