@eclipse-scout/core 22.0.0-beta.5 → 22.0.2
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-c98fb5230e71dcec75ce.min.js +2 -0
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js.map +1 -0
- package/dist/eclipse-scout-core-theme-6b2fef56e9e49231a49c.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark-d2bb274dd42f132bfca0.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark.css +511 -399
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +247 -135
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +865 -646
- package/dist/eclipse-scout-core.js.map +1 -1
- package/dist/file-list +7 -0
- package/dist/locales.json +47126 -0
- package/dist/texts.json +1153 -0
- package/package.json +2 -2
- package/src/App.js +17 -10
- package/src/action/Button.less +1 -0
- package/src/box/Box.less +2 -2
- package/src/breadcrumbbar/BreadcrumbBarLayout.js +2 -2
- package/src/calendar/Calendar.js +40 -58
- package/src/calendar/Calendar.less +10 -10
- package/src/calendar/CalendarLayout.js +3 -1
- package/src/datepicker/DatePicker.less +1 -0
- package/src/desktop/desktoptab/DesktopTab.less +19 -2
- package/src/desktop/desktoptab/DesktopTabArea.less +7 -3
- package/src/desktop/desktoptab/DesktopTabAreaLayout.js +1 -1
- package/src/desktop/navigation/DesktopNavigation.less +4 -0
- package/src/desktop/notification/DesktopNotification.js +11 -4
- package/src/desktop/notification/DesktopNotification.less +5 -3
- package/src/desktop/outline/Outline.js +0 -30
- package/src/desktop/outline/Outline.less +4 -4
- package/src/desktop/viewbutton/ViewButton.less +18 -9
- package/src/desktop/viewbutton/ViewButtonBox.js +2 -2
- package/src/desktop/viewbutton/ViewMenuTab.less +3 -2
- package/src/filechooser/FileChooser.less +1 -1
- package/src/form/Form.less +1 -0
- package/src/form/fields/LookupBox.js +2 -1
- package/src/form/fields/breadcrumbbarfield/BreadcrumbBarField.less +14 -0
- package/src/form/fields/groupbox/GroupBox.js +13 -9
- package/src/form/fields/groupbox/GroupBox.less +4 -1
- package/src/form/fields/htmlfield/HtmlField.less +0 -1
- package/src/form/fields/listbox/ListBox.js +8 -3
- package/src/form/fields/tabbox/TabAreaLayout.js +63 -66
- package/src/form/fields/tabbox/TabBox.js +4 -7
- package/src/form/fields/tabbox/TabBox.less +2 -1
- package/src/form/fields/tabbox/TabBoxHeaderLayout.js +5 -5
- package/src/glasspane/GlassPane.js +3 -3
- package/src/group/Group.less +1 -1
- package/src/index.js +2 -1
- package/src/index.less +1 -0
- package/src/jquery/jquery-scout.js +5 -4
- package/src/login/LoginBox.less +9 -7
- package/src/menu/ContextMenuPopup.less +9 -2
- package/src/menu/Menu.less +1 -0
- package/src/messagebox/MessageBox.less +3 -3
- package/src/modeselector/Mode.less +15 -37
- package/src/modeselector/ModeSelector.js +1 -1
- package/src/modeselector/ModeSelector.less +2 -1
- package/src/planner/PlannerHeader.less +2 -1
- package/src/popup/Popup.js +24 -8
- package/src/popup/PopupLayout.js +2 -8
- package/src/scrollbar/Scrollbar.less +8 -1
- package/src/scrollbar/scrollbars.js +26 -4
- package/src/session/Session.js +4 -1
- package/src/style/colors-dark.less +25 -11
- package/src/style/colors.less +17 -3
- package/src/style/fonts.less +5 -0
- package/src/style/mixins.less +21 -14
- package/src/style/sizes-dark.less +4 -1
- package/src/style/sizes.less +7 -7
- package/src/table/Table.js +45 -33
- package/src/table/Table.less +49 -16
- package/src/table/TableHeader.js +10 -8
- package/src/table/TableHeader.less +1 -0
- package/src/table/TableHeaderMenu.js +3 -1
- package/src/table/TableHeaderMenu.less +7 -2
- package/src/table/columns/BooleanColumn.js +2 -2
- package/src/table/columns/Column.js +3 -3
- package/src/table/columns/ColumnOptimalWidthMeasurer.js +1 -1
- package/src/table/editor/CellEditorPopup.js +8 -1
- package/src/tagbar/TagBarOverflowPopupLayout.js +1 -1
- package/src/tile/TileGrid.js +1 -1
- package/src/tile/TileGridLayout.js +2 -2
- package/src/tile/accordion/TileAccordion.js +16 -1
- package/src/tile/fields/FormFieldTile.less +18 -11
- package/src/tile/fields/button/ButtonTile.js +1 -1
- package/src/tile/fields/htmlfield/TileHtmlField.js +28 -0
- package/src/tooltip/Tooltip.less +7 -5
- package/src/tree/CompactTree.less +1 -1
- package/src/tree/LazyNodeFilter.js +26 -15
- package/src/tree/Tree.js +114 -143
- package/src/tree/Tree.less +3 -5
- package/src/tree/TreeLayout.js +1 -1
- package/src/tree/TreeNode.js +2 -2
- package/src/util/Device.js +6 -2
- package/src/util/arrays.js +24 -2
- package/src/util/dragAndDrop.js +5 -4
- package/src/util/events.js +1 -1
- package/src/util/objects.js +4 -1
- package/src/widget/FilterSupport.js +7 -5
- package/src/widget/FilterSupport.less +38 -9
- package/src/widget/Widget.js +24 -7
|
@@ -223,7 +223,7 @@ input[type="password"].alternative {
|
|
|
223
223
|
padding-bottom: 1px;
|
|
224
224
|
/* Compensate padding-bottom to align input text with label on the left */
|
|
225
225
|
/* It won't be perfect (especially when zoomed) but should be good enough */
|
|
226
|
-
padding-top:
|
|
226
|
+
padding-top: 2px;
|
|
227
227
|
}
|
|
228
228
|
input.alternative,
|
|
229
229
|
.input-field.alternative {
|
|
@@ -711,6 +711,7 @@ iframe {
|
|
|
711
711
|
overflow: hidden;
|
|
712
712
|
text-overflow: ellipsis;
|
|
713
713
|
white-space: nowrap;
|
|
714
|
+
margin-top: 1px;
|
|
714
715
|
}
|
|
715
716
|
.button > .icon {
|
|
716
717
|
/* Padding only relevant for icons larger than the container */
|
|
@@ -904,7 +905,7 @@ iframe {
|
|
|
904
905
|
vertical-align: middle;
|
|
905
906
|
}
|
|
906
907
|
.box-content {
|
|
907
|
-
border:
|
|
908
|
+
border: 0 solid #DADADA;
|
|
908
909
|
border-radius: 12px;
|
|
909
910
|
background-color: #fff;
|
|
910
911
|
max-width: 450px;
|
|
@@ -1070,13 +1071,6 @@ iframe {
|
|
|
1070
1071
|
.calendar-scrollable-components {
|
|
1071
1072
|
height: 100%;
|
|
1072
1073
|
}
|
|
1073
|
-
.calendar-week-scrollable {
|
|
1074
|
-
overflow: visible;
|
|
1075
|
-
}
|
|
1076
|
-
.calendar-scrollable-components-week {
|
|
1077
|
-
top: calc(23px + 5px);
|
|
1078
|
-
height: calc(15% - ( 23px + 5px));
|
|
1079
|
-
}
|
|
1080
1074
|
.calendar-header {
|
|
1081
1075
|
position: relative;
|
|
1082
1076
|
display: block;
|
|
@@ -1196,7 +1190,8 @@ iframe {
|
|
|
1196
1190
|
cursor: pointer;
|
|
1197
1191
|
}
|
|
1198
1192
|
.calendar-mode {
|
|
1199
|
-
|
|
1193
|
+
padding: 0 8px;
|
|
1194
|
+
min-width: 65px;
|
|
1200
1195
|
border-top: 1px solid rgba(0, 0, 0, 0.23);
|
|
1201
1196
|
border-bottom: 1px solid rgba(0, 0, 0, 0.23);
|
|
1202
1197
|
border-left: 1px solid rgba(0, 0, 0, 0.23);
|
|
@@ -1397,9 +1392,15 @@ iframe {
|
|
|
1397
1392
|
height: calc(100% - 25px);
|
|
1398
1393
|
padding-right: 20px;
|
|
1399
1394
|
}
|
|
1395
|
+
.calendar-grid + .scroll-shadow {
|
|
1396
|
+
--scroll-shadow-inset-right: 20px;
|
|
1397
|
+
}
|
|
1400
1398
|
.calendar-grid.mobile {
|
|
1401
1399
|
padding-right: 6px;
|
|
1402
1400
|
}
|
|
1401
|
+
.calendar-grid.mobile + .scroll-shadow {
|
|
1402
|
+
--scroll-shadow-inset-right: 6px;
|
|
1403
|
+
}
|
|
1403
1404
|
.calendar-grid.calendar-grid-short {
|
|
1404
1405
|
height: calc(100% - 105px);
|
|
1405
1406
|
}
|
|
@@ -1872,6 +1873,7 @@ iframe {
|
|
|
1872
1873
|
cursor: default;
|
|
1873
1874
|
font-size: 18px;
|
|
1874
1875
|
line-height: 30px;
|
|
1876
|
+
margin-top: 1px;
|
|
1875
1877
|
overflow: hidden;
|
|
1876
1878
|
text-overflow: ellipsis;
|
|
1877
1879
|
white-space: nowrap;
|
|
@@ -2820,7 +2822,8 @@ iframe {
|
|
|
2820
2822
|
margin: 8px 3px 0 0;
|
|
2821
2823
|
padding: 10px 10px 0 20px;
|
|
2822
2824
|
border-radius: 12px 12px 0 0;
|
|
2823
|
-
border
|
|
2825
|
+
border: 0 solid transparent;
|
|
2826
|
+
border-bottom-width: 0;
|
|
2824
2827
|
background-color: rgba(0, 0, 0, 0.1);
|
|
2825
2828
|
}
|
|
2826
2829
|
.closable.desktop-tab.simple-tab > .title-line {
|
|
@@ -2887,11 +2890,21 @@ iframe {
|
|
|
2887
2890
|
.desktop-tab.simple-tab:hover,
|
|
2888
2891
|
.desktop-tab.simple-tab:active {
|
|
2889
2892
|
background-color: rgba(0, 0, 0, 0.2);
|
|
2893
|
+
border-color: transparent;
|
|
2890
2894
|
}
|
|
2891
2895
|
.desktop-tab.simple-tab:hover > .title-line > .title,
|
|
2892
2896
|
.desktop-tab.simple-tab:active > .title-line > .title {
|
|
2893
2897
|
color: inherit;
|
|
2894
2898
|
}
|
|
2899
|
+
.desktop-tab.simple-tab.glasspane-parent {
|
|
2900
|
+
pointer-events: unset;
|
|
2901
|
+
}
|
|
2902
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.disabled):not(.selected):hover {
|
|
2903
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
2904
|
+
}
|
|
2905
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.selected):hover > .closer {
|
|
2906
|
+
display: none;
|
|
2907
|
+
}
|
|
2895
2908
|
.desktop-tab.simple-tab.disabled {
|
|
2896
2909
|
background-color: transparent;
|
|
2897
2910
|
}
|
|
@@ -2900,6 +2913,7 @@ iframe {
|
|
|
2900
2913
|
}
|
|
2901
2914
|
.desktop-tab.simple-tab.selected {
|
|
2902
2915
|
background-color: #fff;
|
|
2916
|
+
border-color: transparent;
|
|
2903
2917
|
}
|
|
2904
2918
|
.desktop-tab.simple-tab.selected > .title-line > .icon-container {
|
|
2905
2919
|
color: #808080;
|
|
@@ -2933,19 +2947,22 @@ iframe {
|
|
|
2933
2947
|
position: absolute;
|
|
2934
2948
|
pointer-events: none;
|
|
2935
2949
|
background-color: transparent;
|
|
2936
|
-
bottom:
|
|
2937
|
-
height:
|
|
2938
|
-
width:
|
|
2939
|
-
box-
|
|
2940
|
-
|
|
2950
|
+
bottom: -5px;
|
|
2951
|
+
height: 12px;
|
|
2952
|
+
width: 12px;
|
|
2953
|
+
box-sizing: content-box;
|
|
2954
|
+
border: 5px solid var(--color);
|
|
2955
|
+
border-top: none;
|
|
2941
2956
|
}
|
|
2942
2957
|
.desktop-tab.simple-tab.selected > .edge.left {
|
|
2943
|
-
left: -
|
|
2944
|
-
border-bottom-right-radius:
|
|
2958
|
+
left: -12px;
|
|
2959
|
+
border-bottom-right-radius: 17px;
|
|
2960
|
+
border-left: none;
|
|
2945
2961
|
}
|
|
2946
2962
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2947
|
-
right: -
|
|
2948
|
-
border-bottom-left-radius:
|
|
2963
|
+
right: -12px;
|
|
2964
|
+
border-bottom-left-radius: 17px;
|
|
2965
|
+
border-right: none;
|
|
2949
2966
|
}
|
|
2950
2967
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2951
2968
|
z-index: 1;
|
|
@@ -3102,16 +3119,18 @@ iframe {
|
|
|
3102
3119
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
3103
3120
|
*/
|
|
3104
3121
|
.desktop-tab-area > .simple-overflow-tab-item {
|
|
3105
|
-
border-radius:
|
|
3106
|
-
margin:
|
|
3122
|
+
border-radius: 8px;
|
|
3123
|
+
margin: 14px 3px 6px;
|
|
3107
3124
|
background-color: rgba(0, 0, 0, 0.1);
|
|
3108
|
-
border: 0;
|
|
3125
|
+
border: 0 solid transparent;
|
|
3109
3126
|
}
|
|
3110
3127
|
.desktop-tab-area > .simple-overflow-tab-item:hover {
|
|
3111
3128
|
background-color: rgba(0, 0, 0, 0.2);
|
|
3129
|
+
border-color: transparent;
|
|
3112
3130
|
}
|
|
3113
3131
|
.desktop-tab-area > .simple-overflow-tab-item.selected {
|
|
3114
3132
|
background-color: rgba(0, 0, 0, 0.2);
|
|
3133
|
+
border-color: transparent;
|
|
3115
3134
|
}
|
|
3116
3135
|
/*
|
|
3117
3136
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -3232,6 +3251,9 @@ iframe {
|
|
|
3232
3251
|
.desktop-navigation > .desktop-tool-box > .menu-item > .font-icon {
|
|
3233
3252
|
font-size: 20px;
|
|
3234
3253
|
}
|
|
3254
|
+
.desktop-navigation > .desktop-tool-box > .menu-item.ellipsis > .font-icon {
|
|
3255
|
+
font-size: 22px;
|
|
3256
|
+
}
|
|
3235
3257
|
/*
|
|
3236
3258
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
3237
3259
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -3283,7 +3305,7 @@ iframe {
|
|
|
3283
3305
|
margin-left: -4px;
|
|
3284
3306
|
}
|
|
3285
3307
|
/*
|
|
3286
|
-
* Copyright (c) 2010-
|
|
3308
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
3287
3309
|
* All rights reserved. This program and the accompanying materials
|
|
3288
3310
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
3289
3311
|
* which accompanies this distribution, and is available at
|
|
@@ -3296,7 +3318,7 @@ iframe {
|
|
|
3296
3318
|
position: fixed;
|
|
3297
3319
|
right: 10px;
|
|
3298
3320
|
top: 0;
|
|
3299
|
-
height: 100
|
|
3321
|
+
height: calc(100% - 72px);
|
|
3300
3322
|
width: 300px;
|
|
3301
3323
|
margin-top: 72px;
|
|
3302
3324
|
pointer-events: none;
|
|
@@ -3583,10 +3605,6 @@ iframe {
|
|
|
3583
3605
|
line-height: 14px;
|
|
3584
3606
|
color: #999999;
|
|
3585
3607
|
}
|
|
3586
|
-
.outline.tree > .tree-data > .tree-node > .tree-node-control::before,
|
|
3587
|
-
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control::before {
|
|
3588
|
-
font-size: 18px;
|
|
3589
|
-
}
|
|
3590
3608
|
.outline.tree > .tree-data > .tree-node > .tree-node-control:hover,
|
|
3591
3609
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control:hover {
|
|
3592
3610
|
color: #FE9915;
|
|
@@ -3604,6 +3622,10 @@ iframe {
|
|
|
3604
3622
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .tree-node-control {
|
|
3605
3623
|
color: rgba(255, 255, 255, 0.7);
|
|
3606
3624
|
}
|
|
3625
|
+
.outline.tree > .tree-data > .tree-node.selected > .tree-node-control:hover,
|
|
3626
|
+
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .tree-node-control:hover {
|
|
3627
|
+
color: #FE9915;
|
|
3628
|
+
}
|
|
3607
3629
|
.outline.tree > .tree-data > .tree-node.selected > .font-icon,
|
|
3608
3630
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .font-icon {
|
|
3609
3631
|
color: rgba(255, 255, 255, 0.7);
|
|
@@ -4070,7 +4092,7 @@ iframe {
|
|
|
4070
4092
|
bottom: 6px;
|
|
4071
4093
|
}
|
|
4072
4094
|
/*
|
|
4073
|
-
* Copyright (c)
|
|
4095
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4074
4096
|
* All rights reserved. This program and the accompanying materials
|
|
4075
4097
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4076
4098
|
* which accompanies this distribution, and is available at
|
|
@@ -4094,6 +4116,9 @@ iframe {
|
|
|
4094
4116
|
.view-tab.in-background {
|
|
4095
4117
|
border-radius: 12px;
|
|
4096
4118
|
}
|
|
4119
|
+
.view-tab > .edge {
|
|
4120
|
+
position: absolute;
|
|
4121
|
+
}
|
|
4097
4122
|
.view-tab.selected:not(.in-background) {
|
|
4098
4123
|
margin: 8px 0 0;
|
|
4099
4124
|
border-radius: 12px 12px 0 0;
|
|
@@ -4103,19 +4128,22 @@ iframe {
|
|
|
4103
4128
|
position: absolute;
|
|
4104
4129
|
pointer-events: none;
|
|
4105
4130
|
background-color: transparent;
|
|
4106
|
-
bottom:
|
|
4107
|
-
height:
|
|
4108
|
-
width:
|
|
4109
|
-
box-
|
|
4110
|
-
|
|
4131
|
+
bottom: -5px;
|
|
4132
|
+
height: 12px;
|
|
4133
|
+
width: 12px;
|
|
4134
|
+
box-sizing: content-box;
|
|
4135
|
+
border: 5px solid var(--color);
|
|
4136
|
+
border-top: none;
|
|
4111
4137
|
}
|
|
4112
4138
|
.view-tab.selected:not(.in-background) > .edge.left {
|
|
4113
|
-
left: -
|
|
4114
|
-
border-bottom-right-radius:
|
|
4139
|
+
left: -12px;
|
|
4140
|
+
border-bottom-right-radius: 17px;
|
|
4141
|
+
border-left: none;
|
|
4115
4142
|
}
|
|
4116
4143
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4117
|
-
right: -
|
|
4118
|
-
border-bottom-left-radius:
|
|
4144
|
+
right: -12px;
|
|
4145
|
+
border-bottom-left-radius: 17px;
|
|
4146
|
+
border-right: none;
|
|
4119
4147
|
}
|
|
4120
4148
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4121
4149
|
z-index: 1;
|
|
@@ -4131,14 +4159,12 @@ iframe {
|
|
|
4131
4159
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.left,
|
|
4132
4160
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.left {
|
|
4133
4161
|
visibility: hidden;
|
|
4134
|
-
|
|
4135
|
-
animation: show-view-tab-left-edge 200ms ease-out 0s forwards;
|
|
4162
|
+
animation: show-view-tab-left-edge 40ms ease-out 160ms forwards;
|
|
4136
4163
|
}
|
|
4137
4164
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.right,
|
|
4138
4165
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.right {
|
|
4139
4166
|
visibility: hidden;
|
|
4140
|
-
|
|
4141
|
-
animation: show-view-tab-right-edge 200ms ease-out 0s forwards;
|
|
4167
|
+
animation: show-view-tab-right-edge 40ms ease-out 160ms forwards;
|
|
4142
4168
|
}
|
|
4143
4169
|
.view-button-tab {
|
|
4144
4170
|
display: flex;
|
|
@@ -4179,15 +4205,21 @@ iframe {
|
|
|
4179
4205
|
font-size: 20px;
|
|
4180
4206
|
}
|
|
4181
4207
|
@keyframes show-view-tab-left-edge {
|
|
4182
|
-
|
|
4208
|
+
0% {
|
|
4183
4209
|
visibility: visible;
|
|
4184
|
-
|
|
4210
|
+
left: -5px;
|
|
4211
|
+
}
|
|
4212
|
+
100% {
|
|
4213
|
+
left: -12px;
|
|
4185
4214
|
}
|
|
4186
4215
|
}
|
|
4187
4216
|
@keyframes show-view-tab-right-edge {
|
|
4188
|
-
|
|
4217
|
+
0% {
|
|
4189
4218
|
visibility: visible;
|
|
4190
|
-
|
|
4219
|
+
right: -5px;
|
|
4220
|
+
}
|
|
4221
|
+
100% {
|
|
4222
|
+
right: -12px;
|
|
4191
4223
|
}
|
|
4192
4224
|
}
|
|
4193
4225
|
/*
|
|
@@ -4216,7 +4248,7 @@ iframe {
|
|
|
4216
4248
|
color: #fff;
|
|
4217
4249
|
}
|
|
4218
4250
|
/*
|
|
4219
|
-
* Copyright (c)
|
|
4251
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4220
4252
|
* All rights reserved. This program and the accompanying materials
|
|
4221
4253
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4222
4254
|
* which accompanies this distribution, and is available at
|
|
@@ -4236,12 +4268,12 @@ iframe {
|
|
|
4236
4268
|
align-items: center;
|
|
4237
4269
|
justify-content: center;
|
|
4238
4270
|
background-color: transparent;
|
|
4271
|
+
cursor: pointer;
|
|
4239
4272
|
}
|
|
4240
4273
|
.view-menu-tab > .view-button:hover,
|
|
4241
4274
|
.view-menu-tab > .view-menu:hover {
|
|
4242
4275
|
background-color: rgba(0, 0, 0, 0.1);
|
|
4243
4276
|
color: inherit;
|
|
4244
|
-
cursor: pointer;
|
|
4245
4277
|
}
|
|
4246
4278
|
.view-menu-tab > .view-button.disabled,
|
|
4247
4279
|
.view-menu-tab > .view-menu.disabled {
|
|
@@ -4350,6 +4382,7 @@ iframe {
|
|
|
4350
4382
|
.view-menu-tab.selected:not(.in-background) > .view-button {
|
|
4351
4383
|
padding-left: 6px;
|
|
4352
4384
|
width: 56px;
|
|
4385
|
+
cursor: default;
|
|
4353
4386
|
}
|
|
4354
4387
|
.selected-button-invisible.view-menu-tab.selected:not(.in-background) > .view-menu {
|
|
4355
4388
|
width: 50px;
|
|
@@ -4779,6 +4812,7 @@ iframe {
|
|
|
4779
4812
|
white-space: nowrap;
|
|
4780
4813
|
font-size: 16px;
|
|
4781
4814
|
color: #000;
|
|
4815
|
+
margin-top: 1px;
|
|
4782
4816
|
}
|
|
4783
4817
|
.form > .header > .sub-title {
|
|
4784
4818
|
overflow: hidden;
|
|
@@ -5914,7 +5948,7 @@ iframe {
|
|
|
5914
5948
|
height: 100%;
|
|
5915
5949
|
}
|
|
5916
5950
|
/*
|
|
5917
|
-
* Copyright (c) 2010-
|
|
5951
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
5918
5952
|
* All rights reserved. This program and the accompanying materials
|
|
5919
5953
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
5920
5954
|
* which accompanies this distribution, and is available at
|
|
@@ -6048,6 +6082,8 @@ iframe {
|
|
|
6048
6082
|
display: inline-block;
|
|
6049
6083
|
vertical-align: middle;
|
|
6050
6084
|
padding: 12px 0 12px 0;
|
|
6085
|
+
max-width: 100%;
|
|
6086
|
+
margin-top: 1px;
|
|
6051
6087
|
}
|
|
6052
6088
|
.group-box.has-sub-label > .group-box-header > .title {
|
|
6053
6089
|
padding-bottom: 7px;
|
|
@@ -6063,6 +6099,8 @@ iframe {
|
|
|
6063
6099
|
font-size: 11px;
|
|
6064
6100
|
letter-spacing: 0.2px;
|
|
6065
6101
|
color: #666666;
|
|
6102
|
+
overflow: hidden;
|
|
6103
|
+
text-overflow: ellipsis;
|
|
6066
6104
|
}
|
|
6067
6105
|
.group-box-header > .status {
|
|
6068
6106
|
position: absolute;
|
|
@@ -6226,7 +6264,6 @@ iframe {
|
|
|
6226
6264
|
}
|
|
6227
6265
|
.html-field > .field {
|
|
6228
6266
|
margin-left: 10px;
|
|
6229
|
-
overflow: hidden;
|
|
6230
6267
|
}
|
|
6231
6268
|
.html-field > .field:focus {
|
|
6232
6269
|
outline: none;
|
|
@@ -7204,7 +7241,7 @@ iframe {
|
|
|
7204
7241
|
.tab-box-header > .menubar {
|
|
7205
7242
|
position: absolute;
|
|
7206
7243
|
background-color: inherit;
|
|
7207
|
-
border-bottom
|
|
7244
|
+
border-bottom: none;
|
|
7208
7245
|
}
|
|
7209
7246
|
.tab-box-header > .status {
|
|
7210
7247
|
position: absolute;
|
|
@@ -7367,6 +7404,7 @@ iframe {
|
|
|
7367
7404
|
display: inline-block;
|
|
7368
7405
|
vertical-align: middle;
|
|
7369
7406
|
padding: 12px 0 12px;
|
|
7407
|
+
margin-top: 1px;
|
|
7370
7408
|
}
|
|
7371
7409
|
.tab-area.has-sub-label > .tab-item > .title {
|
|
7372
7410
|
padding-bottom: 7px;
|
|
@@ -8139,6 +8177,7 @@ iframe {
|
|
|
8139
8177
|
overflow: hidden;
|
|
8140
8178
|
text-overflow: ellipsis;
|
|
8141
8179
|
white-space: nowrap;
|
|
8180
|
+
margin-top: 1px;
|
|
8142
8181
|
}
|
|
8143
8182
|
.menu-item > .font-icon {
|
|
8144
8183
|
font-size: 16px;
|
|
@@ -8225,6 +8264,7 @@ iframe {
|
|
|
8225
8264
|
overflow: hidden;
|
|
8226
8265
|
text-overflow: ellipsis;
|
|
8227
8266
|
white-space: nowrap;
|
|
8267
|
+
margin-top: 1px;
|
|
8228
8268
|
}
|
|
8229
8269
|
.menu-button > .icon {
|
|
8230
8270
|
/* Padding only relevant for icons larger than the container */
|
|
@@ -8462,12 +8502,16 @@ iframe {
|
|
|
8462
8502
|
.context-menu > .menu-item.selected {
|
|
8463
8503
|
background-color: #E9F0F6;
|
|
8464
8504
|
}
|
|
8505
|
+
.context-menu > .menu-item.selected.has-popup {
|
|
8506
|
+
color: #000;
|
|
8507
|
+
}
|
|
8508
|
+
.context-menu > .menu-item.selected.has-popup.disabled {
|
|
8509
|
+
color: #808080;
|
|
8510
|
+
background-color: #E9F0F6;
|
|
8511
|
+
}
|
|
8465
8512
|
.context-menu > .menu-item.selected > .submenu-icon {
|
|
8466
8513
|
transform: none;
|
|
8467
8514
|
}
|
|
8468
|
-
.context-menu > .menu-item.expanded {
|
|
8469
|
-
color: #1561A7;
|
|
8470
|
-
}
|
|
8471
8515
|
.context-menu > .menu-item.expanded > .submenu-icon {
|
|
8472
8516
|
-webkit-transform: rotateX(180deg) translateY(-1px);
|
|
8473
8517
|
-ms-transform: rotateX(180deg) translateY(-1px);
|
|
@@ -9201,7 +9245,7 @@ iframe {
|
|
|
9201
9245
|
}
|
|
9202
9246
|
}
|
|
9203
9247
|
/*
|
|
9204
|
-
* Copyright (c) 2010-
|
|
9248
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9205
9249
|
* All rights reserved. This program and the accompanying materials
|
|
9206
9250
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9207
9251
|
* which accompanies this distribution, and is available at
|
|
@@ -9211,10 +9255,13 @@ iframe {
|
|
|
9211
9255
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
9212
9256
|
*/
|
|
9213
9257
|
.mode {
|
|
9214
|
-
|
|
9258
|
+
--padding-x: 12px;
|
|
9259
|
+
--padding-y: 6px;
|
|
9260
|
+
--border-width: 1px;
|
|
9261
|
+
border: var(--border-width) solid rgba(0, 0, 0, 0.23);
|
|
9215
9262
|
border-radius: 0;
|
|
9216
9263
|
flex: 1 1 0;
|
|
9217
|
-
padding:
|
|
9264
|
+
padding: var(--padding-y) var(--padding-x);
|
|
9218
9265
|
overflow: hidden;
|
|
9219
9266
|
text-overflow: ellipsis;
|
|
9220
9267
|
}
|
|
@@ -9229,12 +9276,12 @@ iframe {
|
|
|
9229
9276
|
}
|
|
9230
9277
|
.mode:not(.last):not(.selected) {
|
|
9231
9278
|
border-right: none;
|
|
9232
|
-
padding-right:
|
|
9279
|
+
padding-right: calc(var(--padding-x) + var(--border-width));
|
|
9233
9280
|
/* account for the missing border, so that text does not jump */
|
|
9234
9281
|
}
|
|
9235
9282
|
.mode.after-selected {
|
|
9236
9283
|
border-left: none;
|
|
9237
|
-
padding-left:
|
|
9284
|
+
padding-left: calc(var(--padding-x) + var(--border-width));
|
|
9238
9285
|
/* account for the missing border, so that text does not jump */
|
|
9239
9286
|
}
|
|
9240
9287
|
.mode.selected {
|
|
@@ -9259,21 +9306,12 @@ iframe {
|
|
|
9259
9306
|
.mode > .icon.with-label {
|
|
9260
9307
|
margin-right: 8px;
|
|
9261
9308
|
}
|
|
9262
|
-
.mode-selector.alternative {
|
|
9263
|
-
border: 3px solid transparent;
|
|
9264
|
-
}
|
|
9265
9309
|
.mode-selector.alternative > .mode {
|
|
9310
|
+
--border-width: 0px;
|
|
9266
9311
|
color: #666666;
|
|
9267
|
-
border: none;
|
|
9268
9312
|
background-color: transparent;
|
|
9269
9313
|
border-radius: 3px;
|
|
9270
9314
|
}
|
|
9271
|
-
.mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9272
|
-
padding-right: 12px;
|
|
9273
|
-
}
|
|
9274
|
-
.mode-selector.alternative > .mode.after-selected {
|
|
9275
|
-
padding-left: 12px;
|
|
9276
|
-
}
|
|
9277
9315
|
.mode-selector.alternative > .mode:hover {
|
|
9278
9316
|
background-color: rgba(0, 0, 0, 0.05);
|
|
9279
9317
|
}
|
|
@@ -9300,24 +9338,11 @@ iframe {
|
|
|
9300
9338
|
cursor: default;
|
|
9301
9339
|
}
|
|
9302
9340
|
.dense .mode-selector > .mode {
|
|
9303
|
-
padding:
|
|
9304
|
-
|
|
9305
|
-
.dense .mode-selector > .mode:not(.last):not(.selected) {
|
|
9306
|
-
padding-right: 6px;
|
|
9307
|
-
/* account for the missing border, so that text does not jump */
|
|
9308
|
-
}
|
|
9309
|
-
.dense .mode-selector > .mode.after-selected {
|
|
9310
|
-
padding-left: 6px;
|
|
9311
|
-
/* account for the missing border, so that text does not jump */
|
|
9312
|
-
}
|
|
9313
|
-
.dense .mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9314
|
-
padding-right: 5px;
|
|
9315
|
-
}
|
|
9316
|
-
.dense .mode-selector.alternative > .mode.after-selected {
|
|
9317
|
-
padding-left: 5px;
|
|
9341
|
+
--padding-x: 5px;
|
|
9342
|
+
--padding-y: 3px;
|
|
9318
9343
|
}
|
|
9319
9344
|
/*
|
|
9320
|
-
* Copyright (c) 2010-
|
|
9345
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9321
9346
|
* All rights reserved. This program and the accompanying materials
|
|
9322
9347
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9323
9348
|
* which accompanies this distribution, and is available at
|
|
@@ -9339,6 +9364,7 @@ iframe {
|
|
|
9339
9364
|
.mode-selector.alternative {
|
|
9340
9365
|
background-color: rgba(0, 0, 0, 0.08);
|
|
9341
9366
|
border-radius: 3px;
|
|
9367
|
+
border: 3px solid transparent;
|
|
9342
9368
|
}
|
|
9343
9369
|
.mode-selector.alternative:not(.disabled) > .mode-slider {
|
|
9344
9370
|
display: block;
|
|
@@ -9776,7 +9802,8 @@ iframe {
|
|
|
9776
9802
|
cursor: pointer;
|
|
9777
9803
|
}
|
|
9778
9804
|
.planner-mode {
|
|
9779
|
-
|
|
9805
|
+
padding: 0 8px;
|
|
9806
|
+
min-width: 65px;
|
|
9780
9807
|
text-align: center;
|
|
9781
9808
|
border-top: 1px solid rgba(0, 0, 0, 0.23);
|
|
9782
9809
|
border-bottom: 1px solid rgba(0, 0, 0, 0.23);
|
|
@@ -10297,6 +10324,10 @@ iframe {
|
|
|
10297
10324
|
--scroll-shadow-size: 5px;
|
|
10298
10325
|
--scroll-shadow-blur: 5px;
|
|
10299
10326
|
--scroll-shadow-spread: 6px;
|
|
10327
|
+
--scroll-shadow-inset-top: 0;
|
|
10328
|
+
--scroll-shadow-inset-right: 0;
|
|
10329
|
+
--scroll-shadow-inset-bottom: 0;
|
|
10330
|
+
--scroll-shadow-inset-left: 0;
|
|
10300
10331
|
}
|
|
10301
10332
|
.scroll-shadow.top {
|
|
10302
10333
|
box-shadow: inset 0 var(--scroll-shadow-size) var(--scroll-shadow-blur) calc(-1 * var(--scroll-shadow-spread)) var(--scroll-shadow-color), inset 0 0 0 0 transparent, inset 0 0 0 0 transparent, inset 0 0 0 0 transparent;
|
|
@@ -11658,7 +11689,7 @@ Try these to switch between fonts:
|
|
|
11658
11689
|
/* scoutIcons: custom icons */
|
|
11659
11690
|
/* scoutIcons: awesome icons */
|
|
11660
11691
|
/*
|
|
11661
|
-
* Copyright (c) 2010-
|
|
11692
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11662
11693
|
* All rights reserved. This program and the accompanying materials
|
|
11663
11694
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11664
11695
|
* which accompanies this distribution, and is available at
|
|
@@ -11718,25 +11749,38 @@ Try these to switch between fonts:
|
|
|
11718
11749
|
background-color: rgba(0, 0, 0, 0.12);
|
|
11719
11750
|
color: #262626;
|
|
11720
11751
|
}
|
|
11721
|
-
#scout .tooltip-status
|
|
11752
|
+
#scout .tooltip-status {
|
|
11753
|
+
visibility: visible;
|
|
11754
|
+
cursor: pointer;
|
|
11755
|
+
}
|
|
11756
|
+
#scout .tooltip-status::before {
|
|
11757
|
+
content: '\E002';
|
|
11758
|
+
color: #808080;
|
|
11759
|
+
font-size: 16px;
|
|
11760
|
+
}
|
|
11761
|
+
#scout .tooltip-status:hover::before {
|
|
11762
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
11763
|
+
color: #262626;
|
|
11764
|
+
}
|
|
11765
|
+
#scout .tooltip-status:active::before,
|
|
11766
|
+
#scout .tooltip-status.selected::before {
|
|
11767
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
11768
|
+
color: #262626;
|
|
11769
|
+
}
|
|
11722
11770
|
#scout .info-status {
|
|
11723
11771
|
visibility: visible;
|
|
11724
11772
|
cursor: pointer;
|
|
11725
11773
|
}
|
|
11726
|
-
#scout .tooltip-status::before,
|
|
11727
11774
|
#scout .info-status::before {
|
|
11728
11775
|
content: '\E002';
|
|
11729
11776
|
color: #808080;
|
|
11730
11777
|
font-size: 16px;
|
|
11731
11778
|
}
|
|
11732
|
-
#scout .tooltip-status:hover::before,
|
|
11733
11779
|
#scout .info-status:hover::before {
|
|
11734
11780
|
background-color: rgba(0, 0, 0, 0.08);
|
|
11735
11781
|
color: #262626;
|
|
11736
11782
|
}
|
|
11737
|
-
#scout .tooltip-status:active::before,
|
|
11738
11783
|
#scout .info-status:active::before,
|
|
11739
|
-
#scout .tooltip-status.selected::before,
|
|
11740
11784
|
#scout .info-status.selected::before {
|
|
11741
11785
|
background-color: rgba(0, 0, 0, 0.12);
|
|
11742
11786
|
color: #262626;
|
|
@@ -11850,7 +11894,7 @@ Try these to switch between fonts:
|
|
|
11850
11894
|
background-color: rgba(255, 255, 255, 0.15);
|
|
11851
11895
|
}
|
|
11852
11896
|
/*
|
|
11853
|
-
* Copyright (c) 2010-
|
|
11897
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11854
11898
|
* All rights reserved. This program and the accompanying materials
|
|
11855
11899
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11856
11900
|
* which accompanies this distribution, and is available at
|
|
@@ -11975,7 +12019,7 @@ Try these to switch between fonts:
|
|
|
11975
12019
|
border-color: #fff;
|
|
11976
12020
|
}
|
|
11977
12021
|
/*
|
|
11978
|
-
* Copyright (c) 2010-
|
|
12022
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11979
12023
|
* All rights reserved. This program and the accompanying materials
|
|
11980
12024
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11981
12025
|
* which accompanies this distribution, and is available at
|
|
@@ -12024,6 +12068,13 @@ Try these to switch between fonts:
|
|
|
12024
12068
|
.table.table-row-check > .table-data > .table-row.selected::after {
|
|
12025
12069
|
display: none;
|
|
12026
12070
|
}
|
|
12071
|
+
.table.table-row-check > .table-data > .table-row:hover {
|
|
12072
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
12073
|
+
}
|
|
12074
|
+
.table.table-row-check > .table-data > .table-row.disabled,
|
|
12075
|
+
.table.table-row-check > .table-data.disabled > .table-row {
|
|
12076
|
+
background-color: transparent;
|
|
12077
|
+
}
|
|
12027
12078
|
.table.table-row-check > .table-data > .table-row.checked,
|
|
12028
12079
|
.table.table-row-check > .table-data > .table-row.checked.selected {
|
|
12029
12080
|
/* Mark checked rows with a background color */
|
|
@@ -12033,6 +12084,16 @@ Try these to switch between fonts:
|
|
|
12033
12084
|
.table.table-row-check > .table-data > .table-row.checked.selected > .table-cell {
|
|
12034
12085
|
color: #fff;
|
|
12035
12086
|
}
|
|
12087
|
+
.table.table-row-check > .table-data > .table-row.checked:hover,
|
|
12088
|
+
.table.table-row-check > .table-data > .table-row.checked.selected:hover {
|
|
12089
|
+
background-color: #014786;
|
|
12090
|
+
}
|
|
12091
|
+
.table.table-row-check > .table-data > .table-row.disabled.checked,
|
|
12092
|
+
.table.table-row-check > .table-data.disabled > .table-row.checked,
|
|
12093
|
+
.table.table-row-check > .table-data > .table-row.disabled.checked.selected,
|
|
12094
|
+
.table.table-row-check > .table-data.disabled > .table-row.checked.selected {
|
|
12095
|
+
background-color: #808080;
|
|
12096
|
+
}
|
|
12036
12097
|
.table.table-row-check.keyboard-navigation:focus > .table-data > .table-row.selected,
|
|
12037
12098
|
.table.table-row-check.keyboard-navigation.focused > .table-data > .table-row.selected {
|
|
12038
12099
|
background-color: rgba(0, 0, 0, 0.08);
|
|
@@ -12067,18 +12128,24 @@ Try these to switch between fonts:
|
|
|
12067
12128
|
background-color: inherit;
|
|
12068
12129
|
}
|
|
12069
12130
|
.table > .filter-field {
|
|
12070
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12131
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12071
12132
|
}
|
|
12072
12133
|
.table > .filter-field:not(.focused).empty {
|
|
12073
12134
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12074
12135
|
}
|
|
12075
12136
|
.has-menubar.menubar-bottom.table > .filter-field {
|
|
12076
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12137
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12077
12138
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
12078
12139
|
}
|
|
12079
12140
|
.has-menubar.menubar-bottom.table > .filter-field:not(.focused).empty {
|
|
12080
12141
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12081
12142
|
}
|
|
12143
|
+
.has-cell-editor-popup.table > .filter-field {
|
|
12144
|
+
opacity: 0;
|
|
12145
|
+
visibility: hidden;
|
|
12146
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
12147
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
12148
|
+
}
|
|
12082
12149
|
.table-data {
|
|
12083
12150
|
position: relative;
|
|
12084
12151
|
overflow: hidden;
|
|
@@ -12929,6 +12996,7 @@ Try these to switch between fonts:
|
|
|
12929
12996
|
overflow: hidden;
|
|
12930
12997
|
text-overflow: ellipsis;
|
|
12931
12998
|
white-space: nowrap;
|
|
12999
|
+
margin-top: 1px;
|
|
12932
13000
|
}
|
|
12933
13001
|
.table-header-item-state {
|
|
12934
13002
|
position: absolute;
|
|
@@ -13047,6 +13115,9 @@ Try these to switch between fonts:
|
|
|
13047
13115
|
vertical-align: top;
|
|
13048
13116
|
padding: 16px;
|
|
13049
13117
|
}
|
|
13118
|
+
.table-header-menu-actions > .table-header-menu-group > .table-header-menu-group-text {
|
|
13119
|
+
width: calc(100% + 12px);
|
|
13120
|
+
}
|
|
13050
13121
|
.table-header-menu-filters {
|
|
13051
13122
|
display: inline-block;
|
|
13052
13123
|
vertical-align: top;
|
|
@@ -13218,11 +13289,11 @@ Try these to switch between fonts:
|
|
|
13218
13289
|
}
|
|
13219
13290
|
.table-header-menu-filter-table.table-row-check > .table-data {
|
|
13220
13291
|
margin-top: 0;
|
|
13221
|
-
padding: 3px
|
|
13292
|
+
padding: 3px;
|
|
13222
13293
|
}
|
|
13223
13294
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row {
|
|
13224
13295
|
border-radius: 3px;
|
|
13225
|
-
margin-bottom:
|
|
13296
|
+
margin-bottom: 2px;
|
|
13226
13297
|
}
|
|
13227
13298
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row.last {
|
|
13228
13299
|
margin-bottom: 0;
|
|
@@ -13747,10 +13818,6 @@ Try these to switch between fonts:
|
|
|
13747
13818
|
max-width: 300px;
|
|
13748
13819
|
white-space: normal;
|
|
13749
13820
|
}
|
|
13750
|
-
.tooltip.has-menus {
|
|
13751
|
-
padding-top: 6px;
|
|
13752
|
-
padding-bottom: 6px;
|
|
13753
|
-
}
|
|
13754
13821
|
.tooltip-content {
|
|
13755
13822
|
padding: 8px 12px;
|
|
13756
13823
|
position: relative;
|
|
@@ -13766,6 +13833,7 @@ Try these to switch between fonts:
|
|
|
13766
13833
|
font-weight: bold;
|
|
13767
13834
|
padding-left: 16px;
|
|
13768
13835
|
padding-right: 16px;
|
|
13836
|
+
padding-top: 14px;
|
|
13769
13837
|
}
|
|
13770
13838
|
.tooltip-content .small {
|
|
13771
13839
|
font-size: 11px;
|
|
@@ -13777,6 +13845,11 @@ Try these to switch between fonts:
|
|
|
13777
13845
|
}
|
|
13778
13846
|
.tooltip-menus {
|
|
13779
13847
|
position: relative;
|
|
13848
|
+
background-color: inherit;
|
|
13849
|
+
padding-bottom: 6px;
|
|
13850
|
+
}
|
|
13851
|
+
.no-text > .tooltip-menus {
|
|
13852
|
+
padding-top: 6px;
|
|
13780
13853
|
}
|
|
13781
13854
|
.tooltip-menus > .menu-item {
|
|
13782
13855
|
display: flex;
|
|
@@ -13865,7 +13938,7 @@ Try these to switch between fonts:
|
|
|
13865
13938
|
position: relative;
|
|
13866
13939
|
}
|
|
13867
13940
|
/*
|
|
13868
|
-
* Copyright (c) 2010-
|
|
13941
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
13869
13942
|
* All rights reserved. This program and the accompanying materials
|
|
13870
13943
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
13871
13944
|
* which accompanies this distribution, and is available at
|
|
@@ -13894,7 +13967,7 @@ Try these to switch between fonts:
|
|
|
13894
13967
|
border-color: #1561A7;
|
|
13895
13968
|
}
|
|
13896
13969
|
.tree > .filter-field {
|
|
13897
|
-
--filter-field-max-bottom: calc(50% - (
|
|
13970
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--menubar-height)) / 2);
|
|
13898
13971
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
13899
13972
|
}
|
|
13900
13973
|
.tree > .filter-field:not(.focused).empty {
|
|
@@ -14077,13 +14150,12 @@ Try these to switch between fonts:
|
|
|
14077
14150
|
}
|
|
14078
14151
|
.tree-node.lazy > .tree-node-control::before {
|
|
14079
14152
|
font-family: Arial, sans-serif;
|
|
14080
|
-
font-size: 13px;
|
|
14081
14153
|
content: '+';
|
|
14082
14154
|
/* Move to left because '+' sign is not as wide as 'arrow-down' */
|
|
14083
14155
|
margin-left: -2px;
|
|
14084
14156
|
}
|
|
14085
14157
|
.tree-node.expanded > .tree-node-control::before {
|
|
14086
|
-
/* This "imprecise" angle is a
|
|
14158
|
+
/* This "imprecise" angle is a workaround for firefox to prevent shifting the div a little when the animation finishes. */
|
|
14087
14159
|
/* See https://bugzilla.mozilla.org/show_bug.cgi?id=739176 */
|
|
14088
14160
|
-webkit-transform: rotate(89.99deg);
|
|
14089
14161
|
-ms-transform: rotate(89.99deg);
|
|
@@ -14639,6 +14711,11 @@ Try these to switch between fonts:
|
|
|
14639
14711
|
.tile.dashboard.inverted > .form-field.has-error > .status::before {
|
|
14640
14712
|
color: #FF5555;
|
|
14641
14713
|
}
|
|
14714
|
+
.tile.dashboard.inverted > .form-field.has-error > .status:hover::before,
|
|
14715
|
+
.tile.dashboard.inverted > .form-field.has-error > .status:active::before,
|
|
14716
|
+
.tile.dashboard.inverted > .form-field.has-error > .status.selected::before {
|
|
14717
|
+
color: #FF5555;
|
|
14718
|
+
}
|
|
14642
14719
|
.tile.dashboard.inverted > .form-field .scrollbar-thumb-handle {
|
|
14643
14720
|
background-color: rgba(218, 218, 218, 0.3);
|
|
14644
14721
|
}
|
|
@@ -14710,26 +14787,26 @@ Try these to switch between fonts:
|
|
|
14710
14787
|
}
|
|
14711
14788
|
.tile.dashboard.selected.inverted {
|
|
14712
14789
|
--tile-background-color: #367ab8;
|
|
14713
|
-
box-shadow: 0 0 0 2px #
|
|
14790
|
+
box-shadow: 0 0 0 2px #367ab8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14714
14791
|
}
|
|
14715
14792
|
.tile.dashboard.selected.color-alternative {
|
|
14716
14793
|
box-shadow: 0 0 0 2px #4C4C4C, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14717
14794
|
}
|
|
14718
14795
|
.tile.dashboard.selected.inverted.color-alternative {
|
|
14719
14796
|
--tile-background-color: #555555;
|
|
14720
|
-
box-shadow: 0 0 0 2px #
|
|
14797
|
+
box-shadow: 0 0 0 2px #555555, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14721
14798
|
}
|
|
14722
14799
|
.dimmed-background .tile.dashboard.selected {
|
|
14723
14800
|
box-shadow: 0 0 0 2px #1561A7, 0px 6px 13px 0px rgba(0, 0, 0, 0.05);
|
|
14724
14801
|
}
|
|
14725
14802
|
.dimmed-background .tile.dashboard.selected.inverted {
|
|
14726
|
-
box-shadow: 0 0 0 2px #
|
|
14803
|
+
box-shadow: 0 0 0 2px #367ab8, 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
|
|
14727
14804
|
}
|
|
14728
14805
|
.dimmed-background .tile.dashboard.selected.color-alternative {
|
|
14729
14806
|
box-shadow: 0 0 0 2px #4C4C4C, 0px 6px 13px 0px rgba(0, 0, 0, 0.05);
|
|
14730
14807
|
}
|
|
14731
14808
|
.dimmed-background .tile.dashboard.selected.inverted.color-alternative {
|
|
14732
|
-
box-shadow: 0 0 0 2px #
|
|
14809
|
+
box-shadow: 0 0 0 2px #555555, 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
|
|
14733
14810
|
}
|
|
14734
14811
|
/*
|
|
14735
14812
|
Mixing that can be used to reduce the horizontal padding.
|
|
@@ -15042,7 +15119,7 @@ Try these to switch between fonts:
|
|
|
15042
15119
|
color: #fff;
|
|
15043
15120
|
}
|
|
15044
15121
|
/*
|
|
15045
|
-
* Copyright (c) 2010-
|
|
15122
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15046
15123
|
* All rights reserved. This program and the accompanying materials
|
|
15047
15124
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15048
15125
|
* which accompanies this distribution, and is available at
|
|
@@ -15053,11 +15130,12 @@ Try these to switch between fonts:
|
|
|
15053
15130
|
*/
|
|
15054
15131
|
.filter-field {
|
|
15055
15132
|
position: absolute;
|
|
15056
|
-
--filter-field-
|
|
15057
|
-
--filter-field-
|
|
15133
|
+
--filter-field-height: 30px;
|
|
15134
|
+
--filter-field-bottom: 8px;
|
|
15135
|
+
--filter-field-max-bottom: calc(50% - var(--filter-field-height) / 2);
|
|
15058
15136
|
bottom: min(var(--filter-field-bottom), var(--filter-field-max-bottom));
|
|
15059
|
-
right:
|
|
15060
|
-
height:
|
|
15137
|
+
right: 8px;
|
|
15138
|
+
height: var(--filter-field-height);
|
|
15061
15139
|
width: 190px;
|
|
15062
15140
|
min-width: 75px;
|
|
15063
15141
|
max-width: 60%;
|
|
@@ -15068,10 +15146,16 @@ Try these to switch between fonts:
|
|
|
15068
15146
|
box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.2);
|
|
15069
15147
|
background-color: var(--filter-field-background-color);
|
|
15070
15148
|
opacity: 1;
|
|
15071
|
-
|
|
15149
|
+
visibility: visible;
|
|
15150
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15151
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15152
|
+
transition: bottom 250ms ease-in-out, right 250ms ease-in-out, height 250ms ease-in-out, width 250ms ease-in-out, min-width 250ms ease-in-out, max-width 250ms ease-in-out, box-shadow 250ms ease-in-out, opacity 250ms ease-in-out var(--filter-field-opacity-transition-delay), visibility 0s var(--filter-field-visibility-transition-delay);
|
|
15072
15153
|
}
|
|
15073
15154
|
:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15074
15155
|
opacity: 0;
|
|
15156
|
+
visibility: hidden;
|
|
15157
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15158
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15075
15159
|
}
|
|
15076
15160
|
.filter-field::before {
|
|
15077
15161
|
content: '\E02A';
|
|
@@ -15085,7 +15169,7 @@ Try these to switch between fonts:
|
|
|
15085
15169
|
justify-content: center;
|
|
15086
15170
|
align-items: center;
|
|
15087
15171
|
position: absolute;
|
|
15088
|
-
bottom:
|
|
15172
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15089
15173
|
right: 3px;
|
|
15090
15174
|
height: 24px;
|
|
15091
15175
|
width: 24px;
|
|
@@ -15121,19 +15205,19 @@ Try these to switch between fonts:
|
|
|
15121
15205
|
top: calc(50% - 22px / 2) !important;
|
|
15122
15206
|
}
|
|
15123
15207
|
.filter-field:not(.focused).empty {
|
|
15124
|
-
--filter-field-bottom:
|
|
15208
|
+
--filter-field-bottom: 8px + ((var(--filter-field-height) - 24px) / 2);
|
|
15125
15209
|
--filter-field-max-bottom: calc(50% - 24px / 2);
|
|
15126
|
-
right:
|
|
15210
|
+
right: 11px;
|
|
15127
15211
|
height: 24px;
|
|
15128
15212
|
width: 24px;
|
|
15129
15213
|
min-width: 24px;
|
|
15130
15214
|
max-width: 24px;
|
|
15131
15215
|
box-shadow: none;
|
|
15132
|
-
background-color: var(--filter-field-background-color);
|
|
15216
|
+
background-color: var(--filter-field-transparent-80-background-color);
|
|
15133
15217
|
}
|
|
15134
15218
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
15135
15219
|
.filter-field:not(.focused).empty {
|
|
15136
|
-
background-color: var(--filter-field-transparent-background-color);
|
|
15220
|
+
background-color: var(--filter-field-transparent-50-background-color);
|
|
15137
15221
|
-webkit-backdrop-filter: blur(2px);
|
|
15138
15222
|
backdrop-filter: blur(2px);
|
|
15139
15223
|
}
|
|
@@ -15158,10 +15242,11 @@ Try these to switch between fonts:
|
|
|
15158
15242
|
}
|
|
15159
15243
|
.filter-field-container {
|
|
15160
15244
|
position: sticky;
|
|
15161
|
-
--filter-field-
|
|
15162
|
-
--filter-field-container-
|
|
15245
|
+
--filter-field-height: 30px;
|
|
15246
|
+
--filter-field-container-top: calc(100% - 8px);
|
|
15247
|
+
--filter-field-container-min-top: calc(50% + var(--filter-field-height) / 2);
|
|
15163
15248
|
top: max(var(--filter-field-container-top), var(--filter-field-container-min-top));
|
|
15164
|
-
left: calc(100% -
|
|
15249
|
+
left: calc(100% - 8px);
|
|
15165
15250
|
width: 0;
|
|
15166
15251
|
height: 0;
|
|
15167
15252
|
overflow: visible;
|
|
@@ -15170,6 +15255,9 @@ Try these to switch between fonts:
|
|
|
15170
15255
|
}
|
|
15171
15256
|
.filter-field-container:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15172
15257
|
opacity: 1;
|
|
15258
|
+
visibility: visible;
|
|
15259
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15260
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15173
15261
|
}
|
|
15174
15262
|
.filter-field-container > .filter-field {
|
|
15175
15263
|
bottom: 0;
|
|
@@ -15178,9 +15266,12 @@ Try these to switch between fonts:
|
|
|
15178
15266
|
}
|
|
15179
15267
|
:not(:hover) > .filter-field-container > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15180
15268
|
opacity: 0;
|
|
15269
|
+
visibility: hidden;
|
|
15270
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15271
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15181
15272
|
}
|
|
15182
15273
|
.filter-field-container > .filter-field:not(.focused).empty {
|
|
15183
|
-
bottom:
|
|
15274
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15184
15275
|
right: 3px;
|
|
15185
15276
|
}
|
|
15186
15277
|
@supports not (bottom: min(50%, 42px)) {
|
|
@@ -15190,6 +15281,10 @@ Try these to switch between fonts:
|
|
|
15190
15281
|
/* NOSONAR (!important is okay here) */
|
|
15191
15282
|
}
|
|
15192
15283
|
}
|
|
15284
|
+
.dense .filter-field,
|
|
15285
|
+
.dense .filter-field-container {
|
|
15286
|
+
--filter-field-height: 24px;
|
|
15287
|
+
}
|
|
15193
15288
|
/*
|
|
15194
15289
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15195
15290
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -15215,7 +15310,7 @@ Try these to switch between fonts:
|
|
|
15215
15310
|
/* Improve Chrome's auto-fill style by overriding the forced yellow background and black text color. */
|
|
15216
15311
|
/* (Requires some hacks, see http://webagility.com/posts/remove-forced-yellow-input-background-in-chrome) */
|
|
15217
15312
|
border-top-width: 0;
|
|
15218
|
-
padding-top:
|
|
15313
|
+
padding-top: 3px;
|
|
15219
15314
|
-webkit-box-shadow: inset 0 0 0 1000px #fff;
|
|
15220
15315
|
-webkit-text-fill-color: #000 !important;
|
|
15221
15316
|
/* NOSONAR (!important is okay here) */
|
|
@@ -15236,17 +15331,20 @@ Try these to switch between fonts:
|
|
|
15236
15331
|
* Login button is a default button -> styles are defined in main.css.
|
|
15237
15332
|
* Difference to regular default button is the disabled style and the ability to turn red.
|
|
15238
15333
|
*/
|
|
15239
|
-
.login-button.default.login-error {
|
|
15240
|
-
border-color:
|
|
15334
|
+
.login-button.default.login-error:not(.disabled) {
|
|
15335
|
+
border-color: transparent;
|
|
15241
15336
|
background-color: #D53F3F;
|
|
15242
15337
|
}
|
|
15243
|
-
.login-button.default.login-error:hover {
|
|
15244
|
-
background-color: #
|
|
15245
|
-
border-color: #D53F3F;
|
|
15338
|
+
.login-button.default.login-error:not(.disabled):hover {
|
|
15339
|
+
background-color: #c92c2c;
|
|
15246
15340
|
}
|
|
15247
|
-
.login-button.default.login-error:active {
|
|
15248
|
-
|
|
15249
|
-
|
|
15341
|
+
.login-button.default.login-error:not(.disabled):active {
|
|
15342
|
+
background-color: #ac2626;
|
|
15343
|
+
}
|
|
15344
|
+
.login-button.default.login-error:not(.disabled):focus {
|
|
15345
|
+
outline: none;
|
|
15346
|
+
box-shadow: 0 0 0 3px rgba(213, 63, 63, 0.4);
|
|
15347
|
+
border-color: rgba(213, 63, 63, 0.55);
|
|
15250
15348
|
}
|
|
15251
15349
|
.login-button.default.disabled {
|
|
15252
15350
|
color: #fff;
|
|
@@ -15272,6 +15370,20 @@ Try these to switch between fonts:
|
|
|
15272
15370
|
-o-animation: nop 0.05s;
|
|
15273
15371
|
animation: nop 0.05s;
|
|
15274
15372
|
}
|
|
15373
|
+
/*
|
|
15374
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15375
|
+
* All rights reserved. This program and the accompanying materials
|
|
15376
|
+
* are made available under the terms of the Eclipse Public License v1.0
|
|
15377
|
+
* which accompanies this distribution, and is available at
|
|
15378
|
+
* http://www.eclipse.org/legal/epl-v10.html
|
|
15379
|
+
*
|
|
15380
|
+
* Contributors:
|
|
15381
|
+
* BSI Business Systems Integration AG - initial API and implementation
|
|
15382
|
+
*/
|
|
15383
|
+
.breadcrumb-bar-field > .field {
|
|
15384
|
+
padding-top: 8px;
|
|
15385
|
+
padding-bottom: 9px;
|
|
15386
|
+
}
|
|
15275
15387
|
/*
|
|
15276
15388
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
15277
15389
|
* All rights reserved. This program and the accompanying materials
|