@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
|
@@ -918,7 +918,7 @@ iframe {
|
|
|
918
918
|
text-align: center;
|
|
919
919
|
}
|
|
920
920
|
.box-content > .header > .logo {
|
|
921
|
-
margin-top:
|
|
921
|
+
margin-top: 4px;
|
|
922
922
|
margin-bottom: 40px;
|
|
923
923
|
max-height: 30px;
|
|
924
924
|
}
|
|
@@ -938,21 +938,23 @@ iframe {
|
|
|
938
938
|
}
|
|
939
939
|
@media (max-width: 490px) {
|
|
940
940
|
.box-content {
|
|
941
|
-
padding:
|
|
941
|
+
padding: 40px;
|
|
942
942
|
margin-left: 10px;
|
|
943
943
|
margin-right: 10px;
|
|
944
944
|
}
|
|
945
945
|
.box-content > .header > .logo {
|
|
946
|
-
margin-bottom:
|
|
946
|
+
margin-bottom: 30px;
|
|
947
|
+
margin-top: 0;
|
|
947
948
|
}
|
|
948
949
|
}
|
|
949
950
|
@media (max-height: 400px) {
|
|
950
951
|
.box-content {
|
|
951
|
-
padding-top:
|
|
952
|
-
padding-bottom:
|
|
952
|
+
padding-top: 25px;
|
|
953
|
+
padding-bottom: 25px;
|
|
953
954
|
}
|
|
954
955
|
.box-content > .header > .logo {
|
|
955
956
|
margin-bottom: 20px;
|
|
957
|
+
margin-top: 0;
|
|
956
958
|
}
|
|
957
959
|
}
|
|
958
960
|
@media (max-height: 700px) {
|
|
@@ -992,6 +994,7 @@ iframe {
|
|
|
992
994
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
993
995
|
*/
|
|
994
996
|
.check-box {
|
|
997
|
+
cursor: pointer;
|
|
995
998
|
position: relative;
|
|
996
999
|
display: inline-block;
|
|
997
1000
|
text-align: center;
|
|
@@ -1040,6 +1043,7 @@ iframe {
|
|
|
1040
1043
|
background-color: #fff;
|
|
1041
1044
|
}
|
|
1042
1045
|
.check-box.disabled {
|
|
1046
|
+
cursor: default;
|
|
1043
1047
|
border-color: #DADADA;
|
|
1044
1048
|
}
|
|
1045
1049
|
.check-box.disabled.checked {
|
|
@@ -3589,7 +3593,7 @@ iframe {
|
|
|
3589
3593
|
}
|
|
3590
3594
|
.outline.tree > .tree-data > .tree-node > .font-icon,
|
|
3591
3595
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .font-icon {
|
|
3592
|
-
line-height:
|
|
3596
|
+
line-height: 15px;
|
|
3593
3597
|
font-size: 16px;
|
|
3594
3598
|
color: #999999;
|
|
3595
3599
|
}
|
|
@@ -3602,7 +3606,7 @@ iframe {
|
|
|
3602
3606
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control {
|
|
3603
3607
|
padding-top: 9px;
|
|
3604
3608
|
padding-left: 20px;
|
|
3605
|
-
line-height:
|
|
3609
|
+
line-height: 15px;
|
|
3606
3610
|
color: #999999;
|
|
3607
3611
|
}
|
|
3608
3612
|
.outline.tree > .tree-data > .tree-node > .tree-node-control:hover,
|
|
@@ -4459,11 +4463,11 @@ iframe {
|
|
|
4459
4463
|
background-color: #FAFAFA;
|
|
4460
4464
|
}
|
|
4461
4465
|
/*
|
|
4462
|
-
* Copyright (c) 2010-
|
|
4466
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4463
4467
|
* All rights reserved. This program and the accompanying materials
|
|
4464
4468
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4465
4469
|
* which accompanies this distribution, and is available at
|
|
4466
|
-
*
|
|
4470
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
4467
4471
|
*
|
|
4468
4472
|
* Contributors:
|
|
4469
4473
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -4618,16 +4622,21 @@ iframe {
|
|
|
4618
4622
|
}
|
|
4619
4623
|
@media (max-width: 473px) {
|
|
4620
4624
|
.file-chooser {
|
|
4621
|
-
/* reduce message box width on small screens */
|
|
4622
|
-
max-width: 330px;
|
|
4623
|
-
/* no need to have a margin on small screens */
|
|
4624
4625
|
margin: 0;
|
|
4626
|
+
/* no need to have a margin on small screens */
|
|
4627
|
+
}
|
|
4628
|
+
.file-chooser > .box-buttons {
|
|
4629
|
+
padding: 0 13px 26px 13px;
|
|
4630
|
+
/* use less x-padding for buttons so that more text can be shown */
|
|
4625
4631
|
}
|
|
4626
4632
|
.file-chooser > .box-buttons > .box-button {
|
|
4627
4633
|
margin-right: 4px;
|
|
4628
4634
|
min-width: 70px;
|
|
4629
4635
|
/* less min width for buttons on small screens */
|
|
4630
4636
|
}
|
|
4637
|
+
.file-chooser > .box-buttons > .box-button:last-child {
|
|
4638
|
+
margin-right: 0;
|
|
4639
|
+
}
|
|
4631
4640
|
}
|
|
4632
4641
|
/*
|
|
4633
4642
|
* Copyright (c) 2014-2018 BSI Business Systems Integration AG.
|
|
@@ -5168,11 +5177,11 @@ iframe {
|
|
|
5168
5177
|
position: absolute;
|
|
5169
5178
|
}
|
|
5170
5179
|
/*
|
|
5171
|
-
* Copyright (c)
|
|
5180
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
5172
5181
|
* All rights reserved. This program and the accompanying materials
|
|
5173
5182
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
5174
5183
|
* which accompanies this distribution, and is available at
|
|
5175
|
-
*
|
|
5184
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
5176
5185
|
*
|
|
5177
5186
|
* Contributors:
|
|
5178
5187
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -5214,6 +5223,34 @@ iframe {
|
|
|
5214
5223
|
top: 0;
|
|
5215
5224
|
height: 100%;
|
|
5216
5225
|
}
|
|
5226
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row.inactive,
|
|
5227
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row.inactive {
|
|
5228
|
+
font-style: italic;
|
|
5229
|
+
}
|
|
5230
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row.inactive > .table-cell.last > .text::after,
|
|
5231
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row.inactive > .table-cell.last > .text::after {
|
|
5232
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
5233
|
+
}
|
|
5234
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row > .table-cell.last.inactive,
|
|
5235
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row > .table-cell.last.inactive {
|
|
5236
|
+
font-style: italic;
|
|
5237
|
+
}
|
|
5238
|
+
.lookup-box > .field > .structure.tree > .table-data > .table-row > .table-cell.last.inactive > .text::after,
|
|
5239
|
+
.lookup-box > .field > .structure.table > .table-data > .table-row > .table-cell.last.inactive > .text::after {
|
|
5240
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
5241
|
+
}
|
|
5242
|
+
.lookup-box > .field > .structure.tree > .tree-data > .tree-node.inactive,
|
|
5243
|
+
.lookup-box > .field > .structure.table > .tree-data > .tree-node.inactive,
|
|
5244
|
+
.lookup-box > .field > .structure.tree > .tree-data > .animation-wrapper > .tree-node.inactive,
|
|
5245
|
+
.lookup-box > .field > .structure.table > .tree-data > .animation-wrapper > .tree-node.inactive {
|
|
5246
|
+
font-style: italic;
|
|
5247
|
+
}
|
|
5248
|
+
.lookup-box > .field > .structure.tree > .tree-data > .tree-node.inactive > .text::after,
|
|
5249
|
+
.lookup-box > .field > .structure.table > .tree-data > .tree-node.inactive > .text::after,
|
|
5250
|
+
.lookup-box > .field > .structure.tree > .tree-data > .animation-wrapper > .tree-node.inactive > .text::after,
|
|
5251
|
+
.lookup-box > .field > .structure.table > .tree-data > .animation-wrapper > .tree-node.inactive > .text::after {
|
|
5252
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
5253
|
+
}
|
|
5217
5254
|
/*
|
|
5218
5255
|
* Copyright (c) 2014-2018 BSI Business Systems Integration AG.
|
|
5219
5256
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -6600,11 +6637,11 @@ iframe {
|
|
|
6600
6637
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
6601
6638
|
*/
|
|
6602
6639
|
/*
|
|
6603
|
-
* Copyright (c)
|
|
6640
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
6604
6641
|
* All rights reserved. This program and the accompanying materials
|
|
6605
6642
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
6606
6643
|
* which accompanies this distribution, and is available at
|
|
6607
|
-
*
|
|
6644
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
6608
6645
|
*
|
|
6609
6646
|
* Contributors:
|
|
6610
6647
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -6914,15 +6951,26 @@ iframe {
|
|
|
6914
6951
|
.proposal-chooser > .table > .table-data > .table-row.first.selected::after {
|
|
6915
6952
|
top: -1px;
|
|
6916
6953
|
}
|
|
6954
|
+
.proposal-chooser > .table > .table-data > .table-row.inactive {
|
|
6955
|
+
font-style: italic;
|
|
6956
|
+
}
|
|
6957
|
+
.proposal-chooser > .table > .table-data > .table-row.inactive > .table-cell.last > .text::after {
|
|
6958
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
6959
|
+
}
|
|
6917
6960
|
.proposal-chooser > .table > .table-data > .scrollbar.y-axis > .scrollbar-thumb > .scrollbar-thumb-handle {
|
|
6918
6961
|
margin-left: 1px;
|
|
6919
6962
|
}
|
|
6920
6963
|
.proposal-chooser > .tree > .tree-data {
|
|
6921
6964
|
padding: 8px 12px;
|
|
6922
6965
|
}
|
|
6923
|
-
.proposal-chooser > .tree > .tree-data > .tree-node.inactive
|
|
6966
|
+
.proposal-chooser > .tree > .tree-data > .tree-node.inactive,
|
|
6967
|
+
.proposal-chooser > .tree > .tree-data > .animation-wrapper > .tree-node.inactive {
|
|
6924
6968
|
font-style: italic;
|
|
6925
6969
|
}
|
|
6970
|
+
.proposal-chooser > .tree > .tree-data > .tree-node.inactive > .text::after,
|
|
6971
|
+
.proposal-chooser > .tree > .tree-data > .animation-wrapper > .tree-node.inactive > .text::after {
|
|
6972
|
+
content: ' (' var(--inactive-lookup-row-suffix-text) ')';
|
|
6973
|
+
}
|
|
6926
6974
|
.status > .ellipsis {
|
|
6927
6975
|
padding-left: 3px;
|
|
6928
6976
|
}
|
|
@@ -8907,7 +8955,7 @@ iframe {
|
|
|
8907
8955
|
margin: 8px 6px;
|
|
8908
8956
|
}
|
|
8909
8957
|
/*
|
|
8910
|
-
* Copyright (c) 2010-
|
|
8958
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
8911
8959
|
* All rights reserved. This program and the accompanying materials
|
|
8912
8960
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
8913
8961
|
* which accompanies this distribution, and is available at
|
|
@@ -8932,6 +8980,18 @@ iframe {
|
|
|
8932
8980
|
.messagebox.full-height.full-width {
|
|
8933
8981
|
border-radius: 0;
|
|
8934
8982
|
}
|
|
8983
|
+
.messagebox.full-width > .messagebox-buttons {
|
|
8984
|
+
padding-left: 10px;
|
|
8985
|
+
padding-right: 10px;
|
|
8986
|
+
}
|
|
8987
|
+
.messagebox.full-width > .messagebox-buttons > .box-button {
|
|
8988
|
+
min-width: 70px;
|
|
8989
|
+
/* less min width for buttons on small screens */
|
|
8990
|
+
margin-right: 8px;
|
|
8991
|
+
}
|
|
8992
|
+
.messagebox.full-width > .messagebox-buttons > .box-button:last-child {
|
|
8993
|
+
margin-right: 0;
|
|
8994
|
+
}
|
|
8935
8995
|
.messagebox.info > .messagebox-content > .messagebox-header {
|
|
8936
8996
|
color: #1561A7;
|
|
8937
8997
|
}
|
|
@@ -9226,23 +9286,9 @@ iframe {
|
|
|
9226
9286
|
}
|
|
9227
9287
|
@media (max-width: 473px) {
|
|
9228
9288
|
.messagebox {
|
|
9229
|
-
/* reduce message box width on small screens */
|
|
9230
|
-
max-width: 330px;
|
|
9231
9289
|
/* no need to have a margin on small screens */
|
|
9232
9290
|
margin: 0;
|
|
9233
9291
|
}
|
|
9234
|
-
.messagebox > .messagebox-buttons {
|
|
9235
|
-
padding-left: 10px;
|
|
9236
|
-
padding-right: 10px;
|
|
9237
|
-
}
|
|
9238
|
-
.messagebox > .messagebox-buttons > .box-button {
|
|
9239
|
-
min-width: 70px;
|
|
9240
|
-
/* less min width for buttons on small screens */
|
|
9241
|
-
margin-right: 8px;
|
|
9242
|
-
}
|
|
9243
|
-
.messagebox > .messagebox-buttons > .box-button:last-child {
|
|
9244
|
-
margin-right: 0;
|
|
9245
|
-
}
|
|
9246
9292
|
}
|
|
9247
9293
|
/*
|
|
9248
9294
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
@@ -11898,7 +11944,7 @@ Try these to switch between fonts:
|
|
|
11898
11944
|
* All rights reserved. This program and the accompanying materials
|
|
11899
11945
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11900
11946
|
* which accompanies this distribution, and is available at
|
|
11901
|
-
*
|
|
11947
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
11902
11948
|
*
|
|
11903
11949
|
* Contributors:
|
|
11904
11950
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -12353,7 +12399,7 @@ Try these to switch between fonts:
|
|
|
12353
12399
|
left: 0;
|
|
12354
12400
|
padding: var(--table-row-padding-y) 8px var(--table-row-padding-y) 13px;
|
|
12355
12401
|
cursor: pointer;
|
|
12356
|
-
line-height:
|
|
12402
|
+
line-height: 15px;
|
|
12357
12403
|
/* Necessary to align with the text, depends on the used font size */
|
|
12358
12404
|
}
|
|
12359
12405
|
.table-cell.table-node > .table-row-control::before {
|
|
@@ -12397,6 +12443,7 @@ Try these to switch between fonts:
|
|
|
12397
12443
|
cursor: default;
|
|
12398
12444
|
}
|
|
12399
12445
|
.table.disabled > .table-data > .table-row > .table-cell > .check-box {
|
|
12446
|
+
cursor: default;
|
|
12400
12447
|
border-color: #DADADA;
|
|
12401
12448
|
}
|
|
12402
12449
|
.table.disabled > .table-data > .table-row > .table-cell > .check-box.checked {
|
|
@@ -12425,6 +12472,9 @@ Try these to switch between fonts:
|
|
|
12425
12472
|
}
|
|
12426
12473
|
.font-icon.table-cell-icon {
|
|
12427
12474
|
color: #000;
|
|
12475
|
+
font-size: 14px;
|
|
12476
|
+
line-height: 15px;
|
|
12477
|
+
vertical-align: top;
|
|
12428
12478
|
}
|
|
12429
12479
|
.disabled .font-icon.table-cell-icon {
|
|
12430
12480
|
color: #808080;
|
|
@@ -12443,15 +12493,13 @@ Try these to switch between fonts:
|
|
|
12443
12493
|
overflow: hidden;
|
|
12444
12494
|
padding-left: var(--table-row-margin-x);
|
|
12445
12495
|
padding-right: var(--table-row-margin-x);
|
|
12496
|
+
font-size: 12px;
|
|
12446
12497
|
}
|
|
12447
12498
|
.table-aggregate > .table-cell {
|
|
12448
12499
|
padding: var(--table-row-padding-y) 10px 0 10px;
|
|
12449
12500
|
border-bottom: 0;
|
|
12450
12501
|
height: 100%;
|
|
12451
12502
|
}
|
|
12452
|
-
.table-aggregate > .table-cell > .font-icon {
|
|
12453
|
-
margin-top: 1px;
|
|
12454
|
-
}
|
|
12455
12503
|
.table-aggregate-row {
|
|
12456
12504
|
background-color: #F5F5F5;
|
|
12457
12505
|
min-width: 100%;
|
|
@@ -12490,10 +12538,15 @@ Try these to switch between fonts:
|
|
|
12490
12538
|
display: inline-block;
|
|
12491
12539
|
color: #000;
|
|
12492
12540
|
vertical-align: middle;
|
|
12541
|
+
line-height: 14px;
|
|
12493
12542
|
}
|
|
12494
12543
|
.table-aggregate-cell.sum > .table-cell-icon,
|
|
12495
12544
|
.table-aggregate-cell.avg > .table-cell-icon {
|
|
12496
|
-
font-size:
|
|
12545
|
+
font-size: 13px;
|
|
12546
|
+
}
|
|
12547
|
+
.table-aggregate-cell.min > .table-cell-icon,
|
|
12548
|
+
.table-aggregate-cell.max > .table-cell-icon {
|
|
12549
|
+
font-size: 15px;
|
|
12497
12550
|
}
|
|
12498
12551
|
.table-aggregate-cell.selection,
|
|
12499
12552
|
.table-aggregate-cell.selection > .table-cell-icon {
|
|
@@ -13942,7 +13995,7 @@ Try these to switch between fonts:
|
|
|
13942
13995
|
* All rights reserved. This program and the accompanying materials
|
|
13943
13996
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
13944
13997
|
* which accompanies this distribution, and is available at
|
|
13945
|
-
*
|
|
13998
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
13946
13999
|
*
|
|
13947
14000
|
* Contributors:
|
|
13948
14001
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -13996,6 +14049,12 @@ Try these to switch between fonts:
|
|
|
13996
14049
|
.tree-data.checkable > .animation-wrapper > .tree-node {
|
|
13997
14050
|
cursor: pointer;
|
|
13998
14051
|
}
|
|
14052
|
+
.tree-data.checkable.disabled > .tree-node,
|
|
14053
|
+
.tree-data.checkable.disabled > .animation-wrapper > .tree-node,
|
|
14054
|
+
.tree-data.checkable > .tree-node.disabled,
|
|
14055
|
+
.tree-data.checkable > .animation-wrapper > .tree-node.disabled {
|
|
14056
|
+
cursor: default;
|
|
14057
|
+
}
|
|
13999
14058
|
.navigation-breadcrumb .tree-data {
|
|
14000
14059
|
float: left;
|
|
14001
14060
|
}
|
|
@@ -14029,11 +14088,13 @@ Try these to switch between fonts:
|
|
|
14029
14088
|
/* Tree node is disabled -> use lighter disabled color */
|
|
14030
14089
|
color: #808080;
|
|
14031
14090
|
}
|
|
14091
|
+
.disabled > .animation-wrapper > .tree-node,
|
|
14032
14092
|
.disabled > .tree-node {
|
|
14033
14093
|
/* Whole tree is disabled -> use darker disabled color */
|
|
14034
14094
|
color: #666666;
|
|
14035
14095
|
}
|
|
14036
|
-
.disabled.read-only > .
|
|
14096
|
+
.disabled.read-only > .animation-wrapper > .tree-node,
|
|
14097
|
+
.disabled.read-only > .tree-node {
|
|
14037
14098
|
color: #000;
|
|
14038
14099
|
}
|
|
14039
14100
|
.tree-node > .text {
|
|
@@ -14064,6 +14125,7 @@ Try these to switch between fonts:
|
|
|
14064
14125
|
.tree-node > .icon.font-icon {
|
|
14065
14126
|
/* Necessary to align with the text, depends on the used font size */
|
|
14066
14127
|
line-height: 15px;
|
|
14128
|
+
font-size: 14px;
|
|
14067
14129
|
}
|
|
14068
14130
|
.tree-node-checkbox {
|
|
14069
14131
|
display: block;
|
|
@@ -14090,12 +14152,14 @@ Try these to switch between fonts:
|
|
|
14090
14152
|
background-color: #fff;
|
|
14091
14153
|
}
|
|
14092
14154
|
.tree-node-checkbox > .check-box:not(.checked).children-checked.disabled {
|
|
14155
|
+
cursor: default;
|
|
14093
14156
|
border-color: #DADADA;
|
|
14094
14157
|
background-color: #808080;
|
|
14095
14158
|
border-color: #808080;
|
|
14096
14159
|
}
|
|
14097
14160
|
.tree.disabled > .tree-data > .tree-node > .tree-node-checkbox > .check-box,
|
|
14098
14161
|
.tree.disabled > .tree-data > .animation-wrapper > .tree-node > .tree-node-checkbox > .check-box {
|
|
14162
|
+
cursor: default;
|
|
14099
14163
|
border-color: #DADADA;
|
|
14100
14164
|
}
|
|
14101
14165
|
.tree.disabled > .tree-data > .tree-node > .tree-node-checkbox > .check-box.checked,
|
|
@@ -14132,7 +14196,7 @@ Try these to switch between fonts:
|
|
|
14132
14196
|
cursor: pointer;
|
|
14133
14197
|
padding: 7px 8px 7px 13px;
|
|
14134
14198
|
height: 100%;
|
|
14135
|
-
line-height:
|
|
14199
|
+
line-height: 15px;
|
|
14136
14200
|
/* Necessary to align with the text, depends on the used font size */
|
|
14137
14201
|
color: inherit;
|
|
14138
14202
|
}
|
|
@@ -14958,11 +15022,11 @@ Try these to switch between fonts:
|
|
|
14958
15022
|
color: #808080;
|
|
14959
15023
|
}
|
|
14960
15024
|
/*
|
|
14961
|
-
* Copyright (c) 2010-
|
|
15025
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
14962
15026
|
* All rights reserved. This program and the accompanying materials
|
|
14963
15027
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
14964
15028
|
* which accompanies this distribution, and is available at
|
|
14965
|
-
*
|
|
15029
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
14966
15030
|
*
|
|
14967
15031
|
* Contributors:
|
|
14968
15032
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -15017,6 +15081,30 @@ Try these to switch between fonts:
|
|
|
15017
15081
|
.tile.dashboard > .table-field > .table > .table-header > .table-header-item {
|
|
15018
15082
|
color: #4C4C4C;
|
|
15019
15083
|
}
|
|
15084
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted,
|
|
15085
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped,
|
|
15086
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered {
|
|
15087
|
+
padding-right: 7px;
|
|
15088
|
+
}
|
|
15089
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.halign-right,
|
|
15090
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.halign-right,
|
|
15091
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.halign-right,
|
|
15092
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.halign-center,
|
|
15093
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.halign-center,
|
|
15094
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.halign-center {
|
|
15095
|
+
padding-right: 7px;
|
|
15096
|
+
}
|
|
15097
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.last.halign-left,
|
|
15098
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.last.halign-left,
|
|
15099
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.last.halign-left,
|
|
15100
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.last.halign-center,
|
|
15101
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.last.halign-center,
|
|
15102
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.last.halign-center,
|
|
15103
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.sorted.last.halign-right,
|
|
15104
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.grouped.last.halign-right,
|
|
15105
|
+
.tile.dashboard > .table-field > .table > .table-header > .table-header-item.filtered.last.halign-right {
|
|
15106
|
+
padding-right: 11px;
|
|
15107
|
+
}
|
|
15020
15108
|
.tile.dashboard > .table-field > .table > .table-header > .table-header-item > .table-header-item-state {
|
|
15021
15109
|
display: none;
|
|
15022
15110
|
}
|
|
@@ -15290,7 +15378,7 @@ Try these to switch between fonts:
|
|
|
15290
15378
|
* All rights reserved. This program and the accompanying materials
|
|
15291
15379
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15292
15380
|
* which accompanies this distribution, and is available at
|
|
15293
|
-
*
|
|
15381
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
15294
15382
|
*
|
|
15295
15383
|
* Contributors:
|
|
15296
15384
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -15304,6 +15392,10 @@ Try these to switch between fonts:
|
|
|
15304
15392
|
}
|
|
15305
15393
|
.login-box-content > form > .button {
|
|
15306
15394
|
margin-top: 16px;
|
|
15395
|
+
margin-bottom: 0;
|
|
15396
|
+
}
|
|
15397
|
+
.login-box-content > form > .message-box {
|
|
15398
|
+
margin: 0 20px 12px 20px;
|
|
15307
15399
|
}
|
|
15308
15400
|
.login-box-content > form > input.alternative:-webkit-autofill {
|
|
15309
15401
|
/* NOSONAR (for some reason, rule "less:overqualified-elements" is illegitimately triggered here)
|
|
@@ -15370,19 +15462,30 @@ Try these to switch between fonts:
|
|
|
15370
15462
|
-o-animation: nop 0.05s;
|
|
15371
15463
|
animation: nop 0.05s;
|
|
15372
15464
|
}
|
|
15465
|
+
@media (max-width: 490px) {
|
|
15466
|
+
.login-box-content > form > .message-box,
|
|
15467
|
+
.login-box-content > form > input,
|
|
15468
|
+
.login-box-content > form > .button {
|
|
15469
|
+
width: 100%;
|
|
15470
|
+
margin-left: 0;
|
|
15471
|
+
margin-right: 0;
|
|
15472
|
+
}
|
|
15473
|
+
}
|
|
15373
15474
|
/*
|
|
15374
15475
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15375
15476
|
* All rights reserved. This program and the accompanying materials
|
|
15376
15477
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15377
15478
|
* which accompanies this distribution, and is available at
|
|
15378
|
-
*
|
|
15479
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
15379
15480
|
*
|
|
15380
15481
|
* Contributors:
|
|
15381
15482
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
15382
15483
|
*/
|
|
15383
15484
|
.breadcrumb-bar-field > .field {
|
|
15384
|
-
padding-
|
|
15385
|
-
|
|
15485
|
+
padding-bottom: 0;
|
|
15486
|
+
}
|
|
15487
|
+
.dense .breadcrumb-bar-field > .field {
|
|
15488
|
+
padding-bottom: 4px;
|
|
15386
15489
|
}
|
|
15387
15490
|
/*
|
|
15388
15491
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
@@ -15399,11 +15502,11 @@ Try these to switch between fonts:
|
|
|
15399
15502
|
white-space: nowrap;
|
|
15400
15503
|
}
|
|
15401
15504
|
/*
|
|
15402
|
-
* Copyright (c) 2010-
|
|
15505
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15403
15506
|
* All rights reserved. This program and the accompanying materials
|
|
15404
15507
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15405
15508
|
* which accompanies this distribution, and is available at
|
|
15406
|
-
*
|
|
15509
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
15407
15510
|
*
|
|
15408
15511
|
* Contributors:
|
|
15409
15512
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -15415,6 +15518,7 @@ Try these to switch between fonts:
|
|
|
15415
15518
|
height: 100%;
|
|
15416
15519
|
color: #1561A7;
|
|
15417
15520
|
font-size: 14px;
|
|
15521
|
+
vertical-align: top;
|
|
15418
15522
|
}
|
|
15419
15523
|
.breadcrumb-item.last {
|
|
15420
15524
|
font-weight: bold;
|
|
@@ -15422,9 +15526,6 @@ Try these to switch between fonts:
|
|
|
15422
15526
|
.breadcrumb-item:hover:not(.disabled) {
|
|
15423
15527
|
color: #1b7bd4;
|
|
15424
15528
|
}
|
|
15425
|
-
.breadcrumb-item.first {
|
|
15426
|
-
vertical-align: top;
|
|
15427
|
-
}
|
|
15428
15529
|
.breadcrumb-item:not(.first)::before {
|
|
15429
15530
|
font-family: scoutIcons, Arial, sans-serif;
|
|
15430
15531
|
font-weight: normal;
|