@openui5/sap.tnt 1.92.0 → 1.93.3

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/.reuse/dep5 CHANGED
@@ -464,3 +464,8 @@ Copyright:
464
464
  License: Apache-2.0
465
465
  Comment: these files contain content from SAP and JSDoc 3: plugin.js is overall written by SAP, but contains code taken from JSDoc 3.6.7 (see the respective comments)
466
466
 
467
+ Files: src/sap.ui.core/src/sap/ui/core/themes/base/base.less src/themelib_sap_belize/src/sap/ui/core/themes/*/base.less src/themelib_sap_fiori_3/src/sap/ui/core/themes/*/base.less src/themelib_sap_horizon/src/sap/ui/core/themes/*/base.less
468
+ Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
469
+ License: Apache-2.0
470
+ Comment: these files belong to: SAP Theming Base Content
471
+
package/THIRDPARTY.txt CHANGED
@@ -197,7 +197,7 @@ License: BSD-3-Clause
197
197
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
198
198
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/sinon-qunit.js
199
199
 
200
- Component: URI.js, version: 1.19.6
200
+ Component: URI.js, version: 1.19.7
201
201
  Copyright: Rodney Rehm
202
202
  License: MIT
203
203
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
@@ -462,6 +462,15 @@ License: Apache-2.0
462
462
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
463
463
  Contained in: lib/jsdoc/ui5/plugin.js
464
464
 
465
+ Component: SAP Theming Base Content, version: 11.1.34
466
+ Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
467
+ License: Apache-2.0
468
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
469
+ Contained in: src/sap.ui.core/src/sap/ui/core/themes/base/base.less
470
+ src/themelib_sap_belize/src/sap/ui/core/themes/*/base.less
471
+ src/themelib_sap_fiori_3/src/sap/ui/core/themes/*/base.less
472
+ src/themelib_sap_horizon/src/sap/ui/core/themes/*/base.less
473
+
465
474
 
466
475
  ALL LICENSE TEXTS:
467
476
  ==================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.tnt",
3
- "version": "1.92.0",
3
+ "version": "1.93.3",
4
4
  "description": "OpenUI5 UI Library sap.tnt",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,7 +14,7 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.m": "1.92.0",
18
- "@openui5/sap.ui.core": "1.92.0"
17
+ "@openui5/sap.m": "1.93.3",
18
+ "@openui5/sap.ui.core": "1.93.3"
19
19
  }
20
20
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.92.0</version>
9
+ <version>1.93.3</version>
10
10
 
11
11
  <documentation>SAPUI5 library with responsive controls.</documentation>
12
12
 
@@ -47,7 +47,7 @@ sap.ui.define([
47
47
  * @extends sap.ui.core.Control
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.92.0
50
+ * @version 1.93.3
51
51
  *
52
52
  * @constructor
53
53
  * @public
@@ -41,7 +41,7 @@ sap.ui.define([
41
41
  * @extends sap.ui.core.Control
42
42
  *
43
43
  * @author SAP SE
44
- * @version 1.92.0
44
+ * @version 1.93.3
45
45
  *
46
46
  * @constructor
47
47
  * @public
@@ -32,7 +32,7 @@ sap.ui.define(["./library", 'sap/ui/core/Core', "sap/ui/core/Item", 'sap/ui/core
32
32
  * @extends sap.ui.core.Item
33
33
  *
34
34
  * @author SAP SE
35
- * @version 1.92.0
35
+ * @version 1.93.3
36
36
  *
37
37
  * @constructor
38
38
  * @public
@@ -112,7 +112,10 @@ sap.ui.define(["./library", 'sap/ui/core/Core', "sap/ui/core/Item", 'sap/ui/core
112
112
 
113
113
 
114
114
  NavigationListItem._getInvisibleText = function() {
115
- return this._invisibleText || (this._invisibleText = new InvisibleText().toStatic());
115
+ if (!this._invisibleText) {
116
+ this._invisibleText = new InvisibleText().toStatic();
117
+ }
118
+ return this._invisibleText;
116
119
  };
117
120
 
118
121
  /**
@@ -990,7 +993,7 @@ sap.ui.define(["./library", 'sap/ui/core/Core', "sap/ui/core/Item", 'sap/ui/core
990
993
 
991
994
  /**
992
995
  * Returns if a child item is selected
993
- * @return {Boolean} if a child item is selected
996
+ * @return {boolean} if a child item is selected
994
997
  * @private
995
998
  */
996
999
  NavigationListItem.prototype._hasSelectedChild = function(selectedItem) {
@@ -1009,4 +1012,3 @@ sap.ui.define(["./library", 'sap/ui/core/Core', "sap/ui/core/Item", 'sap/ui/core
1009
1012
  return NavigationListItem;
1010
1013
 
1011
1014
  });
1012
-
@@ -40,7 +40,7 @@ sap.ui.define([
40
40
  * @extends sap.ui.core.Control
41
41
  *
42
42
  * @author SAP SE
43
- * @version 1.92.0
43
+ * @version 1.93.3
44
44
  *
45
45
  * @constructor
46
46
  * @public
@@ -121,7 +121,7 @@ sap.ui.define([
121
121
  * @implements sap.tnt.IToolHeader
122
122
  *
123
123
  * @author SAP SE
124
- * @version 1.92.0
124
+ * @version 1.93.3
125
125
  *
126
126
  * @constructor
127
127
  * @public
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @extends sap.ui.core.Control
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.92.0
27
+ * @version 1.93.3
28
28
  *
29
29
  * @constructor
30
30
  * @public
@@ -7,18 +7,24 @@
7
7
  // Provides control sap.t.ToolPage.
8
8
  sap.ui.define([
9
9
  "./library",
10
+ "sap/ui/base/ManagedObjectObserver",
10
11
  "sap/ui/core/Control",
11
12
  "sap/ui/Device",
12
13
  "sap/ui/core/ResizeHandler",
13
14
  "./ToolPageRenderer"
14
- ], function (library, Control, Device, ResizeHandler, ToolPageRenderer) {
15
+ ], function (library,
16
+ ManagedObjectObserver,
17
+ Control,
18
+ Device,
19
+ ResizeHandler,
20
+ ToolPageRenderer) {
15
21
  "use strict";
16
22
 
17
23
  /**
18
24
  * Constructor for a new ToolPage.
19
25
  *
20
26
  * @param {string} [sId] ID for the new control, generated automatically if no id is given
21
- * @param {object} [mSettings] Initial settings for the new control
27
+ * @param {object} [mSettings] Initial settings for the new control
22
28
  *
23
29
  * @class
24
30
  * The ToolPage is a layout control, used to create a basic tools app that has a header, side navigation and contents area.
@@ -30,7 +36,7 @@ sap.ui.define([
30
36
  * @extends sap.ui.core.Control
31
37
  *
32
38
  * @author SAP SE
33
- * @version 1.92.0
39
+ * @version 1.93.3
34
40
  *
35
41
  * @constructor
36
42
  * @public
@@ -53,6 +59,12 @@ sap.ui.define([
53
59
  * The control to appear in the header area.
54
60
  */
55
61
  header: {type: "sap.tnt.IToolHeader", multiple: false},
62
+
63
+ /**
64
+ * The control to appear in the subheader area.
65
+ * @since 1.93
66
+ */
67
+ subHeader: {type: "sap.tnt.IToolHeader", multiple: false },
56
68
  /**
57
69
  * The side menu of the layout.
58
70
  */
@@ -66,8 +78,27 @@ sap.ui.define([
66
78
  }
67
79
  });
68
80
 
81
+ ToolPage.prototype.init = function () {
82
+ this._oContentObserver = new ManagedObjectObserver(this._onContentChange.bind(this));
83
+ this._oContentObserver.observe(this, { aggregations: ["subHeader", "sideContent"] });
84
+
85
+ this._oContentVisibilityObserver = new ManagedObjectObserver(this._onContentVisibilityChange.bind(this));
86
+
87
+ this._deregisterControl();
88
+ };
89
+
69
90
  ToolPage.prototype.exit = function () {
70
91
  this._deregisterControl();
92
+
93
+ if (this._oContentObserver) {
94
+ this._oContentObserver.disconnect();
95
+ this._oContentObserver = null;
96
+ }
97
+
98
+ if (this._oContentVisibilityObserver) {
99
+ this._oContentVisibilityObserver.disconnect();
100
+ this._oContentVisibilityObserver = null;
101
+ }
71
102
  };
72
103
 
73
104
  ToolPage.prototype.onBeforeRendering = function () {
@@ -201,5 +232,20 @@ sap.ui.define([
201
232
  return "Desktop";
202
233
  };
203
234
 
235
+ ToolPage.prototype._onContentChange = function(oChanges) {
236
+ switch (oChanges.mutation) {
237
+ case "insert":
238
+ this._oContentVisibilityObserver.observe(oChanges.child, { properties: ["visible"] });
239
+ break;
240
+ case "remove":
241
+ this._oContentVisibilityObserver.unobserve(oChanges.child, { properties: ["visible"] });
242
+ break;
243
+ }
244
+ };
245
+
246
+ ToolPage.prototype._onContentVisibilityChange = function(oChanges) {
247
+ this.invalidate();
248
+ };
249
+
204
250
  return ToolPage;
205
251
  }, /* bExport= */ true);
@@ -24,28 +24,42 @@ sap.ui.define([
24
24
  * @param {sap.ui.core.Control} oControl an object representation of the control that should be rendered
25
25
  */
26
26
  ToolPageRenderer.render = function (oRM, oControl) {
27
- var oHeader = oControl.getHeader();
27
+ var oHeader = oControl.getHeader(),
28
+ oSubHeader = oControl.getSubHeader();
28
29
 
29
- oRM.openStart("div", oControl).class("sapTntToolPage");
30
+ oRM.openStart("div", oControl)
31
+ .class("sapTntToolPage")
32
+ .openEnd();
30
33
 
31
34
  if (oHeader) {
32
- oRM.class("sapTntToolPageWithHeader");
33
- }
35
+ oRM.openStart("header").openEnd();
34
36
 
35
- oRM.openEnd();
37
+ oRM.openStart("div", oControl.getId() + "-header")
38
+ .class("sapTntToolPageHeader")
39
+ .openEnd();
36
40
 
37
- if (oHeader) {
41
+ oRM.renderControl(oHeader);
42
+
43
+ oRM.close("div");
44
+
45
+ oRM.close("header");
46
+ }
47
+
48
+ if (oSubHeader && oSubHeader.getVisible()) {
38
49
  oRM.openStart("header").openEnd();
39
50
 
40
- oRM.openStart("div", oControl.getId() + "-header").class("sapTntToolPageHeader").openEnd();
51
+ oRM.openStart("div", oControl.getId() + "-subHeader")
52
+ .class("sapTntToolPageHeader")
53
+ .openEnd();
41
54
 
42
- oRM.renderControl(oHeader);
55
+ oRM.renderControl(oSubHeader);
43
56
 
44
57
  oRM.close("div");
45
58
 
46
59
  oRM.close("header");
47
60
  }
48
61
 
62
+
49
63
  this.renderContentWrapper(oRM, oControl);
50
64
 
51
65
  oRM.close("div");
@@ -68,7 +82,7 @@ sap.ui.define([
68
82
 
69
83
  ToolPageRenderer.renderAsideContent = function (oRM, oControl) {
70
84
  var oSideContent = oControl.getSideContent();
71
- if (!oSideContent) {
85
+ if (!oSideContent || !oSideContent.getVisible()) {
72
86
  return;
73
87
  }
74
88
 
@@ -17,7 +17,7 @@ sap.ui.define(["sap/ui/core/library", "sap/m/library"],
17
17
  * @namespace
18
18
  * @name sap.tnt
19
19
  * @author SAP SE
20
- * @version 1.92.0
20
+ * @version 1.93.3
21
21
  * @since 1.36
22
22
  * @public
23
23
  */
@@ -25,7 +25,7 @@ sap.ui.define(["sap/ui/core/library", "sap/m/library"],
25
25
  // delegate further initialization of this library to the Core
26
26
  sap.ui.getCore().initLibrary({
27
27
  name : "sap.tnt",
28
- version: "1.92.0",
28
+ version: "1.93.3",
29
29
  dependencies : ["sap.ui.core", "sap.m"],
30
30
  designtime: "sap/tnt/designtime/library.designtime",
31
31
  types: [
@@ -6,7 +6,7 @@
6
6
  @_sap_tnt_NavigationList_ItemHeight: 3rem;
7
7
  @_sap_tnt_NavigationList_NoIconsGroupPadding: 1rem;
8
8
  @_sap_tnt_NavigationList_NoIconsNestedItemPadding: 1rem;
9
- @_sap_tnt_NavigationList_ItemFocusBorder: 1px dotted @sapUiContentFocusColor;
9
+ @_sap_tnt_NavigationList_ItemFocusBorder: @sapUiContentFocusWidth @sapUiContentFocusStyle @sapUiContentFocusColor;
10
10
  @_sap_tnt_NavigationList_SelectedItemBorderColor: @sapUiListSelectionBorderColor;
11
11
  @_sap_tnt_NavigationList_Collapsed_SelectedGroupBorderColor: @_sap_tnt_NavigationList_SelectedItemBorderColor;
12
12
  @_sap_tnt_NavigationList_Collapsed_GroupBorderColor: @sapUiListBorderColor;
@@ -170,11 +170,12 @@
170
170
 
171
171
  .sapTntNavLIItemSelected.sapTntNavLIItem,
172
172
  .sapTntNavLIItemSelected .sapTntNavLIGroup,
173
- .sapTntNavLIItemSelected.sapTntNavLIGroupItem.sapTntNavLIGroupItem {
173
+ .sapTntNavLIItemSelected.sapTntNavLIGroupItem {
174
174
  background-color: @sapUiListSelectionBackgroundColor;
175
175
  }
176
176
 
177
177
  .sapTntNavLIItemSelected .sapTntNavLIItem:hover,
178
+ .sapTntNavLIItemSelected.sapTntNavLIItem.sapTntNavLIGroup:hover,
178
179
  .sapTntNavLIItemSelected.sapTntNavLIGroupItem.sapTntNavLIGroupItem:hover {
179
180
  background-color: @sapUiListSelectionHoverBackground;
180
181
  }
@@ -23,7 +23,7 @@
23
23
  .sapMIBar.sapTntToolHeader .sapMBarChild.sapMITH {
24
24
  height: @_sap_tnt_ToolHeader_Height;
25
25
  box-shadow: none;
26
- padding: 0 1rem;
26
+ padding: 0 0.5rem;
27
27
  flex: 1;
28
28
  min-width: 0; // fixes Chrome flex issue
29
29
 
@@ -31,18 +31,20 @@
31
31
  padding-top: 0;
32
32
  padding-bottom: 0;
33
33
 
34
- .sapMITBText {
35
- font-size: @sapMFontLargeSize;
36
- }
37
-
38
34
  .sapMITBFilter .sapMITBText + .sapMITBContentArrow {
39
- height: 0.75rem;
35
+ &:after {
36
+ border-radius: 0.125rem 0.125rem 0.125rem 0.125rem;
37
+ box-shadow: none;
38
+ margin-bottom: 0.188rem;
39
+ }
40
40
  }
41
41
  }
42
42
  }
43
43
 
44
- .sap-phone .sapTntToolHeader .sapMITH .sapMITBHead .sapMITBFilter .sapMITBText + .sapMITBContentArrow {
45
- height: 0.825rem;
44
+ .sapMITBFilterPopover.sapMITBFilterPopoverInToolHeader {
45
+ .sapUiIcon {
46
+ color: @sapUiContentNonInteractiveIconColor;
47
+ }
46
48
  }
47
49
 
48
50
  // ==========================================================================
@@ -4,7 +4,7 @@
4
4
  /* ================================= */
5
5
 
6
6
  /* ==========================================================================
7
- Variables and mixins
7
+ Variables
8
8
  ========================================================================== */
9
9
 
10
10
  @_sap_tnt_ToolPage_AsideWidth : 15rem;
@@ -19,25 +19,6 @@
19
19
 
20
20
  @_sap_tnt_ToolPage_AnimationDuration : 0.3s;
21
21
 
22
- .display-flex() {
23
- display: -webkit-box;
24
- display: -webkit-flex;
25
- display: flex;
26
- }
27
-
28
- .flex-direction-column() {
29
- -webkit-box-direction: normal;
30
- -webkit-box-orient: vertical;
31
- -webkit-flex-direction: column;
32
- flex-direction: column;
33
- }
34
-
35
- .flex-grow(@flex-grow) {
36
- -webkit-box-flex: @flex-grow;
37
- -webkit-flex-grow: @flex-grow;
38
- flex-grow: @flex-grow;
39
- }
40
-
41
22
  /* ==========================================================================
42
23
  Root element
43
24
  ========================================================================== */
@@ -48,8 +29,8 @@
48
29
  bottom: 0;
49
30
  left: 0;
50
31
 
51
- .display-flex();
52
- .flex-direction-column();
32
+ display: flex;
33
+ flex-direction: column;
53
34
 
54
35
  box-sizing: border-box;
55
36
  overflow: hidden;
@@ -66,30 +47,26 @@
66
47
  Content wrapper
67
48
  ========================================================================== */
68
49
  .sapTntToolPageContentWrapper {
69
- .display-flex();
70
- .flex-grow(1);
71
- max-height: 100%;
50
+ display: flex;
51
+ flex-grow: 1;
52
+ min-height: 0; // fixes flex chrome issue
72
53
  position: relative;
73
54
  }
74
55
 
75
- .sapTntToolPageWithHeader .sapTntToolPageContentWrapper {
76
- max-height: calc(~'100% - @{_sap_tnt_ToolPage_HeaderHeight}');
77
- }
78
-
79
56
  /* Aside container
80
57
  ========================================================================== */
81
58
 
82
59
  .sapTntToolPageAside {
83
- .display-flex();
84
- .flex-direction-column();
60
+ display: flex;
61
+ flex-direction: column;
85
62
 
86
63
  will-change: transform;
87
64
  }
88
65
 
89
66
  .sapTntToolPageAsideContent {
90
- .display-flex();
91
- .flex-direction-column();
92
- .flex-grow(1);
67
+ display: flex;
68
+ flex-direction: column;
69
+ flex-grow: 1;
93
70
  height: 100%;
94
71
  }
95
72
 
@@ -99,12 +76,10 @@
99
76
  }
100
77
 
101
78
  html:not([data-sap-ui-animation='off']) .sapTntToolPageMain {
102
- -webkit-transition: padding-left @_sap_tnt_ToolPage_AnimationDuration, -webkit-transform @_sap_tnt_ToolPage_AnimationDuration; /* Safari */
103
79
  transition: padding-left @_sap_tnt_ToolPage_AnimationDuration, transform @_sap_tnt_ToolPage_AnimationDuration;
104
80
  }
105
81
 
106
82
  html:not([data-sap-ui-animation='off']) .sapTntToolPageAside {
107
- -webkit-transition: -webkit-transform @_sap_tnt_ToolPage_AnimationDuration; /* Safari */
108
83
  transition: transform @_sap_tnt_ToolPage_AnimationDuration;
109
84
  }
110
85
 
@@ -148,17 +123,14 @@ html:not([data-sap-ui-animation='off']) .sapTntToolPageAside {
148
123
  }
149
124
 
150
125
  .sapTntToolPageMain {
151
- -webkit-transform: translateX(@_sap_tnt_ToolPage_AsideWidth);
152
126
  transform: translateX(@_sap_tnt_ToolPage_AsideWidth);
153
127
  }
154
128
 
155
129
  .sapTntToolPageAsideCollapsed {
156
130
  .sapTntToolPageAside {
157
- -webkit-transform: translateX(-@_sap_tnt_ToolPage_AsideWidth);
158
131
  transform: translateX(-@_sap_tnt_ToolPage_AsideWidth);
159
132
  }
160
133
  .sapTntToolPageMain {
161
- -webkit-transform: translateX(0);
162
134
  transform: translateX(0);
163
135
  }
164
136
  }
@@ -168,25 +140,23 @@ html:not([data-sap-ui-animation='off']) .sapTntToolPageAside {
168
140
  ========================================================================== */
169
141
 
170
142
  .sapTntToolPageMain {
171
- .display-flex();
172
- .flex-direction-column();
173
- .flex-grow(1);
143
+ display: flex;
144
+ flex-direction: column;
145
+ flex: 1;
146
+ min-width: 0; // fixes flex chrome issue
174
147
 
175
148
  will-change: transform;
176
149
  }
177
150
 
178
151
  .sapTntToolPageMainContent {
179
- .flex-grow(1);
180
-
152
+ flex: 1;
153
+ min-height: 0; // fixes flex chrome issue
181
154
  position: relative;
182
155
  }
183
156
 
184
157
  .sapTntToolPageMainContentWrapper {
185
- position: absolute;
186
- top: 0;
187
- right: 0;
188
- bottom: 0;
189
- left: 0;
158
+ width: 100%;
159
+ height: 100%;
190
160
  }
191
161
 
192
162
  .sapTntToolPageMainFooter {
@@ -241,17 +211,14 @@ html:not([data-sap-ui-animation='off']) .sapTntToolPageAside {
241
211
  }
242
212
 
243
213
  .sapTntToolPageMain {
244
- -webkit-transform: translateX(@_sap_tnt_ToolPage_CompactAsideWidth);
245
214
  transform: translateX(@_sap_tnt_ToolPage_CompactAsideWidth);
246
215
  }
247
216
 
248
217
  .sapTntToolPageAsideCollapsed {
249
218
  .sapTntToolPageAside {
250
- -webkit-transform: translateX(-@_sap_tnt_ToolPage_CompactAsideWidth);
251
219
  transform: translateX(-@_sap_tnt_ToolPage_CompactAsideWidth);
252
220
  }
253
221
  .sapTntToolPageMain {
254
- -webkit-transform: translateX(0);
255
222
  transform: translateX(0);
256
223
  }
257
224
  }
@@ -264,17 +231,14 @@ html:not([data-sap-ui-animation='off']) .sapTntToolPageAside {
264
231
  html[dir=rtl] {
265
232
  &.sap-phone {
266
233
  .sapTntToolPageMain {
267
- -webkit-transform: translateX(-@_sap_tnt_ToolPage_AsideWidth);
268
234
  transform: translateX(-@_sap_tnt_ToolPage_AsideWidth);
269
235
  }
270
236
 
271
237
  .sapTntToolPageAsideCollapsed {
272
238
  .sapTntToolPageAside {
273
- -webkit-transform: translateX(@_sap_tnt_ToolPage_AsideWidth);
274
239
  transform: translateX(@_sap_tnt_ToolPage_AsideWidth);
275
240
  }
276
241
  .sapTntToolPageMain {
277
- -webkit-transform: translateX(0);
278
242
  transform: translateX(0);
279
243
  }
280
244
  }
@@ -282,17 +246,14 @@ html[dir=rtl] {
282
246
 
283
247
  &.sap-phone .sapUiSizeCompact {
284
248
  .sapTntToolPageMain {
285
- -webkit-transform: translateX(-@_sap_tnt_ToolPage_CompactAsideWidth);
286
249
  transform: translateX(-@_sap_tnt_ToolPage_CompactAsideWidth);
287
250
  }
288
251
 
289
252
  .sapTntToolPageAsideCollapsed {
290
253
  .sapTntToolPageAside {
291
- -webkit-transform: translateX(@_sap_tnt_ToolPage_CompactAsideWidth);
292
254
  transform: translateX(@_sap_tnt_ToolPage_CompactAsideWidth);
293
255
  }
294
256
  .sapTntToolPageMain {
295
- -webkit-transform: translateX(0);
296
257
  transform: translateX(0);
297
258
  }
298
259
  }