@syncfusion/ej2-ribbon 30.2.4 → 31.1.22
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/ej2-ribbon.umd.min.js +3 -3
- package/dist/ej2-ribbon.umd.min.js.map +1 -1
- package/dist/es6/ej2-ribbon.es2015.js +24 -5
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +24 -5
- package/dist/es6/ej2-ribbon.es5.js.map +1 -1
- package/dist/global/ej2-ribbon.min.js +3 -3
- package/dist/global/ej2-ribbon.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +8 -8
- package/src/ribbon/base/ribbon-model.d.ts +1 -1
- package/src/ribbon/base/ribbon.js +14 -5
- package/src/ribbon/items/ribbon-splitbutton.js +11 -0
- package/styles/bds-lite.css +9 -0
- package/styles/bds.css +9 -0
- package/styles/bootstrap-dark-lite.css +9 -0
- package/styles/bootstrap-dark.css +9 -0
- package/styles/bootstrap-lite.css +9 -0
- package/styles/bootstrap.css +9 -0
- package/styles/bootstrap4-lite.css +17 -0
- package/styles/bootstrap4.css +17 -0
- package/styles/bootstrap5-dark-lite.css +9 -0
- package/styles/bootstrap5-dark.css +9 -0
- package/styles/bootstrap5-lite.css +9 -0
- package/styles/bootstrap5.3-lite.css +9 -0
- package/styles/bootstrap5.3.css +9 -0
- package/styles/bootstrap5.css +9 -0
- package/styles/fabric-dark-lite.css +9 -0
- package/styles/fabric-dark.css +9 -0
- package/styles/fabric-lite.css +9 -0
- package/styles/fabric.css +9 -0
- package/styles/fluent-dark-lite.css +9 -0
- package/styles/fluent-dark.css +9 -0
- package/styles/fluent-lite.css +9 -0
- package/styles/fluent.css +9 -0
- package/styles/fluent2-lite.css +11 -2
- package/styles/fluent2.css +11 -2
- package/styles/highcontrast-light-lite.css +9 -0
- package/styles/highcontrast-light.css +9 -0
- package/styles/highcontrast-lite.css +9 -0
- package/styles/highcontrast.css +9 -0
- package/styles/material-dark-lite.css +9 -0
- package/styles/material-dark.css +9 -0
- package/styles/material-lite.css +9 -0
- package/styles/material.css +9 -0
- package/styles/material3-dark-lite.css +9 -0
- package/styles/material3-dark.css +9 -0
- package/styles/material3-lite.css +9 -0
- package/styles/material3.css +9 -0
- package/styles/ribbon/_fluent2-definition.scss +2 -2
- package/styles/ribbon/_layout.scss +7 -0
- package/styles/ribbon/bds.css +9 -0
- package/styles/ribbon/bootstrap-dark.css +9 -0
- package/styles/ribbon/bootstrap.css +9 -0
- package/styles/ribbon/bootstrap4.css +17 -0
- package/styles/ribbon/bootstrap5-dark.css +9 -0
- package/styles/ribbon/bootstrap5.3.css +9 -0
- package/styles/ribbon/bootstrap5.css +9 -0
- package/styles/ribbon/fabric-dark.css +9 -0
- package/styles/ribbon/fabric.css +9 -0
- package/styles/ribbon/fluent-dark.css +9 -0
- package/styles/ribbon/fluent.css +9 -0
- package/styles/ribbon/fluent2.css +11 -2
- package/styles/ribbon/highcontrast-light.css +9 -0
- package/styles/ribbon/highcontrast.css +9 -0
- package/styles/ribbon/material-dark.css +9 -0
- package/styles/ribbon/material.css +9 -0
- package/styles/ribbon/material3-dark.css +9 -0
- package/styles/ribbon/material3.css +9 -0
- package/styles/ribbon/tailwind-dark.css +9 -0
- package/styles/ribbon/tailwind.css +9 -0
- package/styles/ribbon/tailwind3.css +9 -0
- package/styles/tailwind-dark-lite.css +9 -0
- package/styles/tailwind-dark.css +9 -0
- package/styles/tailwind-lite.css +9 -0
- package/styles/tailwind.css +9 -0
- package/styles/tailwind3-lite.css +9 -0
- package/styles/tailwind3.css +9 -0
package/dist/global/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version :
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 -
|
|
3
|
+
* version : 31.1.22
|
|
4
|
+
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-ribbon",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "31.1.22",
|
|
4
4
|
"description": "Essential JS 2 Component",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"es2015": "./dist/es6/ej2-ribbon.es5.js",
|
|
10
10
|
"typings": "index.d.ts",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@syncfusion/ej2-base": "~
|
|
13
|
-
"@syncfusion/ej2-buttons": "~
|
|
14
|
-
"@syncfusion/ej2-dropdowns": "~
|
|
15
|
-
"@syncfusion/ej2-lists": "~
|
|
16
|
-
"@syncfusion/ej2-navigations": "~
|
|
17
|
-
"@syncfusion/ej2-popups": "~
|
|
18
|
-
"@syncfusion/ej2-splitbuttons": "~
|
|
12
|
+
"@syncfusion/ej2-base": "~31.1.22",
|
|
13
|
+
"@syncfusion/ej2-buttons": "~31.1.21",
|
|
14
|
+
"@syncfusion/ej2-dropdowns": "~31.1.22",
|
|
15
|
+
"@syncfusion/ej2-lists": "~31.1.17",
|
|
16
|
+
"@syncfusion/ej2-navigations": "~31.1.20",
|
|
17
|
+
"@syncfusion/ej2-popups": "~31.1.20",
|
|
18
|
+
"@syncfusion/ej2-splitbuttons": "~31.1.17"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {},
|
|
21
21
|
"keywords": [
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { addClass, append, Event, Collection, Complex, Component, EmitType, EventHandler, formatUnit, getInstance, getComponent, getUniqueID, closest, KeyboardEventArgs, KeyboardEvents } from '@syncfusion/ej2-base';import { INotifyPropertyChanged, isNullOrUndefined, isUndefined, ModuleDeclaration, NotifyPropertyChanges, Property, remove, removeClass } from '@syncfusion/ej2-base';import { Tab, TabAnimationSettings, TabAnimationSettingsModel, TabItemModel, SelectEventArgs, SelectingEventArgs, HScroll, Toolbar } from '@syncfusion/ej2-navigations';import { RibbonTab, RibbonTabModel, RibbonGroupModel, RibbonCollectionModel, RibbonItemModel, FileMenuSettings, FileMenuSettingsModel, BackStageMenu, BackStageMenuModel, RibbonItem, RibbonCollection, RibbonGroup, RibbonContextualTabSettingsModel, RibbonContextualTabSettings } from '../models/index';import { commonProperties, DisplayMode, ExpandCollapseEventArgs, itemProps, LauncherClickEventArgs, LayoutSwitchedEventArgs, OverflowPopupEventArgs, ribbonItemPropsList, RibbonLayout, ribbonTooltipData, TabSelectedEventArgs, TabSelectingEventArgs } from './interface';import { ItemOrientation, RibbonItemSize, RibbonItemType, KeyTipDataType } from './interface';import { RibbonButton, RibbonComboBox, RibbonCheckBox, RibbonDropDown, RibbonColorPicker, RibbonSplitButton, RibbonGroupButton } from '../items/index';import { destroyControl, getCollection, getGroup, getIndex, getItem, getItemElement, updateCommonProperty, updateControlDisabled, isTooltipPresent, getTemplateFunction, createTooltip, destroyTooltip, updateTooltipProp } from './utils';import * as constants from './constant';import { RibbonFileMenu, RibbonBackstage, RibbonKeyTip } from '../modules/index';import { RibbonTooltipModel } from '../models/ribbon-tooltip-model';import { Popup } from '@syncfusion/ej2-popups';import { BeforeOpenCloseMenuEventArgs, DropDownButton, SplitButton } from '@syncfusion/ej2-splitbuttons';import { CheckBox } from '@syncfusion/ej2-buttons';import { RibbonContextualTab } from '../modules/ribbon-contextualtab';import { RibbonGallery } from '../items/ribbon-gallery';
|
|
1
|
+
import { addClass, append, Event, Collection, Complex, Component, EmitType, EventHandler, formatUnit, getInstance, getComponent, getUniqueID, closest, KeyboardEventArgs, KeyboardEvents } from '@syncfusion/ej2-base';import { INotifyPropertyChanged, isNullOrUndefined, isUndefined, ModuleDeclaration, NotifyPropertyChanges, Property, remove, removeClass } from '@syncfusion/ej2-base';import { Tab, TabAnimationSettings, TabAnimationSettingsModel, TabItemModel, SelectEventArgs, SelectingEventArgs, HScroll, Toolbar } from '@syncfusion/ej2-navigations';import { RibbonTab, RibbonTabModel, RibbonGroupModel, RibbonCollectionModel, RibbonItemModel, FileMenuSettings, FileMenuSettingsModel, BackStageMenu, BackStageMenuModel, RibbonItem, RibbonCollection, RibbonGroup, RibbonContextualTabSettingsModel, RibbonContextualTabSettings } from '../models/index';import { commonProperties, DisplayMode, ExpandCollapseEventArgs, itemProps, LauncherClickEventArgs, LayoutSwitchedEventArgs, OverflowPopupEventArgs, ribbonItemPropsList, RibbonLayout, ribbonTooltipData, TabSelectedEventArgs, TabSelectingEventArgs } from './interface';import { ItemOrientation, RibbonItemSize, RibbonItemType, KeyTipDataType } from './interface';import { RibbonButton, RibbonComboBox, RibbonCheckBox, RibbonDropDown, RibbonColorPicker, RibbonSplitButton, RibbonGroupButton } from '../items/index';import { destroyControl, getCollection, getGroup, getIndex, getItem, getItemElement, updateCommonProperty, updateControlDisabled, isTooltipPresent, getTemplateFunction, createTooltip, destroyTooltip, updateTooltipProp } from './utils';import * as constants from './constant';import { RibbonFileMenu, RibbonBackstage, RibbonKeyTip } from '../modules/index';import { RibbonTooltipModel } from '../models/ribbon-tooltip-model';import { Popup } from '@syncfusion/ej2-popups';import { ColorPicker } from '@syncfusion/ej2-inputs';import { BeforeOpenCloseMenuEventArgs, DropDownButton, SplitButton } from '@syncfusion/ej2-splitbuttons';import { CheckBox } from '@syncfusion/ej2-buttons';import { RibbonContextualTab } from '../modules/ribbon-contextualtab';import { RibbonGallery } from '../items/ribbon-gallery';
|
|
2
2
|
import {ComponentModel} from '@syncfusion/ej2-base';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -27,6 +27,7 @@ import { RibbonButton, RibbonComboBox, RibbonCheckBox, RibbonDropDown, RibbonSpl
|
|
|
27
27
|
import { destroyControl, getCollection, getGroup, getIndex, getItem, getItemElement, updateCommonProperty, updateControlDisabled, isTooltipPresent, getTemplateFunction, createTooltip, destroyTooltip, updateTooltipProp } from './utils';
|
|
28
28
|
import * as constants from './constant';
|
|
29
29
|
import { Popup } from '@syncfusion/ej2-popups';
|
|
30
|
+
import { ColorPicker } from '@syncfusion/ej2-inputs';
|
|
30
31
|
import { DropDownButton, SplitButton } from '@syncfusion/ej2-splitbuttons';
|
|
31
32
|
import { CheckBox } from '@syncfusion/ej2-buttons';
|
|
32
33
|
/**
|
|
@@ -396,13 +397,21 @@ var Ribbon = /** @class */ (function (_super) {
|
|
|
396
397
|
this.scrollModule.scrollStep = scrollEle.offsetWidth;
|
|
397
398
|
}
|
|
398
399
|
if (this.activeLayout === 'Simplified') {
|
|
399
|
-
var
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
400
|
+
var activePopups = document.querySelectorAll('.e-ribbon .e-dropdown-btn.e-active, .e-ribbon-group-overflow-ddb .e-dropdown-btn.e-active');
|
|
401
|
+
var colorPickerPopups = document.querySelectorAll('.e-ribbon .e-colorpicker-wrapper.e-ribbon-control.e-ribbon-open .e-colorpicker, .e-ribbon-group-overflow-ddb .e-colorpicker-wrapper.e-ribbon-control.e-ribbon-open .e-colorpicker');
|
|
402
|
+
activePopups.forEach(function (popup) {
|
|
403
|
+
var dropDownBtn = getInstance(popup, DropDownButton);
|
|
404
|
+
if (dropDownBtn) {
|
|
403
405
|
dropDownBtn.toggle();
|
|
404
406
|
}
|
|
405
|
-
}
|
|
407
|
+
});
|
|
408
|
+
colorPickerPopups.forEach(function (picker) {
|
|
409
|
+
var colorPickerObj = getInstance(picker, ColorPicker);
|
|
410
|
+
if (colorPickerObj) {
|
|
411
|
+
colorPickerObj.toggle();
|
|
412
|
+
colorPickerObj.refresh();
|
|
413
|
+
}
|
|
414
|
+
});
|
|
406
415
|
}
|
|
407
416
|
var galleryPopupEle = document.querySelector('.e-ribbon-gallery-popup.e-popup-open');
|
|
408
417
|
if (galleryPopupEle) {
|
|
@@ -121,6 +121,11 @@ var RibbonSplitButton = /** @class */ (function () {
|
|
|
121
121
|
}
|
|
122
122
|
};
|
|
123
123
|
var target;
|
|
124
|
+
splitbutton.beforeOpen = function (e) {
|
|
125
|
+
if (item.splitButtonSettings.beforeOpen) {
|
|
126
|
+
item.splitButtonSettings.beforeOpen.call(_this, e);
|
|
127
|
+
}
|
|
128
|
+
};
|
|
124
129
|
splitbutton.beforeClose = function (e) {
|
|
125
130
|
if (item.splitButtonSettings.beforeClose) {
|
|
126
131
|
item.splitButtonSettings.beforeClose.call(_this, e);
|
|
@@ -163,6 +168,11 @@ var RibbonSplitButton = /** @class */ (function () {
|
|
|
163
168
|
cssClass = cssClass.filter(function (value) { return value !== RIBBON_POPUP_CONTROL; });
|
|
164
169
|
splitbutton.cssClass = cssClass.join(SPACE);
|
|
165
170
|
splitbutton.dataBind();
|
|
171
|
+
splitbutton.beforeOpen = function (e) {
|
|
172
|
+
if (item.splitButtonSettings.beforeOpen) {
|
|
173
|
+
item.splitButtonSettings.beforeOpen.call(_this, e);
|
|
174
|
+
}
|
|
175
|
+
};
|
|
166
176
|
splitbutton.beforeClose = function (e) {
|
|
167
177
|
if (item.splitButtonSettings.beforeClose) {
|
|
168
178
|
item.splitButtonSettings.beforeClose.call(_this, e);
|
|
@@ -250,6 +260,7 @@ var RibbonSplitButton = /** @class */ (function () {
|
|
|
250
260
|
(VERTICAL_DDB + SPACE + prop.cssClass).trim() : prop.cssClass;
|
|
251
261
|
control.cssClass = prop.cssClass;
|
|
252
262
|
}
|
|
263
|
+
delete prop.beforeOpen;
|
|
253
264
|
delete prop.open;
|
|
254
265
|
delete prop.click;
|
|
255
266
|
delete prop.close;
|
package/styles/bds-lite.css
CHANGED
|
@@ -1118,6 +1118,12 @@
|
|
|
1118
1118
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
1119
1119
|
padding: 0;
|
|
1120
1120
|
}
|
|
1121
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
1122
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
1123
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
1124
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
1125
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
1126
|
+
}
|
|
1121
1127
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
1122
1128
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
1123
1129
|
border: 1px solid transparent;
|
|
@@ -1323,6 +1329,9 @@
|
|
|
1323
1329
|
margin: 8px 0 8px 12px;
|
|
1324
1330
|
padding: 0;
|
|
1325
1331
|
}
|
|
1332
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1333
|
+
margin: unset;
|
|
1334
|
+
}
|
|
1326
1335
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1327
1336
|
padding: 0;
|
|
1328
1337
|
width: 100%;
|
package/styles/bds.css
CHANGED
|
@@ -1118,6 +1118,12 @@
|
|
|
1118
1118
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
1119
1119
|
padding: 0;
|
|
1120
1120
|
}
|
|
1121
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
1122
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
1123
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
1124
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
1125
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
1126
|
+
}
|
|
1121
1127
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
1122
1128
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
1123
1129
|
border: 1px solid transparent;
|
|
@@ -1323,6 +1329,9 @@
|
|
|
1323
1329
|
margin: 8px 0 8px 12px;
|
|
1324
1330
|
padding: 0;
|
|
1325
1331
|
}
|
|
1332
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1333
|
+
margin: unset;
|
|
1334
|
+
}
|
|
1326
1335
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1327
1336
|
padding: 0;
|
|
1328
1337
|
width: 100%;
|
|
@@ -877,6 +877,12 @@
|
|
|
877
877
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
878
878
|
padding: 0;
|
|
879
879
|
}
|
|
880
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
881
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
882
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
883
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
884
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
885
|
+
}
|
|
880
886
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
881
887
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
882
888
|
border: 1px solid transparent;
|
|
@@ -1082,6 +1088,9 @@
|
|
|
1082
1088
|
margin: 7px 0 7px 12px;
|
|
1083
1089
|
padding: 0;
|
|
1084
1090
|
}
|
|
1091
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1092
|
+
margin: unset;
|
|
1093
|
+
}
|
|
1085
1094
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1086
1095
|
padding: 0;
|
|
1087
1096
|
width: 100%;
|
|
@@ -877,6 +877,12 @@
|
|
|
877
877
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
878
878
|
padding: 0;
|
|
879
879
|
}
|
|
880
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
881
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
882
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
883
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
884
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
885
|
+
}
|
|
880
886
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
881
887
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
882
888
|
border: 1px solid transparent;
|
|
@@ -1082,6 +1088,9 @@
|
|
|
1082
1088
|
margin: 7px 0 7px 12px;
|
|
1083
1089
|
padding: 0;
|
|
1084
1090
|
}
|
|
1091
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1092
|
+
margin: unset;
|
|
1093
|
+
}
|
|
1085
1094
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1086
1095
|
padding: 0;
|
|
1087
1096
|
width: 100%;
|
|
@@ -879,6 +879,12 @@
|
|
|
879
879
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
880
880
|
padding: 0;
|
|
881
881
|
}
|
|
882
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
883
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
884
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
885
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
886
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
887
|
+
}
|
|
882
888
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
883
889
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
884
890
|
border: 1px solid transparent;
|
|
@@ -1084,6 +1090,9 @@
|
|
|
1084
1090
|
margin: 7px 0 7px 12px;
|
|
1085
1091
|
padding: 0;
|
|
1086
1092
|
}
|
|
1093
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1094
|
+
margin: unset;
|
|
1095
|
+
}
|
|
1087
1096
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1088
1097
|
padding: 0;
|
|
1089
1098
|
width: 100%;
|
package/styles/bootstrap.css
CHANGED
|
@@ -879,6 +879,12 @@
|
|
|
879
879
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
880
880
|
padding: 0;
|
|
881
881
|
}
|
|
882
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
883
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
884
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
885
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
886
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
887
|
+
}
|
|
882
888
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
883
889
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
884
890
|
border: 1px solid transparent;
|
|
@@ -1084,6 +1090,9 @@
|
|
|
1084
1090
|
margin: 7px 0 7px 12px;
|
|
1085
1091
|
padding: 0;
|
|
1086
1092
|
}
|
|
1093
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1094
|
+
margin: unset;
|
|
1095
|
+
}
|
|
1087
1096
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1088
1097
|
padding: 0;
|
|
1089
1098
|
width: 100%;
|
|
@@ -93,6 +93,14 @@
|
|
|
93
93
|
font-size: 12px;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
97
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
98
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
99
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
100
|
+
background: transparent;
|
|
101
|
+
color: #495057;
|
|
102
|
+
}
|
|
103
|
+
|
|
96
104
|
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
97
105
|
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
98
106
|
font-size: 10px;
|
|
@@ -921,6 +929,12 @@
|
|
|
921
929
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
922
930
|
padding: 0;
|
|
923
931
|
}
|
|
932
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
933
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
934
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
935
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
936
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
937
|
+
}
|
|
924
938
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
925
939
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
926
940
|
border: 1px solid transparent;
|
|
@@ -1126,6 +1140,9 @@
|
|
|
1126
1140
|
margin: 7px 0 7px 12px;
|
|
1127
1141
|
padding: 0;
|
|
1128
1142
|
}
|
|
1143
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1144
|
+
margin: unset;
|
|
1145
|
+
}
|
|
1129
1146
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1130
1147
|
padding: 0;
|
|
1131
1148
|
width: 100%;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -93,6 +93,14 @@
|
|
|
93
93
|
font-size: 12px;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
97
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
98
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
99
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
100
|
+
background: transparent;
|
|
101
|
+
color: #495057;
|
|
102
|
+
}
|
|
103
|
+
|
|
96
104
|
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
97
105
|
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
98
106
|
font-size: 10px;
|
|
@@ -921,6 +929,12 @@
|
|
|
921
929
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
922
930
|
padding: 0;
|
|
923
931
|
}
|
|
932
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
933
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
934
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
935
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
936
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
937
|
+
}
|
|
924
938
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
925
939
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
926
940
|
border: 1px solid transparent;
|
|
@@ -1126,6 +1140,9 @@
|
|
|
1126
1140
|
margin: 7px 0 7px 12px;
|
|
1127
1141
|
padding: 0;
|
|
1128
1142
|
}
|
|
1143
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1144
|
+
margin: unset;
|
|
1145
|
+
}
|
|
1129
1146
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1130
1147
|
padding: 0;
|
|
1131
1148
|
width: 100%;
|
|
@@ -952,6 +952,12 @@
|
|
|
952
952
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
953
953
|
padding: 0;
|
|
954
954
|
}
|
|
955
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
956
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
957
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
958
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
959
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
960
|
+
}
|
|
955
961
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
956
962
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
957
963
|
border: 1px solid transparent;
|
|
@@ -1157,6 +1163,9 @@
|
|
|
1157
1163
|
margin: 7px 0 7px 12px;
|
|
1158
1164
|
padding: 0;
|
|
1159
1165
|
}
|
|
1166
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1167
|
+
margin: unset;
|
|
1168
|
+
}
|
|
1160
1169
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1161
1170
|
padding: 0;
|
|
1162
1171
|
width: 100%;
|
|
@@ -952,6 +952,12 @@
|
|
|
952
952
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
953
953
|
padding: 0;
|
|
954
954
|
}
|
|
955
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
956
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
957
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
958
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
959
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
960
|
+
}
|
|
955
961
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
956
962
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
957
963
|
border: 1px solid transparent;
|
|
@@ -1157,6 +1163,9 @@
|
|
|
1157
1163
|
margin: 7px 0 7px 12px;
|
|
1158
1164
|
padding: 0;
|
|
1159
1165
|
}
|
|
1166
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1167
|
+
margin: unset;
|
|
1168
|
+
}
|
|
1160
1169
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1161
1170
|
padding: 0;
|
|
1162
1171
|
width: 100%;
|
|
@@ -952,6 +952,12 @@
|
|
|
952
952
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
953
953
|
padding: 0;
|
|
954
954
|
}
|
|
955
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
956
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
957
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
958
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
959
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
960
|
+
}
|
|
955
961
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
956
962
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
957
963
|
border: 1px solid transparent;
|
|
@@ -1157,6 +1163,9 @@
|
|
|
1157
1163
|
margin: 7px 0 7px 12px;
|
|
1158
1164
|
padding: 0;
|
|
1159
1165
|
}
|
|
1166
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1167
|
+
margin: unset;
|
|
1168
|
+
}
|
|
1160
1169
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1161
1170
|
padding: 0;
|
|
1162
1171
|
width: 100%;
|
|
@@ -956,6 +956,12 @@
|
|
|
956
956
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
957
957
|
padding: 0;
|
|
958
958
|
}
|
|
959
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
960
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
961
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
962
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
963
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
964
|
+
}
|
|
959
965
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
960
966
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
961
967
|
border: 1px solid transparent;
|
|
@@ -1161,6 +1167,9 @@
|
|
|
1161
1167
|
margin: 8px 0 8px 12px;
|
|
1162
1168
|
padding: 0;
|
|
1163
1169
|
}
|
|
1170
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1171
|
+
margin: unset;
|
|
1172
|
+
}
|
|
1164
1173
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1165
1174
|
padding: 0;
|
|
1166
1175
|
width: 100%;
|
package/styles/bootstrap5.3.css
CHANGED
|
@@ -956,6 +956,12 @@
|
|
|
956
956
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
957
957
|
padding: 0;
|
|
958
958
|
}
|
|
959
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
960
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
961
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
962
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
963
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
964
|
+
}
|
|
959
965
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
960
966
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
961
967
|
border: 1px solid transparent;
|
|
@@ -1161,6 +1167,9 @@
|
|
|
1161
1167
|
margin: 8px 0 8px 12px;
|
|
1162
1168
|
padding: 0;
|
|
1163
1169
|
}
|
|
1170
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1171
|
+
margin: unset;
|
|
1172
|
+
}
|
|
1164
1173
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1165
1174
|
padding: 0;
|
|
1166
1175
|
width: 100%;
|
package/styles/bootstrap5.css
CHANGED
|
@@ -952,6 +952,12 @@
|
|
|
952
952
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
953
953
|
padding: 0;
|
|
954
954
|
}
|
|
955
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
956
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
957
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
958
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
959
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
960
|
+
}
|
|
955
961
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
956
962
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
957
963
|
border: 1px solid transparent;
|
|
@@ -1157,6 +1163,9 @@
|
|
|
1157
1163
|
margin: 7px 0 7px 12px;
|
|
1158
1164
|
padding: 0;
|
|
1159
1165
|
}
|
|
1166
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1167
|
+
margin: unset;
|
|
1168
|
+
}
|
|
1160
1169
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1161
1170
|
padding: 0;
|
|
1162
1171
|
width: 100%;
|
|
@@ -853,6 +853,12 @@
|
|
|
853
853
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
854
854
|
padding: 0;
|
|
855
855
|
}
|
|
856
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
857
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
858
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
859
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
860
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
861
|
+
}
|
|
856
862
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
857
863
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
858
864
|
border: 1px solid transparent;
|
|
@@ -1058,6 +1064,9 @@
|
|
|
1058
1064
|
margin: 9px 0 9px 12px;
|
|
1059
1065
|
padding: 0;
|
|
1060
1066
|
}
|
|
1067
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1068
|
+
margin: unset;
|
|
1069
|
+
}
|
|
1061
1070
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1062
1071
|
padding: 0;
|
|
1063
1072
|
width: 100%;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -853,6 +853,12 @@
|
|
|
853
853
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
854
854
|
padding: 0;
|
|
855
855
|
}
|
|
856
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
857
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
858
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
859
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
860
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
861
|
+
}
|
|
856
862
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
857
863
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
858
864
|
border: 1px solid transparent;
|
|
@@ -1058,6 +1064,9 @@
|
|
|
1058
1064
|
margin: 9px 0 9px 12px;
|
|
1059
1065
|
padding: 0;
|
|
1060
1066
|
}
|
|
1067
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1068
|
+
margin: unset;
|
|
1069
|
+
}
|
|
1061
1070
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1062
1071
|
padding: 0;
|
|
1063
1072
|
width: 100%;
|
package/styles/fabric-lite.css
CHANGED
|
@@ -854,6 +854,12 @@
|
|
|
854
854
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
855
855
|
padding: 0;
|
|
856
856
|
}
|
|
857
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
858
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
859
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
860
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
861
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
862
|
+
}
|
|
857
863
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
858
864
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
859
865
|
border: 1px solid transparent;
|
|
@@ -1059,6 +1065,9 @@
|
|
|
1059
1065
|
margin: 9px 0 9px 12px;
|
|
1060
1066
|
padding: 0;
|
|
1061
1067
|
}
|
|
1068
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1069
|
+
margin: unset;
|
|
1070
|
+
}
|
|
1062
1071
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1063
1072
|
padding: 0;
|
|
1064
1073
|
width: 100%;
|
package/styles/fabric.css
CHANGED
|
@@ -854,6 +854,12 @@
|
|
|
854
854
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
855
855
|
padding: 0;
|
|
856
856
|
}
|
|
857
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
858
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
859
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
860
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
861
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
862
|
+
}
|
|
857
863
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
858
864
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
859
865
|
border: 1px solid transparent;
|
|
@@ -1059,6 +1065,9 @@
|
|
|
1059
1065
|
margin: 9px 0 9px 12px;
|
|
1060
1066
|
padding: 0;
|
|
1061
1067
|
}
|
|
1068
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1069
|
+
margin: unset;
|
|
1070
|
+
}
|
|
1062
1071
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1063
1072
|
padding: 0;
|
|
1064
1073
|
width: 100%;
|
|
@@ -944,6 +944,12 @@
|
|
|
944
944
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
945
945
|
padding: 0;
|
|
946
946
|
}
|
|
947
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
948
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
949
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
950
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
951
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
952
|
+
}
|
|
947
953
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
948
954
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
949
955
|
border: 1px solid transparent;
|
|
@@ -1149,6 +1155,9 @@
|
|
|
1149
1155
|
margin: 9px 0 9px 12px;
|
|
1150
1156
|
padding: 0;
|
|
1151
1157
|
}
|
|
1158
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1159
|
+
margin: unset;
|
|
1160
|
+
}
|
|
1152
1161
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1153
1162
|
padding: 0;
|
|
1154
1163
|
width: 100%;
|
package/styles/fluent-dark.css
CHANGED
|
@@ -944,6 +944,12 @@
|
|
|
944
944
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
945
945
|
padding: 0;
|
|
946
946
|
}
|
|
947
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
948
|
+
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control,
|
|
949
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-wrapper .e-colorpicker-popup.e-ribbon-control,
|
|
950
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-colorpicker-container .e-colorpicker-popup.e-ribbon-control {
|
|
951
|
+
z-index: unset !important; /* stylelint-disable-line declaration-no-important */
|
|
952
|
+
}
|
|
947
953
|
.e-ribbon.e-rbn .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper,
|
|
948
954
|
.e-ribbon-group-overflow-ddb .e-ribbon-item:not(:has(.e-ribbon-template)) .e-split-btn-wrapper {
|
|
949
955
|
border: 1px solid transparent;
|
|
@@ -1149,6 +1155,9 @@
|
|
|
1149
1155
|
margin: 9px 0 9px 12px;
|
|
1150
1156
|
padding: 0;
|
|
1151
1157
|
}
|
|
1158
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper .e-frame {
|
|
1159
|
+
margin: unset;
|
|
1160
|
+
}
|
|
1152
1161
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1153
1162
|
padding: 0;
|
|
1154
1163
|
width: 100%;
|