@syncfusion/ej2-navigations 22.1.34 → 22.1.38
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/CHANGELOG.md +22 -0
- package/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +32 -16
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +33 -16
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +10 -10
- package/src/carousel/carousel.js +3 -1
- package/src/tab/tab.d.ts +3 -1
- package/src/tab/tab.js +12 -8
- package/src/toolbar/toolbar.d.ts +2 -0
- package/src/toolbar/toolbar.js +18 -7
- package/src/treeview/treeview-model.d.ts +1 -0
- package/src/treeview/treeview.d.ts +1 -0
- package/styles/bootstrap.css +10 -10
- package/styles/toolbar/_bootstrap-definition.scss +5 -5
- package/styles/toolbar/bootstrap.css +10 -10
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 22.1.
|
|
3
|
+
* version : 22.1.38
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-navigations@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-navigations@
|
|
3
|
+
"_id": "@syncfusion/ej2-navigations@22.1.36",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-iwyGdFKhNWT87685f3EXNa1Sd6Y7FwwsPQVYZXSiw4R7B4cF4HjOVKls5HIL55eNwk4b/jHvMv0lRJAjGGsU/Q==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-navigations",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"/@syncfusion/ej2-spreadsheet",
|
|
40
40
|
"/@syncfusion/ej2-vue-navigations"
|
|
41
41
|
],
|
|
42
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-
|
|
43
|
-
"_shasum": "
|
|
42
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-22.1.36.tgz",
|
|
43
|
+
"_shasum": "fcc4a08271c57a350afa32a3db3c70996e600732",
|
|
44
44
|
"_spec": "@syncfusion/ej2-navigations@*",
|
|
45
45
|
"_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
|
|
46
46
|
"author": {
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
},
|
|
52
52
|
"bundleDependencies": false,
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@syncfusion/ej2-base": "~22.1.
|
|
55
|
-
"@syncfusion/ej2-buttons": "~22.1.
|
|
56
|
-
"@syncfusion/ej2-data": "~22.1.
|
|
57
|
-
"@syncfusion/ej2-inputs": "~22.1.
|
|
54
|
+
"@syncfusion/ej2-base": "~22.1.38",
|
|
55
|
+
"@syncfusion/ej2-buttons": "~22.1.38",
|
|
56
|
+
"@syncfusion/ej2-data": "~22.1.38",
|
|
57
|
+
"@syncfusion/ej2-inputs": "~22.1.38",
|
|
58
58
|
"@syncfusion/ej2-lists": "~22.1.34",
|
|
59
|
-
"@syncfusion/ej2-popups": "~22.1.
|
|
59
|
+
"@syncfusion/ej2-popups": "~22.1.38"
|
|
60
60
|
},
|
|
61
61
|
"deprecated": false,
|
|
62
62
|
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
|
|
@@ -161,6 +161,6 @@
|
|
|
161
161
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
162
162
|
},
|
|
163
163
|
"typings": "index.d.ts",
|
|
164
|
-
"version": "22.1.
|
|
164
|
+
"version": "22.1.38",
|
|
165
165
|
"sideEffects": false
|
|
166
166
|
}
|
package/src/carousel/carousel.js
CHANGED
|
@@ -1104,6 +1104,7 @@ var Carousel = /** @class */ (function (_super) {
|
|
|
1104
1104
|
EventHandler.remove(this.element.firstElementChild, 'animationend', this.onTransitionEnd);
|
|
1105
1105
|
EventHandler.remove(this.element.firstElementChild, 'transitionend', this.onTransitionEnd);
|
|
1106
1106
|
EventHandler.clearEvents(this.element);
|
|
1107
|
+
EventHandler.clearEvents(this.itemsContainer);
|
|
1107
1108
|
};
|
|
1108
1109
|
/**
|
|
1109
1110
|
* Method to transit from the current slide to the previous slide.
|
|
@@ -1204,8 +1205,9 @@ var Carousel = /** @class */ (function (_super) {
|
|
|
1204
1205
|
this.destroyButtons();
|
|
1205
1206
|
this.unWireEvents();
|
|
1206
1207
|
[].slice.call(this.element.children).forEach(function (ele) { _this.element.removeChild(ele); });
|
|
1207
|
-
removeClass([this.element], [CLS_CAROUSEL, this.cssClass, CLS_RTL]);
|
|
1208
|
+
removeClass([this.element], [CLS_CAROUSEL, this.cssClass, CLS_RTL, CLS_SWIPE]);
|
|
1208
1209
|
['tabindex', 'role', 'style'].forEach(function (attr) { _this.element.removeAttribute(attr); });
|
|
1210
|
+
this.itemsContainer = null;
|
|
1209
1211
|
_super.prototype.destroy.call(this);
|
|
1210
1212
|
};
|
|
1211
1213
|
__decorate([
|
package/src/tab/tab.d.ts
CHANGED
|
@@ -52,6 +52,8 @@ export interface SelectEventArgs extends BaseEventArgs {
|
|
|
52
52
|
selectedContent: HTMLElement;
|
|
53
53
|
/** Determines whether the event is triggered via user interaction or programmatic way. True, if the event is triggered by user interaction. */
|
|
54
54
|
isInteracted?: boolean;
|
|
55
|
+
/** Determines whether the Tab item needs to focus or not after it is selected */
|
|
56
|
+
preventFocus?: boolean;
|
|
55
57
|
}
|
|
56
58
|
/** An interface that holds options to control the selecting item action. */
|
|
57
59
|
export interface SelectingEventArgs extends SelectEventArgs {
|
|
@@ -264,7 +266,7 @@ export declare class Tab extends Component<HTMLElement> implements INotifyProper
|
|
|
264
266
|
private isInteracted;
|
|
265
267
|
private prevActiveEle;
|
|
266
268
|
private lastIndex;
|
|
267
|
-
private
|
|
269
|
+
private isSwiped;
|
|
268
270
|
private isNested;
|
|
269
271
|
private itemIndexArray;
|
|
270
272
|
private templateEle;
|
package/src/tab/tab.js
CHANGED
|
@@ -286,7 +286,7 @@ var Tab = /** @class */ (function (_super) {
|
|
|
286
286
|
this.isNested = false;
|
|
287
287
|
this.isPopup = false;
|
|
288
288
|
this.initRender = true;
|
|
289
|
-
this.
|
|
289
|
+
this.isSwiped = false;
|
|
290
290
|
this.itemIndexArray = [];
|
|
291
291
|
this.templateEle = [];
|
|
292
292
|
if (this.allowDragAndDrop) {
|
|
@@ -1136,17 +1136,21 @@ var Tab = /** @class */ (function (_super) {
|
|
|
1136
1136
|
this.setActiveBorder();
|
|
1137
1137
|
this.refreshItemVisibility(trg);
|
|
1138
1138
|
if (!this.initRender && !skipDataBind) {
|
|
1139
|
-
trg.firstElementChild.focus();
|
|
1140
1139
|
var eventArg = {
|
|
1141
1140
|
previousItem: this.prevItem,
|
|
1142
1141
|
previousIndex: this.prevIndex,
|
|
1143
1142
|
selectedItem: trg,
|
|
1144
1143
|
selectedIndex: value,
|
|
1145
1144
|
selectedContent: select('#' + CLS_CONTENT + this.tabId + '_' + this.selectingID, this.content),
|
|
1146
|
-
isSwiped: this.
|
|
1147
|
-
isInteracted: isInteracted
|
|
1145
|
+
isSwiped: this.isSwiped,
|
|
1146
|
+
isInteracted: isInteracted,
|
|
1147
|
+
preventFocus: false
|
|
1148
1148
|
};
|
|
1149
|
-
this.trigger('selected', eventArg)
|
|
1149
|
+
this.trigger('selected', eventArg, function (selectEventArgs) {
|
|
1150
|
+
if (!selectEventArgs.preventFocus) {
|
|
1151
|
+
trg.firstElementChild.focus();
|
|
1152
|
+
}
|
|
1153
|
+
});
|
|
1150
1154
|
}
|
|
1151
1155
|
};
|
|
1152
1156
|
Tab.prototype.setItems = function (items) {
|
|
@@ -1251,7 +1255,7 @@ var Tab = /** @class */ (function (_super) {
|
|
|
1251
1255
|
nestedTab.removeAttribute('data-swipe');
|
|
1252
1256
|
return;
|
|
1253
1257
|
}
|
|
1254
|
-
this.
|
|
1258
|
+
this.isSwiped = true;
|
|
1255
1259
|
if (e.swipeDirection === 'Right' && this.selectedItem !== 0) {
|
|
1256
1260
|
for (var k = this.selectedItem - 1; k >= 0; k--) {
|
|
1257
1261
|
if (!this.tbItem[k].classList.contains(CLS_HIDDEN)) {
|
|
@@ -1268,7 +1272,7 @@ var Tab = /** @class */ (function (_super) {
|
|
|
1268
1272
|
}
|
|
1269
1273
|
}
|
|
1270
1274
|
}
|
|
1271
|
-
this.
|
|
1275
|
+
this.isSwiped = false;
|
|
1272
1276
|
};
|
|
1273
1277
|
Tab.prototype.spaceKeyDown = function (e) {
|
|
1274
1278
|
if ((e.keyCode === 32 && e.which === 32) || (e.keyCode === 35 && e.which === 35)) {
|
|
@@ -2017,7 +2021,7 @@ var Tab = /** @class */ (function (_super) {
|
|
|
2017
2021
|
selectingIndex: args,
|
|
2018
2022
|
selectingContent: !isNOU(this.content) ?
|
|
2019
2023
|
select('#' + CLS_CONTENT + this.tabId + '_' + this.selectingID, this.content) : null,
|
|
2020
|
-
isSwiped: this.
|
|
2024
|
+
isSwiped: this.isSwiped,
|
|
2021
2025
|
isInteracted: this.isInteracted,
|
|
2022
2026
|
cancel: false
|
|
2023
2027
|
};
|
package/src/toolbar/toolbar.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ export declare class Toolbar extends Component<HTMLElement> implements INotifyPr
|
|
|
251
251
|
private tempId;
|
|
252
252
|
private isExtendedOpen;
|
|
253
253
|
private resizeContext;
|
|
254
|
+
private orientationChangeContext;
|
|
254
255
|
/**
|
|
255
256
|
* Contains the keyboard configuration of the Toolbar.
|
|
256
257
|
*/
|
|
@@ -495,6 +496,7 @@ export declare class Toolbar extends Component<HTMLElement> implements INotifyPr
|
|
|
495
496
|
protected getModuleName(): string;
|
|
496
497
|
private itemsRerender;
|
|
497
498
|
private resize;
|
|
499
|
+
private orientationChange;
|
|
498
500
|
private extendedOpen;
|
|
499
501
|
private updateHideEleTabIndex;
|
|
500
502
|
/**
|
package/src/toolbar/toolbar.js
CHANGED
|
@@ -154,6 +154,7 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
154
154
|
function Toolbar(options, element) {
|
|
155
155
|
var _this = _super.call(this, options, element) || this;
|
|
156
156
|
_this.resizeContext = _this.resize.bind(_this);
|
|
157
|
+
_this.orientationChangeContext = _this.orientationChange.bind(_this);
|
|
157
158
|
/**
|
|
158
159
|
* Contains the keyboard configuration of the Toolbar.
|
|
159
160
|
*/
|
|
@@ -246,6 +247,7 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
246
247
|
Toolbar.prototype.wireEvents = function () {
|
|
247
248
|
EventHandler.add(this.element, 'click', this.clickHandler, this);
|
|
248
249
|
window.addEventListener('resize', this.resizeContext);
|
|
250
|
+
window.addEventListener('orientationchange', this.orientationChangeContext);
|
|
249
251
|
if (this.allowKeyboard) {
|
|
250
252
|
this.wireKeyboardEvent();
|
|
251
253
|
}
|
|
@@ -292,6 +294,7 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
292
294
|
this.destroyScroll();
|
|
293
295
|
this.unwireKeyboardEvent();
|
|
294
296
|
window.removeEventListener('resize', this.resizeContext);
|
|
297
|
+
window.removeEventListener('orientationchange', this.orientationChangeContext);
|
|
295
298
|
EventHandler.remove(document, 'scroll', this.docEvent);
|
|
296
299
|
EventHandler.remove(document, 'click', this.docEvent);
|
|
297
300
|
};
|
|
@@ -1013,8 +1016,9 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
1013
1016
|
var sepHeight;
|
|
1014
1017
|
var sepItem;
|
|
1015
1018
|
if (this.overflowMode === 'Extended') {
|
|
1016
|
-
sepItem = element.querySelector('.' + CLS_SEPARATOR
|
|
1017
|
-
sepHeight =
|
|
1019
|
+
sepItem = element.querySelector('.' + CLS_SEPARATOR);
|
|
1020
|
+
sepHeight =
|
|
1021
|
+
(element.style.height === 'auto' || element.style.height === '') ? null : (sepItem && sepItem.offsetHeight);
|
|
1018
1022
|
}
|
|
1019
1023
|
var eleItem = element.querySelector('.' + CLS_ITEM + ':not(.' + CLS_SEPARATOR + '):not(.' + CLS_POPUP + ')');
|
|
1020
1024
|
var eleHeight = (element.style.height === 'auto' || element.style.height === '') ? null : (eleItem && eleItem.offsetHeight);
|
|
@@ -1266,7 +1270,7 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
1266
1270
|
nav.setAttribute('role', 'button');
|
|
1267
1271
|
element.appendChild(nav);
|
|
1268
1272
|
};
|
|
1269
|
-
Toolbar.prototype.tbarPriRef = function (inEle, indx, sepPri, el, des, elWid, wid, ig) {
|
|
1273
|
+
Toolbar.prototype.tbarPriRef = function (inEle, indx, sepPri, el, des, elWid, wid, ig, eleStyles) {
|
|
1270
1274
|
var ignoreCount = ig;
|
|
1271
1275
|
var popEle = this.popObj.element;
|
|
1272
1276
|
var query = '.' + CLS_ITEM + ':not(.' + CLS_SEPARATOR + '):not(.' + CLS_TBAROVERFLOW + ')';
|
|
@@ -1278,8 +1282,7 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
1278
1282
|
var eleSep = inEle.children[indx - (indx - sepPri) - 1];
|
|
1279
1283
|
var ignoreCheck = (!isNOU(eleSep) && checkClass(eleSep, CLS_TBARIGNORE));
|
|
1280
1284
|
if ((!isNOU(eleSep) && checkClass(eleSep, CLS_SEPARATOR) && !isVisible(eleSep)) || ignoreCheck) {
|
|
1281
|
-
|
|
1282
|
-
eleSep.style.display = 'inherit';
|
|
1285
|
+
eleSep.style.display = 'unset';
|
|
1283
1286
|
var eleSepWidth = eleSep.offsetWidth + (parseFloat(window.getComputedStyle(eleSep).marginRight) * 2);
|
|
1284
1287
|
var prevSep = eleSep.previousElementSibling;
|
|
1285
1288
|
if ((elWid + eleSepWidth) < wid || des) {
|
|
@@ -1289,8 +1292,9 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
1289
1292
|
}
|
|
1290
1293
|
}
|
|
1291
1294
|
else {
|
|
1295
|
+
setStyle(el, eleStyles);
|
|
1292
1296
|
if (prevSep.classList.contains(CLS_SEPARATOR)) {
|
|
1293
|
-
prevSep.style.display =
|
|
1297
|
+
prevSep.style.display = 'none';
|
|
1294
1298
|
}
|
|
1295
1299
|
}
|
|
1296
1300
|
eleSep.style.display = '';
|
|
@@ -1409,6 +1413,7 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
1409
1413
|
}
|
|
1410
1414
|
el.style.position = '';
|
|
1411
1415
|
if (elWidth < width || destroy) {
|
|
1416
|
+
var inlineStyles = { minWidth: el.style.minWidth, height: el.style.height, minHeight: el.style.minHeight };
|
|
1412
1417
|
setStyle(el, { minWidth: '', height: '', minHeight: '' });
|
|
1413
1418
|
if (!el.classList.contains(CLS_POPOVERFLOW)) {
|
|
1414
1419
|
el.classList.remove(CLS_POPUP);
|
|
@@ -1434,7 +1439,7 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
1434
1439
|
}
|
|
1435
1440
|
ignoreCount = this_1.ignoreEleFetch(index, innerEle);
|
|
1436
1441
|
if (el.classList.contains(CLS_TBAROVERFLOW)) {
|
|
1437
|
-
this_1.tbarPriRef(innerEle, index, sepBeforePri_1, el, destroy, elWidth, width, ignoreCount);
|
|
1442
|
+
this_1.tbarPriRef(innerEle, index, sepBeforePri_1, el, destroy, elWidth, width, ignoreCount, inlineStyles);
|
|
1438
1443
|
width -= el.offsetWidth;
|
|
1439
1444
|
}
|
|
1440
1445
|
else if (index === 0) {
|
|
@@ -2090,6 +2095,12 @@ var Toolbar = /** @class */ (function (_super) {
|
|
|
2090
2095
|
this.tbResize = false;
|
|
2091
2096
|
this.separator();
|
|
2092
2097
|
};
|
|
2098
|
+
Toolbar.prototype.orientationChange = function () {
|
|
2099
|
+
var _this = this;
|
|
2100
|
+
setTimeout(function () {
|
|
2101
|
+
_this.resize();
|
|
2102
|
+
}, 500);
|
|
2103
|
+
};
|
|
2093
2104
|
Toolbar.prototype.extendedOpen = function () {
|
|
2094
2105
|
var sib = this.element.querySelector('.' + CLS_EXTENDABLECLASS);
|
|
2095
2106
|
if (this.overflowMode === 'Extended' && sib) {
|
|
@@ -772,6 +772,7 @@ export declare class TreeView extends Component<HTMLElement> implements INotifyP
|
|
|
772
772
|
* @angularType string | object
|
|
773
773
|
* @reactType string | function | JSX.Element
|
|
774
774
|
* @vueType string | function
|
|
775
|
+
* @aspType string
|
|
775
776
|
*/
|
|
776
777
|
nodeTemplate: string | Function;
|
|
777
778
|
/**
|
package/styles/bootstrap.css
CHANGED
|
@@ -1180,7 +1180,7 @@
|
|
|
1180
1180
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
1181
1181
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
1182
1182
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
1183
|
-
padding: 0
|
|
1183
|
+
padding: 0 7px;
|
|
1184
1184
|
}
|
|
1185
1185
|
.e-bigger .e-toolbar .e-toolbar-item,
|
|
1186
1186
|
.e-toolbar.e-bigger .e-toolbar-item {
|
|
@@ -1335,7 +1335,7 @@
|
|
|
1335
1335
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
1336
1336
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
1337
1337
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
1338
|
-
padding: 0
|
|
1338
|
+
padding: 0 7px;
|
|
1339
1339
|
}
|
|
1340
1340
|
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator),
|
|
1341
1341
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
@@ -1554,7 +1554,7 @@
|
|
|
1554
1554
|
line-height: 25px;
|
|
1555
1555
|
}
|
|
1556
1556
|
.e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-toolbar .e-toolbar-item .e-tbar-btn:focus, .e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
1557
|
-
padding: 0
|
|
1557
|
+
padding: 0 2.5px;
|
|
1558
1558
|
}
|
|
1559
1559
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
1560
1560
|
outline: 0;
|
|
@@ -1807,7 +1807,7 @@
|
|
|
1807
1807
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
1808
1808
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
1809
1809
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
1810
|
-
padding: 0
|
|
1810
|
+
padding: 0 2.5px;
|
|
1811
1811
|
}
|
|
1812
1812
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
1813
1813
|
min-width: 30px;
|
|
@@ -1973,7 +1973,7 @@
|
|
|
1973
1973
|
color: #333;
|
|
1974
1974
|
border-color: #8c8c8c;
|
|
1975
1975
|
border-style: solid;
|
|
1976
|
-
border-width:
|
|
1976
|
+
border-width: 0;
|
|
1977
1977
|
box-shadow: none;
|
|
1978
1978
|
}
|
|
1979
1979
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
@@ -1986,7 +1986,7 @@
|
|
|
1986
1986
|
background: #e6e6e6;
|
|
1987
1987
|
border-color: #adadad;
|
|
1988
1988
|
border-style: solid;
|
|
1989
|
-
border-width:
|
|
1989
|
+
border-width: 0;
|
|
1990
1990
|
border-radius: 4px;
|
|
1991
1991
|
color: #333;
|
|
1992
1992
|
}
|
|
@@ -2006,7 +2006,7 @@
|
|
|
2006
2006
|
background: #e6e6e6;
|
|
2007
2007
|
border-color: #adadad;
|
|
2008
2008
|
border-style: solid;
|
|
2009
|
-
border-width:
|
|
2009
|
+
border-width: 0;
|
|
2010
2010
|
border-radius: 4px;
|
|
2011
2011
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
2012
2012
|
color: #333;
|
|
@@ -2162,7 +2162,7 @@
|
|
|
2162
2162
|
border-radius: 4px;
|
|
2163
2163
|
border-color: #8c8c8c;
|
|
2164
2164
|
border-style: solid;
|
|
2165
|
-
border-width:
|
|
2165
|
+
border-width: 0;
|
|
2166
2166
|
box-shadow: none;
|
|
2167
2167
|
}
|
|
2168
2168
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
@@ -2170,7 +2170,7 @@
|
|
|
2170
2170
|
border-radius: 4px;
|
|
2171
2171
|
border-color: #adadad;
|
|
2172
2172
|
border-style: solid;
|
|
2173
|
-
border-width:
|
|
2173
|
+
border-width: 0;
|
|
2174
2174
|
}
|
|
2175
2175
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
|
2176
2176
|
background: #e6e6e6;
|
|
@@ -2178,7 +2178,7 @@
|
|
|
2178
2178
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
2179
2179
|
border-color: #adadad;
|
|
2180
2180
|
border-style: solid;
|
|
2181
|
-
border-width:
|
|
2181
|
+
border-width: 0;
|
|
2182
2182
|
}
|
|
2183
2183
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
2184
2184
|
border: solid #ccc;
|
|
@@ -120,7 +120,7 @@ $tbar-separator-nrml-mrgn: 5.5px 6px !default;
|
|
|
120
120
|
$tbar-separator-vertical-bgr-mrgn: 6px !default;
|
|
121
121
|
$tbar-separator-vertical-nrml-mrgn: 6px 5.5px !default;
|
|
122
122
|
$tbar-btn-bgr-padding: 1px 7px !default;
|
|
123
|
-
$tbar-btn-bgr-focus-padding: 0
|
|
123
|
+
$tbar-btn-bgr-focus-padding: 0 7px !default;
|
|
124
124
|
$tbar-btn-nrml-padding: 1px 2.5px !default;
|
|
125
125
|
$tbar-icons-bgr-font-size: 14px !default;
|
|
126
126
|
$tbar-multirow-items-mrgn-bigger: 15px !default;
|
|
@@ -130,16 +130,16 @@ $tbar-multirow-item-top-btm-mrgn-small: 0 !default;
|
|
|
130
130
|
|
|
131
131
|
$tbar-bgr-btn-text-font-size: 14px !default;
|
|
132
132
|
$tbar-bgr-btn-icon-font-size: 16px !default;
|
|
133
|
-
$tbar-bgr-btn-focus-padding: 0
|
|
133
|
+
$tbar-bgr-btn-focus-padding: 0 7px !default;
|
|
134
134
|
|
|
135
135
|
$tbar-nrml-btn-border-radius: 4px !default;
|
|
136
|
-
$tbar-nrml-btn-focus-padding: 0
|
|
136
|
+
$tbar-nrml-btn-focus-padding: 0 2.5px !default;
|
|
137
137
|
$tbar-nrml-btn-focus-outline: 0 !default;
|
|
138
138
|
|
|
139
139
|
$tbar-btn-icons-focus-color: $tbar-press-font !default;
|
|
140
140
|
$tbar-btn-text-focus-color: $tbar-press-font !default;
|
|
141
141
|
$tbar-btn-focus-border-color: $tbar-focus-border-color !default;
|
|
142
|
-
$tbar-btn-hover-border-size:
|
|
142
|
+
$tbar-btn-hover-border-size: 0 !default;
|
|
143
143
|
$tbar-btn-hover-active-icons-color: $tbar-press-font !default;
|
|
144
144
|
$tbar-btn-hover-active-text-color: $tbar-press-font !default;
|
|
145
145
|
$tbar-btn-overlay-opacity: .5 !default;
|
|
@@ -152,7 +152,7 @@ $tbar-btn-pressed-focus-box-shadow: inset 0 3px 5px rgba($grey-base, .125) !defa
|
|
|
152
152
|
$tbar-btn-pressed-bg: $grey-e6 !default;
|
|
153
153
|
$tbar-flat-btn-active-box-shadow: inset 0 3px 5px rgba($grey-base, .125) !default;
|
|
154
154
|
|
|
155
|
-
$tbar-ext-btn-focus-padding: 0
|
|
155
|
+
$tbar-ext-btn-focus-padding: 0 2.5px !default;
|
|
156
156
|
$tbar-ext-btn-icon-padding: 0 !default;
|
|
157
157
|
$tbar-ext-btn-icon-font-size: 14px !default;
|
|
158
158
|
$tbar-ext-btn-focus-box-shadow: none !default;
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
56
56
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
57
57
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
58
|
-
padding: 0
|
|
58
|
+
padding: 0 7px;
|
|
59
59
|
}
|
|
60
60
|
.e-bigger .e-toolbar .e-toolbar-item,
|
|
61
61
|
.e-toolbar.e-bigger .e-toolbar-item {
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
211
211
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
212
212
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
213
|
-
padding: 0
|
|
213
|
+
padding: 0 7px;
|
|
214
214
|
}
|
|
215
215
|
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator),
|
|
216
216
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
@@ -429,7 +429,7 @@
|
|
|
429
429
|
line-height: 25px;
|
|
430
430
|
}
|
|
431
431
|
.e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-toolbar .e-toolbar-item .e-tbar-btn:focus, .e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
432
|
-
padding: 0
|
|
432
|
+
padding: 0 2.5px;
|
|
433
433
|
}
|
|
434
434
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
435
435
|
outline: 0;
|
|
@@ -682,7 +682,7 @@
|
|
|
682
682
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
683
683
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
684
684
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
685
|
-
padding: 0
|
|
685
|
+
padding: 0 2.5px;
|
|
686
686
|
}
|
|
687
687
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
688
688
|
min-width: 30px;
|
|
@@ -848,7 +848,7 @@
|
|
|
848
848
|
color: #333;
|
|
849
849
|
border-color: #8c8c8c;
|
|
850
850
|
border-style: solid;
|
|
851
|
-
border-width:
|
|
851
|
+
border-width: 0;
|
|
852
852
|
box-shadow: none;
|
|
853
853
|
}
|
|
854
854
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
@@ -861,7 +861,7 @@
|
|
|
861
861
|
background: #e6e6e6;
|
|
862
862
|
border-color: #adadad;
|
|
863
863
|
border-style: solid;
|
|
864
|
-
border-width:
|
|
864
|
+
border-width: 0;
|
|
865
865
|
border-radius: 4px;
|
|
866
866
|
color: #333;
|
|
867
867
|
}
|
|
@@ -881,7 +881,7 @@
|
|
|
881
881
|
background: #e6e6e6;
|
|
882
882
|
border-color: #adadad;
|
|
883
883
|
border-style: solid;
|
|
884
|
-
border-width:
|
|
884
|
+
border-width: 0;
|
|
885
885
|
border-radius: 4px;
|
|
886
886
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
887
887
|
color: #333;
|
|
@@ -1037,7 +1037,7 @@
|
|
|
1037
1037
|
border-radius: 4px;
|
|
1038
1038
|
border-color: #8c8c8c;
|
|
1039
1039
|
border-style: solid;
|
|
1040
|
-
border-width:
|
|
1040
|
+
border-width: 0;
|
|
1041
1041
|
box-shadow: none;
|
|
1042
1042
|
}
|
|
1043
1043
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
@@ -1045,7 +1045,7 @@
|
|
|
1045
1045
|
border-radius: 4px;
|
|
1046
1046
|
border-color: #adadad;
|
|
1047
1047
|
border-style: solid;
|
|
1048
|
-
border-width:
|
|
1048
|
+
border-width: 0;
|
|
1049
1049
|
}
|
|
1050
1050
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
|
1051
1051
|
background: #e6e6e6;
|
|
@@ -1053,7 +1053,7 @@
|
|
|
1053
1053
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
1054
1054
|
border-color: #adadad;
|
|
1055
1055
|
border-style: solid;
|
|
1056
|
-
border-width:
|
|
1056
|
+
border-width: 0;
|
|
1057
1057
|
}
|
|
1058
1058
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
1059
1059
|
border: solid #ccc;
|