@eclipse-scout/core 22.0.2 → 22.0.12
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/eclipse-scout-core-af5ff6abad5f1ff9fd18.min.js +2 -0
- package/dist/eclipse-scout-core-af5ff6abad5f1ff9fd18.min.js.map +1 -0
- package/dist/eclipse-scout-core-theme-74b63e0d57bed407a729.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark-b82aea152f416e38ce7f.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark.css +153 -52
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +153 -52
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +785 -564
- package/dist/eclipse-scout-core.js.map +1 -1
- package/dist/file-list +4 -4
- package/package.json +2 -2
- package/src/ErrorHandler.js +66 -28
- package/src/{table/TableHeaderMenuButtonKeyStroke.js → action/ActionExecKeyStroke.js} +4 -5
- package/src/box/Box.less +10 -6
- package/src/breadcrumbbar/BreadcrumbItem.less +3 -6
- package/src/checkbox/CheckBox.less +3 -1
- package/src/datepicker/DatePickerTouchPopup.js +8 -0
- package/src/desktop/DisableBrowserF5ReloadKeyStroke.js +1 -0
- package/src/desktop/bench/DesktopTabSelectKeyStroke.js +2 -1
- package/src/desktop/desktoptab/DisableBrowserTabSwitchingKeyStroke.js +1 -0
- package/src/desktop/navigation/EnlargeNavigationKeyStroke.js +1 -0
- package/src/desktop/navigation/ShrinkNavigationKeyStroke.js +1 -0
- package/src/desktop/viewbutton/ViewMenuPopupEnterKeyStroke.js +2 -1
- package/src/filechooser/FileChooser.js +1 -1
- package/src/filechooser/FileChooser.less +15 -10
- package/src/focus/FocusContext.js +11 -8
- package/src/focus/FocusManager.js +24 -5
- package/src/form/fields/LookupBox.js +3 -1
- package/src/form/fields/LookupBox.less +28 -2
- package/src/form/fields/TextFieldIcon.less +2 -2
- package/src/form/fields/ValueField.js +11 -2
- package/src/form/fields/breadcrumbbarfield/BreadcrumbBarField.less +10 -4
- package/src/form/fields/button/ButtonKeyStroke.js +0 -3
- package/src/form/fields/datefield/DateField.js +31 -47
- package/src/form/fields/filechooserfield/FileChooserFieldBrowseKeyStroke.js +1 -3
- package/src/form/fields/filechooserfield/FileChooserFieldDeleteKeyStroke.js +1 -3
- package/src/form/fields/groupbox/GroupBox.js +1 -0
- package/src/form/fields/listbox/ListBox.js +5 -4
- package/src/form/fields/lookupfield/lookupField.js +6 -5
- package/src/form/fields/smartfield/ProposalField.js +2 -1
- package/src/form/fields/smartfield/ProposalTreeNode.js +4 -8
- package/src/form/fields/smartfield/SmartField.js +4 -20
- package/src/form/fields/smartfield/SmartField.less +24 -11
- package/src/form/fields/splitbox/SplitBoxCollapseKeyStroke.js +1 -0
- package/src/form/fields/splitbox/SplitBoxFirstCollapseKeyStroke.js +1 -0
- package/src/form/fields/splitbox/SplitBoxSecondCollapseKeyStroke.js +1 -0
- package/src/form/fields/tabbox/TabAreaLeftKeyStroke.js +2 -0
- package/src/form/fields/tabbox/TabAreaRightKeyStroke.js +2 -0
- package/src/form/fields/tabbox/TabBox.js +4 -0
- package/src/form/fields/tabbox/TabBoxHeader.js +4 -0
- package/src/form/fields/tabbox/TabItem.js +4 -0
- package/src/form/fields/treebox/TreeBox.js +6 -5
- package/src/index.js +1 -1
- package/src/jquery/jquery-scout.js +12 -0
- package/src/keystroke/CloseKeyStroke.js +1 -0
- package/src/keystroke/ContextMenuKeyStroke.js +1 -0
- package/src/keystroke/FocusFilterFieldKeyStroke.js +1 -0
- package/src/keystroke/KeyStroke.js +11 -3
- package/src/keystroke/TabItemKeyStroke.js +8 -5
- package/src/logging/logging.js +16 -8
- package/src/login/LoginBox.js +3 -2
- package/src/login/LoginBox.less +18 -1
- package/src/menu/MenuExecKeyStroke.js +3 -17
- package/src/menu/MenuNavigationKeyStroke.js +1 -0
- package/src/menu/menubar/MenuBarLeftKeyStroke.js +2 -0
- package/src/menu/menubar/MenuBarRightKeyStroke.js +2 -0
- package/src/messagebox/MessageBox.less +17 -17
- package/src/planner/Planner.js +2 -0
- package/src/session/Session.js +8 -5
- package/src/style/fonts.less +5 -1
- package/src/style/sizes.less +14 -5
- package/src/table/Table.js +25 -19
- package/src/table/Table.less +14 -7
- package/src/table/TableAdapter.js +9 -12
- package/src/table/TableHeaderMenuButton.js +2 -2
- package/src/table/TableLayout.js +6 -0
- package/src/table/columns/Column.js +8 -5
- package/src/table/columns/ColumnOptimalWidthMeasurer.js +1 -1
- package/src/table/editor/CellEditorPopup.js +21 -14
- package/src/table/keystrokes/AbstractTableNavigationKeyStroke.js +1 -0
- package/src/table/keystrokes/TableCopyKeyStroke.js +1 -0
- package/src/table/keystrokes/TableNavigationCollapseKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationEndKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationExpandKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationHomeKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationPageDownKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationPageUpKeyStroke.js +2 -2
- package/src/table/keystrokes/TableNavigationUpKeyStroke.js +2 -2
- package/src/table/keystrokes/TableRefreshKeyStroke.js +2 -2
- package/src/table/keystrokes/TableSelectAllKeyStroke.js +3 -2
- package/src/table/keystrokes/TableStartCellEditKeyStroke.js +2 -2
- package/src/testing/index.js +1 -0
- package/src/testing/lookup/AbortableMicrotaskStaticLookupCall.js +50 -0
- package/src/tile/TileGrid.js +9 -11
- package/src/tile/fields/tablefield/TileTableField.less +19 -2
- package/src/tile/keystrokes/TileGridSelectKeyStroke.js +3 -2
- package/src/timepicker/TimePickerTouchPopup.js +8 -0
- package/src/tree/Tree.js +8 -4
- package/src/tree/Tree.less +12 -2
- package/src/tree/keystrokes/AbstractTreeNavigationKeyStroke.js +1 -0
- package/src/tree/keystrokes/TreeCollapseAllKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeExpandOrDrillDownKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeNavigationDownKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeNavigationEndKeyStroke.js +2 -2
- package/src/tree/keystrokes/TreeNavigationUpKeyStroke.js +2 -2
- package/src/util/Device.js +4 -4
- package/src/util/arrays.js +20 -0
- package/src/widget/Widget.js +6 -4
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js +0 -2
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js.map +0 -1
- package/dist/eclipse-scout-core-theme-6b2fef56e9e49231a49c.min.css +0 -1
- package/dist/eclipse-scout-core-theme-dark-d2bb274dd42f132bfca0.min.css +0 -1
|
@@ -928,7 +928,7 @@ iframe {
|
|
|
928
928
|
text-align: center;
|
|
929
929
|
}
|
|
930
930
|
.box-content > .header > .logo {
|
|
931
|
-
margin-top:
|
|
931
|
+
margin-top: 4px;
|
|
932
932
|
margin-bottom: 40px;
|
|
933
933
|
max-height: 30px;
|
|
934
934
|
}
|
|
@@ -948,21 +948,23 @@ iframe {
|
|
|
948
948
|
}
|
|
949
949
|
@media (max-width: 490px) {
|
|
950
950
|
.box-content {
|
|
951
|
-
padding:
|
|
951
|
+
padding: 40px;
|
|
952
952
|
margin-left: 10px;
|
|
953
953
|
margin-right: 10px;
|
|
954
954
|
}
|
|
955
955
|
.box-content > .header > .logo {
|
|
956
|
-
margin-bottom:
|
|
956
|
+
margin-bottom: 30px;
|
|
957
|
+
margin-top: 0;
|
|
957
958
|
}
|
|
958
959
|
}
|
|
959
960
|
@media (max-height: 400px) {
|
|
960
961
|
.box-content {
|
|
961
|
-
padding-top:
|
|
962
|
-
padding-bottom:
|
|
962
|
+
padding-top: 25px;
|
|
963
|
+
padding-bottom: 25px;
|
|
963
964
|
}
|
|
964
965
|
.box-content > .header > .logo {
|
|
965
966
|
margin-bottom: 20px;
|
|
967
|
+
margin-top: 0;
|
|
966
968
|
}
|
|
967
969
|
}
|
|
968
970
|
@media (max-height: 700px) {
|
|
@@ -1002,6 +1004,7 @@ iframe {
|
|
|
1002
1004
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
1003
1005
|
*/
|
|
1004
1006
|
.check-box {
|
|
1007
|
+
cursor: pointer;
|
|
1005
1008
|
position: relative;
|
|
1006
1009
|
display: inline-block;
|
|
1007
1010
|
text-align: center;
|
|
@@ -1050,6 +1053,7 @@ iframe {
|
|
|
1050
1053
|
background-color: #0E1316;
|
|
1051
1054
|
}
|
|
1052
1055
|
.check-box.disabled {
|
|
1056
|
+
cursor: default;
|
|
1053
1057
|
border-color: rgba(255, 255, 255, 0.12);
|
|
1054
1058
|
}
|
|
1055
1059
|
.check-box.disabled.checked {
|
|
@@ -3599,7 +3603,7 @@ iframe {
|
|
|
3599
3603
|
}
|
|
3600
3604
|
.outline.tree > .tree-data > .tree-node > .font-icon,
|
|
3601
3605
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .font-icon {
|
|
3602
|
-
line-height:
|
|
3606
|
+
line-height: 15px;
|
|
3603
3607
|
font-size: 16px;
|
|
3604
3608
|
color: #7E8588;
|
|
3605
3609
|
}
|
|
@@ -3612,7 +3616,7 @@ iframe {
|
|
|
3612
3616
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control {
|
|
3613
3617
|
padding-top: 9px;
|
|
3614
3618
|
padding-left: 20px;
|
|
3615
|
-
line-height:
|
|
3619
|
+
line-height: 15px;
|
|
3616
3620
|
color: #7E8588;
|
|
3617
3621
|
}
|
|
3618
3622
|
.outline.tree > .tree-data > .tree-node > .tree-node-control:hover,
|
|
@@ -4469,11 +4473,11 @@ iframe {
|
|
|
4469
4473
|
background-color: #252F34;
|
|
4470
4474
|
}
|
|
4471
4475
|
/*
|
|
4472
|
-
* Copyright (c) 2010-
|
|
4476
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4473
4477
|
* All rights reserved. This program and the accompanying materials
|
|
4474
4478
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4475
4479
|
* which accompanies this distribution, and is available at
|
|
4476
|
-
*
|
|
4480
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
4477
4481
|
*
|
|
4478
4482
|
* Contributors:
|
|
4479
4483
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -4628,16 +4632,21 @@ iframe {
|
|
|
4628
4632
|
}
|
|
4629
4633
|
@media (max-width: 473px) {
|
|
4630
4634
|
.file-chooser {
|
|
4631
|
-
/* reduce message box width on small screens */
|
|
4632
|
-
max-width: 330px;
|
|
4633
|
-
/* no need to have a margin on small screens */
|
|
4634
4635
|
margin: 0;
|
|
4636
|
+
/* no need to have a margin on small screens */
|
|
4637
|
+
}
|
|
4638
|
+
.file-chooser > .box-buttons {
|
|
4639
|
+
padding: 0 13px 26px 13px;
|
|
4640
|
+
/* use less x-padding for buttons so that more text can be shown */
|
|
4635
4641
|
}
|
|
4636
4642
|
.file-chooser > .box-buttons > .box-button {
|
|
4637
4643
|
margin-right: 4px;
|
|
4638
4644
|
min-width: 70px;
|
|
4639
4645
|
/* less min width for buttons on small screens */
|
|
4640
4646
|
}
|
|
4647
|
+
.file-chooser > .box-buttons > .box-button:last-child {
|
|
4648
|
+
margin-right: 0;
|
|
4649
|
+
}
|
|
4641
4650
|
}
|
|
4642
4651
|
/*
|
|
4643
4652
|
* Copyright (c) 2014-2018 BSI Business Systems Integration AG.
|
|
@@ -5178,11 +5187,11 @@ iframe {
|
|
|
5178
5187
|
position: absolute;
|
|
5179
5188
|
}
|
|
5180
5189
|
/*
|
|
5181
|
-
* Copyright (c)
|
|
5190
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
5182
5191
|
* All rights reserved. This program and the accompanying materials
|
|
5183
5192
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
5184
5193
|
* which accompanies this distribution, and is available at
|
|
5185
|
-
*
|
|
5194
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
5186
5195
|
*
|
|
5187
5196
|
* Contributors:
|
|
5188
5197
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -5224,6 +5233,34 @@ iframe {
|
|
|
5224
5233
|
top: 0;
|
|
5225
5234
|
height: 100%;
|
|
5226
5235
|
}
|
|
5236
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row.inactive,
|
|
5237
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row.inactive {
|
|
5238
|
+
font-style: italic;
|
|
5239
|
+
}
|
|
5240
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row.inactive > .table-cell.last > .text::after,
|
|
5241
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row.inactive > .table-cell.last > .text::after {
|
|
5242
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
5243
|
+
}
|
|
5244
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row > .table-cell.last.inactive,
|
|
5245
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row > .table-cell.last.inactive {
|
|
5246
|
+
font-style: italic;
|
|
5247
|
+
}
|
|
5248
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row > .table-cell.last.inactive > .text::after,
|
|
5249
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row > .table-cell.last.inactive > .text::after {
|
|
5250
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
5251
|
+
}
|
|
5252
|
+
.lookup-box > .field > .structure.tree > .tree-data > .tree-node.inactive,
|
|
5253
|
+
.lookup-box > .field > .structure.table > .tree-data > .tree-node.inactive,
|
|
5254
|
+
.lookup-box > .field > .structure.tree > .tree-data > .animation-wrapper > .tree-node.inactive,
|
|
5255
|
+
.lookup-box > .field > .structure.table > .tree-data > .animation-wrapper > .tree-node.inactive {
|
|
5256
|
+
font-style: italic;
|
|
5257
|
+
}
|
|
5258
|
+
.lookup-box > .field > .structure.tree > .tree-data > .tree-node.inactive > .text::after,
|
|
5259
|
+
.lookup-box > .field > .structure.table > .tree-data > .tree-node.inactive > .text::after,
|
|
5260
|
+
.lookup-box > .field > .structure.tree > .tree-data > .animation-wrapper > .tree-node.inactive > .text::after,
|
|
5261
|
+
.lookup-box > .field > .structure.table > .tree-data > .animation-wrapper > .tree-node.inactive > .text::after {
|
|
5262
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
5263
|
+
}
|
|
5227
5264
|
/*
|
|
5228
5265
|
* Copyright (c) 2014-2018 BSI Business Systems Integration AG.
|
|
5229
5266
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -6610,11 +6647,11 @@ iframe {
|
|
|
6610
6647
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
6611
6648
|
*/
|
|
6612
6649
|
/*
|
|
6613
|
-
* Copyright (c)
|
|
6650
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
6614
6651
|
* All rights reserved. This program and the accompanying materials
|
|
6615
6652
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
6616
6653
|
* which accompanies this distribution, and is available at
|
|
6617
|
-
*
|
|
6654
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
6618
6655
|
*
|
|
6619
6656
|
* Contributors:
|
|
6620
6657
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -6924,15 +6961,26 @@ iframe {
|
|
|
6924
6961
|
.proposal-chooser > .table > .table-data > .table-row.first.selected::after {
|
|
6925
6962
|
top: -1px;
|
|
6926
6963
|
}
|
|
6964
|
+
.proposal-chooser > .table > .table-data > .table-row.inactive {
|
|
6965
|
+
font-style: italic;
|
|
6966
|
+
}
|
|
6967
|
+
.proposal-chooser > .table > .table-data > .table-row.inactive > .table-cell.last > .text::after {
|
|
6968
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
6969
|
+
}
|
|
6927
6970
|
.proposal-chooser > .table > .table-data > .scrollbar.y-axis > .scrollbar-thumb > .scrollbar-thumb-handle {
|
|
6928
6971
|
margin-left: 1px;
|
|
6929
6972
|
}
|
|
6930
6973
|
.proposal-chooser > .tree > .tree-data {
|
|
6931
6974
|
padding: 8px 12px;
|
|
6932
6975
|
}
|
|
6933
|
-
.proposal-chooser > .tree > .tree-data > .tree-node.inactive
|
|
6976
|
+
.proposal-chooser > .tree > .tree-data > .tree-node.inactive,
|
|
6977
|
+
.proposal-chooser > .tree > .tree-data > .animation-wrapper > .tree-node.inactive {
|
|
6934
6978
|
font-style: italic;
|
|
6935
6979
|
}
|
|
6980
|
+
.proposal-chooser > .tree > .tree-data > .tree-node.inactive > .text::after,
|
|
6981
|
+
.proposal-chooser > .tree > .tree-data > .animation-wrapper > .tree-node.inactive > .text::after {
|
|
6982
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
6983
|
+
}
|
|
6936
6984
|
.status > .ellipsis {
|
|
6937
6985
|
padding-left: 3px;
|
|
6938
6986
|
}
|
|
@@ -8917,7 +8965,7 @@ iframe {
|
|
|
8917
8965
|
margin: 8px 6px;
|
|
8918
8966
|
}
|
|
8919
8967
|
/*
|
|
8920
|
-
* Copyright (c) 2010-
|
|
8968
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
8921
8969
|
* All rights reserved. This program and the accompanying materials
|
|
8922
8970
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
8923
8971
|
* which accompanies this distribution, and is available at
|
|
@@ -8942,6 +8990,18 @@ iframe {
|
|
|
8942
8990
|
.messagebox.full-height.full-width {
|
|
8943
8991
|
border-radius: 0;
|
|
8944
8992
|
}
|
|
8993
|
+
.messagebox.full-width > .messagebox-buttons {
|
|
8994
|
+
padding-left: 10px;
|
|
8995
|
+
padding-right: 10px;
|
|
8996
|
+
}
|
|
8997
|
+
.messagebox.full-width > .messagebox-buttons > .box-button {
|
|
8998
|
+
min-width: 70px;
|
|
8999
|
+
/* less min width for buttons on small screens */
|
|
9000
|
+
margin-right: 8px;
|
|
9001
|
+
}
|
|
9002
|
+
.messagebox.full-width > .messagebox-buttons > .box-button:last-child {
|
|
9003
|
+
margin-right: 0;
|
|
9004
|
+
}
|
|
8945
9005
|
.messagebox.info > .messagebox-content > .messagebox-header {
|
|
8946
9006
|
color: #71b0e8;
|
|
8947
9007
|
}
|
|
@@ -9236,23 +9296,9 @@ iframe {
|
|
|
9236
9296
|
}
|
|
9237
9297
|
@media (max-width: 473px) {
|
|
9238
9298
|
.messagebox {
|
|
9239
|
-
/* reduce message box width on small screens */
|
|
9240
|
-
max-width: 330px;
|
|
9241
9299
|
/* no need to have a margin on small screens */
|
|
9242
9300
|
margin: 0;
|
|
9243
9301
|
}
|
|
9244
|
-
.messagebox > .messagebox-buttons {
|
|
9245
|
-
padding-left: 10px;
|
|
9246
|
-
padding-right: 10px;
|
|
9247
|
-
}
|
|
9248
|
-
.messagebox > .messagebox-buttons > .box-button {
|
|
9249
|
-
min-width: 70px;
|
|
9250
|
-
/* less min width for buttons on small screens */
|
|
9251
|
-
margin-right: 8px;
|
|
9252
|
-
}
|
|
9253
|
-
.messagebox > .messagebox-buttons > .box-button:last-child {
|
|
9254
|
-
margin-right: 0;
|
|
9255
|
-
}
|
|
9256
9302
|
}
|
|
9257
9303
|
/*
|
|
9258
9304
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
@@ -11908,7 +11954,7 @@ Try these to switch between fonts:
|
|
|
11908
11954
|
* All rights reserved. This program and the accompanying materials
|
|
11909
11955
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11910
11956
|
* which accompanies this distribution, and is available at
|
|
11911
|
-
*
|
|
11957
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
11912
11958
|
*
|
|
11913
11959
|
* Contributors:
|
|
11914
11960
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -12363,7 +12409,7 @@ Try these to switch between fonts:
|
|
|
12363
12409
|
left: 0;
|
|
12364
12410
|
padding: var(--table-row-padding-y) 8px var(--table-row-padding-y) 13px;
|
|
12365
12411
|
cursor: pointer;
|
|
12366
|
-
line-height:
|
|
12412
|
+
line-height: 15px;
|
|
12367
12413
|
/* Necessary to align with the text, depends on the used font size */
|
|
12368
12414
|
}
|
|
12369
12415
|
.table-cell.table-node > .table-row-control::before {
|
|
@@ -12407,6 +12453,7 @@ Try these to switch between fonts:
|
|
|
12407
12453
|
cursor: default;
|
|
12408
12454
|
}
|
|
12409
12455
|
.table.disabled > .table-data > .table-row > .table-cell > .check-box {
|
|
12456
|
+
cursor: default;
|
|
12410
12457
|
border-color: rgba(255, 255, 255, 0.12);
|
|
12411
12458
|
}
|
|
12412
12459
|
.table.disabled > .table-data > .table-row > .table-cell > .check-box.checked {
|
|
@@ -12435,6 +12482,9 @@ Try these to switch between fonts:
|
|
|
12435
12482
|
}
|
|
12436
12483
|
.font-icon.table-cell-icon {
|
|
12437
12484
|
color: #E9EBEB;
|
|
12485
|
+
font-size: 14px;
|
|
12486
|
+
line-height: 15px;
|
|
12487
|
+
vertical-align: top;
|
|
12438
12488
|
}
|
|
12439
12489
|
.disabled .font-icon.table-cell-icon {
|
|
12440
12490
|
color: #7E8588;
|
|
@@ -12453,15 +12503,13 @@ Try these to switch between fonts:
|
|
|
12453
12503
|
overflow: hidden;
|
|
12454
12504
|
padding-left: var(--table-row-margin-x);
|
|
12455
12505
|
padding-right: var(--table-row-margin-x);
|
|
12506
|
+
font-size: 12px;
|
|
12456
12507
|
}
|
|
12457
12508
|
.table-aggregate > .table-cell {
|
|
12458
12509
|
padding: var(--table-row-padding-y) 10px 0 10px;
|
|
12459
12510
|
border-bottom: 0;
|
|
12460
12511
|
height: 100%;
|
|
12461
12512
|
}
|
|
12462
|
-
.table-aggregate > .table-cell > .font-icon {
|
|
12463
|
-
margin-top: 1px;
|
|
12464
|
-
}
|
|
12465
12513
|
.table-aggregate-row {
|
|
12466
12514
|
background-color: #1F2428;
|
|
12467
12515
|
min-width: 100%;
|
|
@@ -12500,10 +12548,15 @@ Try these to switch between fonts:
|
|
|
12500
12548
|
display: inline-block;
|
|
12501
12549
|
color: #E9EBEB;
|
|
12502
12550
|
vertical-align: middle;
|
|
12551
|
+
line-height: 14px;
|
|
12503
12552
|
}
|
|
12504
12553
|
.table-aggregate-cell.sum > .table-cell-icon,
|
|
12505
12554
|
.table-aggregate-cell.avg > .table-cell-icon {
|
|
12506
|
-
font-size:
|
|
12555
|
+
font-size: 13px;
|
|
12556
|
+
}
|
|
12557
|
+
.table-aggregate-cell.min > .table-cell-icon,
|
|
12558
|
+
.table-aggregate-cell.max > .table-cell-icon {
|
|
12559
|
+
font-size: 15px;
|
|
12507
12560
|
}
|
|
12508
12561
|
.table-aggregate-cell.selection,
|
|
12509
12562
|
.table-aggregate-cell.selection > .table-cell-icon {
|
|
@@ -13952,7 +14005,7 @@ Try these to switch between fonts:
|
|
|
13952
14005
|
* All rights reserved. This program and the accompanying materials
|
|
13953
14006
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
13954
14007
|
* which accompanies this distribution, and is available at
|
|
13955
|
-
*
|
|
14008
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
13956
14009
|
*
|
|
13957
14010
|
* Contributors:
|
|
13958
14011
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -14006,6 +14059,12 @@ Try these to switch between fonts:
|
|
|
14006
14059
|
.tree-data.checkable > .animation-wrapper > .tree-node {
|
|
14007
14060
|
cursor: pointer;
|
|
14008
14061
|
}
|
|
14062
|
+
.tree-data.checkable.disabled > .tree-node,
|
|
14063
|
+
.tree-data.checkable.disabled > .animation-wrapper > .tree-node,
|
|
14064
|
+
.tree-data.checkable > .tree-node.disabled,
|
|
14065
|
+
.tree-data.checkable > .animation-wrapper > .tree-node.disabled {
|
|
14066
|
+
cursor: default;
|
|
14067
|
+
}
|
|
14009
14068
|
.navigation-breadcrumb .tree-data {
|
|
14010
14069
|
float: left;
|
|
14011
14070
|
}
|
|
@@ -14039,11 +14098,13 @@ Try these to switch between fonts:
|
|
|
14039
14098
|
/* Tree node is disabled -> use lighter disabled color */
|
|
14040
14099
|
color: #7E8588;
|
|
14041
14100
|
}
|
|
14101
|
+
.disabled > .animation-wrapper > .tree-node,
|
|
14042
14102
|
.disabled > .tree-node {
|
|
14043
14103
|
/* Whole tree is disabled -> use darker disabled color */
|
|
14044
14104
|
color: #7E8588;
|
|
14045
14105
|
}
|
|
14046
|
-
.disabled.read-only > .
|
|
14106
|
+
.disabled.read-only > .animation-wrapper > .tree-node,
|
|
14107
|
+
.disabled.read-only > .tree-node {
|
|
14047
14108
|
color: #E9EBEB;
|
|
14048
14109
|
}
|
|
14049
14110
|
.tree-node > .text {
|
|
@@ -14074,6 +14135,7 @@ Try these to switch between fonts:
|
|
|
14074
14135
|
.tree-node > .icon.font-icon {
|
|
14075
14136
|
/* Necessary to align with the text, depends on the used font size */
|
|
14076
14137
|
line-height: 15px;
|
|
14138
|
+
font-size: 14px;
|
|
14077
14139
|
}
|
|
14078
14140
|
.tree-node-checkbox {
|
|
14079
14141
|
display: block;
|
|
@@ -14100,12 +14162,14 @@ Try these to switch between fonts:
|
|
|
14100
14162
|
background-color: #0E1316;
|
|
14101
14163
|
}
|
|
14102
14164
|
.tree-node-checkbox > .check-box:not(.checked).children-checked.disabled {
|
|
14165
|
+
cursor: default;
|
|
14103
14166
|
border-color: rgba(255, 255, 255, 0.12);
|
|
14104
14167
|
background-color: #7E8588;
|
|
14105
14168
|
border-color: #7E8588;
|
|
14106
14169
|
}
|
|
14107
14170
|
.tree.disabled > .tree-data > .tree-node > .tree-node-checkbox > .check-box,
|
|
14108
14171
|
.tree.disabled > .tree-data > .animation-wrapper > .tree-node > .tree-node-checkbox > .check-box {
|
|
14172
|
+
cursor: default;
|
|
14109
14173
|
border-color: rgba(255, 255, 255, 0.12);
|
|
14110
14174
|
}
|
|
14111
14175
|
.tree.disabled > .tree-data > .tree-node > .tree-node-checkbox > .check-box.checked,
|
|
@@ -14142,7 +14206,7 @@ Try these to switch between fonts:
|
|
|
14142
14206
|
cursor: pointer;
|
|
14143
14207
|
padding: 7px 8px 7px 13px;
|
|
14144
14208
|
height: 100%;
|
|
14145
|
-
line-height:
|
|
14209
|
+
line-height: 15px;
|
|
14146
14210
|
/* Necessary to align with the text, depends on the used font size */
|
|
14147
14211
|
color: inherit;
|
|
14148
14212
|
}
|
|
@@ -14968,11 +15032,11 @@ Try these to switch between fonts:
|
|
|
14968
15032
|
color: #7E8588;
|
|
14969
15033
|
}
|
|
14970
15034
|
/*
|
|
14971
|
-
* Copyright (c) 2010-
|
|
15035
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
14972
15036
|
* All rights reserved. This program and the accompanying materials
|
|
14973
15037
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
14974
15038
|
* which accompanies this distribution, and is available at
|
|
14975
|
-
*
|
|
15039
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
14976
15040
|
*
|
|
14977
15041
|
* Contributors:
|
|
14978
15042
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -15027,6 +15091,30 @@ Try these to switch between fonts:
|
|
|
15027
15091
|
.tile.dashboard > .table-field > .table > .table-header > .table-header-item {
|
|
15028
15092
|
color: #BFC2C3;
|
|
15029
15093
|
}
|
|
15094
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted,
|
|
15095
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped,
|
|
15096
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered {
|
|
15097
|
+
padding-right: 7px;
|
|
15098
|
+
}
|
|
15099
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.halign-right,
|
|
15100
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.halign-right,
|
|
15101
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.halign-right,
|
|
15102
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.halign-center,
|
|
15103
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.halign-center,
|
|
15104
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.halign-center {
|
|
15105
|
+
padding-right: 7px;
|
|
15106
|
+
}
|
|
15107
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.last.halign-left,
|
|
15108
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.last.halign-left,
|
|
15109
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.last.halign-left,
|
|
15110
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.last.halign-center,
|
|
15111
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.last.halign-center,
|
|
15112
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.last.halign-center,
|
|
15113
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.last.halign-right,
|
|
15114
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.last.halign-right,
|
|
15115
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.last.halign-right {
|
|
15116
|
+
padding-right: 11px;
|
|
15117
|
+
}
|
|
15030
15118
|
.tile.dashboard > .table-field > .table > .table-header > .table-header-item > .table-header-item-state {
|
|
15031
15119
|
display: none;
|
|
15032
15120
|
}
|
|
@@ -15300,7 +15388,7 @@ Try these to switch between fonts:
|
|
|
15300
15388
|
* All rights reserved. This program and the accompanying materials
|
|
15301
15389
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15302
15390
|
* which accompanies this distribution, and is available at
|
|
15303
|
-
*
|
|
15391
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
15304
15392
|
*
|
|
15305
15393
|
* Contributors:
|
|
15306
15394
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -15314,6 +15402,10 @@ Try these to switch between fonts:
|
|
|
15314
15402
|
}
|
|
15315
15403
|
.login-box-content > form > .button {
|
|
15316
15404
|
margin-top: 16px;
|
|
15405
|
+
margin-bottom: 0;
|
|
15406
|
+
}
|
|
15407
|
+
.login-box-content > form > .message-box {
|
|
15408
|
+
margin: 0 20px 12px 20px;
|
|
15317
15409
|
}
|
|
15318
15410
|
.login-box-content > form > input.alternative:-webkit-autofill {
|
|
15319
15411
|
/* NOSONAR (for some reason, rule "less:overqualified-elements" is illegitimately triggered here)
|
|
@@ -15380,19 +15472,30 @@ Try these to switch between fonts:
|
|
|
15380
15472
|
-o-animation: nop 0.05s;
|
|
15381
15473
|
animation: nop 0.05s;
|
|
15382
15474
|
}
|
|
15475
|
+
@media (max-width: 490px) {
|
|
15476
|
+
.login-box-content > form > .message-box,
|
|
15477
|
+
.login-box-content > form > input,
|
|
15478
|
+
.login-box-content > form > .button {
|
|
15479
|
+
width: 100%;
|
|
15480
|
+
margin-left: 0;
|
|
15481
|
+
margin-right: 0;
|
|
15482
|
+
}
|
|
15483
|
+
}
|
|
15383
15484
|
/*
|
|
15384
15485
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15385
15486
|
* All rights reserved. This program and the accompanying materials
|
|
15386
15487
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15387
15488
|
* which accompanies this distribution, and is available at
|
|
15388
|
-
*
|
|
15489
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
15389
15490
|
*
|
|
15390
15491
|
* Contributors:
|
|
15391
15492
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
15392
15493
|
*/
|
|
15393
15494
|
.breadcrumb-bar-field > .field {
|
|
15394
|
-
padding-
|
|
15395
|
-
|
|
15495
|
+
padding-bottom: 0;
|
|
15496
|
+
}
|
|
15497
|
+
.dense .breadcrumb-bar-field > .field {
|
|
15498
|
+
padding-bottom: 4px;
|
|
15396
15499
|
}
|
|
15397
15500
|
/*
|
|
15398
15501
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
@@ -15409,11 +15512,11 @@ Try these to switch between fonts:
|
|
|
15409
15512
|
white-space: nowrap;
|
|
15410
15513
|
}
|
|
15411
15514
|
/*
|
|
15412
|
-
* Copyright (c) 2010-
|
|
15515
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15413
15516
|
* All rights reserved. This program and the accompanying materials
|
|
15414
15517
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15415
15518
|
* which accompanies this distribution, and is available at
|
|
15416
|
-
*
|
|
15519
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
15417
15520
|
*
|
|
15418
15521
|
* Contributors:
|
|
15419
15522
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -15425,6 +15528,7 @@ Try these to switch between fonts:
|
|
|
15425
15528
|
height: 100%;
|
|
15426
15529
|
color: #71b0e8;
|
|
15427
15530
|
font-size: 14px;
|
|
15531
|
+
vertical-align: top;
|
|
15428
15532
|
}
|
|
15429
15533
|
.breadcrumb-item.last {
|
|
15430
15534
|
font-weight: bold;
|
|
@@ -15432,9 +15536,6 @@ Try these to switch between fonts:
|
|
|
15432
15536
|
.breadcrumb-item:hover:not(.disabled) {
|
|
15433
15537
|
color: #9dc8ef;
|
|
15434
15538
|
}
|
|
15435
|
-
.breadcrumb-item.first {
|
|
15436
|
-
vertical-align: top;
|
|
15437
|
-
}
|
|
15438
15539
|
.breadcrumb-item:not(.first)::before {
|
|
15439
15540
|
font-family: scoutIcons, Arial, sans-serif;
|
|
15440
15541
|
font-weight: normal;
|