@eclipse-scout/core 22.0.1 → 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 +367 -312
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +150 -95
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +371 -204
- 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/action/Button.less +1 -0
- 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 +5 -2
- package/src/desktop/desktoptab/DesktopTabArea.less +7 -3
- 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.less +4 -4
- package/src/desktop/viewbutton/ViewButton.less +13 -9
- 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 +1 -0
- 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.less +1 -0
- package/src/jquery/jquery-scout.js +5 -4
- package/src/menu/ContextMenuPopup.less +9 -2
- package/src/menu/Menu.less +1 -0
- 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/style/colors-dark.less +17 -10
- package/src/style/colors.less +11 -3
- package/src/style/fonts.less +5 -0
- package/src/style/mixins.less +16 -12
- package/src/style/sizes-dark.less +4 -1
- package/src/style/sizes.less +3 -4
- package/src/table/Table.js +37 -29
- package/src/table/Table.less +36 -13
- 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/editor/CellEditorPopup.js +8 -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/tree/CompactTree.less +1 -1
- package/src/tree/Tree.less +1 -3
- package/src/util/arrays.js +24 -2
- package/src/util/objects.js +4 -1
- package/src/widget/Widget.js +11 -3
|
@@ -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 */
|
|
@@ -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,6 +2890,7 @@ 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 {
|
|
@@ -2909,6 +2913,7 @@ iframe {
|
|
|
2909
2913
|
}
|
|
2910
2914
|
.desktop-tab.simple-tab.selected {
|
|
2911
2915
|
background-color: #fff;
|
|
2916
|
+
border-color: transparent;
|
|
2912
2917
|
}
|
|
2913
2918
|
.desktop-tab.simple-tab.selected > .title-line > .icon-container {
|
|
2914
2919
|
color: #808080;
|
|
@@ -2942,19 +2947,22 @@ iframe {
|
|
|
2942
2947
|
position: absolute;
|
|
2943
2948
|
pointer-events: none;
|
|
2944
2949
|
background-color: transparent;
|
|
2945
|
-
bottom:
|
|
2946
|
-
height:
|
|
2947
|
-
width:
|
|
2948
|
-
box-
|
|
2949
|
-
|
|
2950
|
+
bottom: -5px;
|
|
2951
|
+
height: 12px;
|
|
2952
|
+
width: 12px;
|
|
2953
|
+
box-sizing: content-box;
|
|
2954
|
+
border: 5px solid var(--color);
|
|
2955
|
+
border-top: none;
|
|
2950
2956
|
}
|
|
2951
2957
|
.desktop-tab.simple-tab.selected > .edge.left {
|
|
2952
|
-
left: -
|
|
2953
|
-
border-bottom-right-radius:
|
|
2958
|
+
left: -12px;
|
|
2959
|
+
border-bottom-right-radius: 17px;
|
|
2960
|
+
border-left: none;
|
|
2954
2961
|
}
|
|
2955
2962
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2956
|
-
right: -
|
|
2957
|
-
border-bottom-left-radius:
|
|
2963
|
+
right: -12px;
|
|
2964
|
+
border-bottom-left-radius: 17px;
|
|
2965
|
+
border-right: none;
|
|
2958
2966
|
}
|
|
2959
2967
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2960
2968
|
z-index: 1;
|
|
@@ -3111,16 +3119,18 @@ iframe {
|
|
|
3111
3119
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
3112
3120
|
*/
|
|
3113
3121
|
.desktop-tab-area > .simple-overflow-tab-item {
|
|
3114
|
-
border-radius:
|
|
3115
|
-
margin:
|
|
3122
|
+
border-radius: 8px;
|
|
3123
|
+
margin: 14px 3px 6px;
|
|
3116
3124
|
background-color: rgba(0, 0, 0, 0.1);
|
|
3117
|
-
border: 0;
|
|
3125
|
+
border: 0 solid transparent;
|
|
3118
3126
|
}
|
|
3119
3127
|
.desktop-tab-area > .simple-overflow-tab-item:hover {
|
|
3120
3128
|
background-color: rgba(0, 0, 0, 0.2);
|
|
3129
|
+
border-color: transparent;
|
|
3121
3130
|
}
|
|
3122
3131
|
.desktop-tab-area > .simple-overflow-tab-item.selected {
|
|
3123
3132
|
background-color: rgba(0, 0, 0, 0.2);
|
|
3133
|
+
border-color: transparent;
|
|
3124
3134
|
}
|
|
3125
3135
|
/*
|
|
3126
3136
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -3241,6 +3251,9 @@ iframe {
|
|
|
3241
3251
|
.desktop-navigation > .desktop-tool-box > .menu-item > .font-icon {
|
|
3242
3252
|
font-size: 20px;
|
|
3243
3253
|
}
|
|
3254
|
+
.desktop-navigation > .desktop-tool-box > .menu-item.ellipsis > .font-icon {
|
|
3255
|
+
font-size: 22px;
|
|
3256
|
+
}
|
|
3244
3257
|
/*
|
|
3245
3258
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
3246
3259
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -3292,7 +3305,7 @@ iframe {
|
|
|
3292
3305
|
margin-left: -4px;
|
|
3293
3306
|
}
|
|
3294
3307
|
/*
|
|
3295
|
-
* Copyright (c) 2010-
|
|
3308
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
3296
3309
|
* All rights reserved. This program and the accompanying materials
|
|
3297
3310
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
3298
3311
|
* which accompanies this distribution, and is available at
|
|
@@ -3305,7 +3318,7 @@ iframe {
|
|
|
3305
3318
|
position: fixed;
|
|
3306
3319
|
right: 10px;
|
|
3307
3320
|
top: 0;
|
|
3308
|
-
height: 100
|
|
3321
|
+
height: calc(100% - 72px);
|
|
3309
3322
|
width: 300px;
|
|
3310
3323
|
margin-top: 72px;
|
|
3311
3324
|
pointer-events: none;
|
|
@@ -3592,10 +3605,6 @@ iframe {
|
|
|
3592
3605
|
line-height: 14px;
|
|
3593
3606
|
color: #999999;
|
|
3594
3607
|
}
|
|
3595
|
-
.outline.tree > .tree-data > .tree-node > .tree-node-control::before,
|
|
3596
|
-
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control::before {
|
|
3597
|
-
font-size: 18px;
|
|
3598
|
-
}
|
|
3599
3608
|
.outline.tree > .tree-data > .tree-node > .tree-node-control:hover,
|
|
3600
3609
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control:hover {
|
|
3601
3610
|
color: #FE9915;
|
|
@@ -3613,6 +3622,10 @@ iframe {
|
|
|
3613
3622
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .tree-node-control {
|
|
3614
3623
|
color: rgba(255, 255, 255, 0.7);
|
|
3615
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
|
+
}
|
|
3616
3629
|
.outline.tree > .tree-data > .tree-node.selected > .font-icon,
|
|
3617
3630
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .font-icon {
|
|
3618
3631
|
color: rgba(255, 255, 255, 0.7);
|
|
@@ -4079,7 +4092,7 @@ iframe {
|
|
|
4079
4092
|
bottom: 6px;
|
|
4080
4093
|
}
|
|
4081
4094
|
/*
|
|
4082
|
-
* Copyright (c)
|
|
4095
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4083
4096
|
* All rights reserved. This program and the accompanying materials
|
|
4084
4097
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4085
4098
|
* which accompanies this distribution, and is available at
|
|
@@ -4115,19 +4128,22 @@ iframe {
|
|
|
4115
4128
|
position: absolute;
|
|
4116
4129
|
pointer-events: none;
|
|
4117
4130
|
background-color: transparent;
|
|
4118
|
-
bottom:
|
|
4119
|
-
height:
|
|
4120
|
-
width:
|
|
4121
|
-
box-
|
|
4122
|
-
|
|
4131
|
+
bottom: -5px;
|
|
4132
|
+
height: 12px;
|
|
4133
|
+
width: 12px;
|
|
4134
|
+
box-sizing: content-box;
|
|
4135
|
+
border: 5px solid var(--color);
|
|
4136
|
+
border-top: none;
|
|
4123
4137
|
}
|
|
4124
4138
|
.view-tab.selected:not(.in-background) > .edge.left {
|
|
4125
|
-
left: -
|
|
4126
|
-
border-bottom-right-radius:
|
|
4139
|
+
left: -12px;
|
|
4140
|
+
border-bottom-right-radius: 17px;
|
|
4141
|
+
border-left: none;
|
|
4127
4142
|
}
|
|
4128
4143
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4129
|
-
right: -
|
|
4130
|
-
border-bottom-left-radius:
|
|
4144
|
+
right: -12px;
|
|
4145
|
+
border-bottom-left-radius: 17px;
|
|
4146
|
+
border-right: none;
|
|
4131
4147
|
}
|
|
4132
4148
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4133
4149
|
z-index: 1;
|
|
@@ -4143,14 +4159,12 @@ iframe {
|
|
|
4143
4159
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.left,
|
|
4144
4160
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.left {
|
|
4145
4161
|
visibility: hidden;
|
|
4146
|
-
|
|
4147
|
-
animation: show-view-tab-left-edge 200ms ease-out 0s forwards;
|
|
4162
|
+
animation: show-view-tab-left-edge 40ms ease-out 160ms forwards;
|
|
4148
4163
|
}
|
|
4149
4164
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.right,
|
|
4150
4165
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.right {
|
|
4151
4166
|
visibility: hidden;
|
|
4152
|
-
|
|
4153
|
-
animation: show-view-tab-right-edge 200ms ease-out 0s forwards;
|
|
4167
|
+
animation: show-view-tab-right-edge 40ms ease-out 160ms forwards;
|
|
4154
4168
|
}
|
|
4155
4169
|
.view-button-tab {
|
|
4156
4170
|
display: flex;
|
|
@@ -4191,15 +4205,21 @@ iframe {
|
|
|
4191
4205
|
font-size: 20px;
|
|
4192
4206
|
}
|
|
4193
4207
|
@keyframes show-view-tab-left-edge {
|
|
4194
|
-
|
|
4208
|
+
0% {
|
|
4195
4209
|
visibility: visible;
|
|
4196
|
-
|
|
4210
|
+
left: -5px;
|
|
4211
|
+
}
|
|
4212
|
+
100% {
|
|
4213
|
+
left: -12px;
|
|
4197
4214
|
}
|
|
4198
4215
|
}
|
|
4199
4216
|
@keyframes show-view-tab-right-edge {
|
|
4200
|
-
|
|
4217
|
+
0% {
|
|
4201
4218
|
visibility: visible;
|
|
4202
|
-
|
|
4219
|
+
right: -5px;
|
|
4220
|
+
}
|
|
4221
|
+
100% {
|
|
4222
|
+
right: -12px;
|
|
4203
4223
|
}
|
|
4204
4224
|
}
|
|
4205
4225
|
/*
|
|
@@ -4228,7 +4248,7 @@ iframe {
|
|
|
4228
4248
|
color: #fff;
|
|
4229
4249
|
}
|
|
4230
4250
|
/*
|
|
4231
|
-
* Copyright (c)
|
|
4251
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4232
4252
|
* All rights reserved. This program and the accompanying materials
|
|
4233
4253
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4234
4254
|
* which accompanies this distribution, and is available at
|
|
@@ -4248,12 +4268,12 @@ iframe {
|
|
|
4248
4268
|
align-items: center;
|
|
4249
4269
|
justify-content: center;
|
|
4250
4270
|
background-color: transparent;
|
|
4271
|
+
cursor: pointer;
|
|
4251
4272
|
}
|
|
4252
4273
|
.view-menu-tab > .view-button:hover,
|
|
4253
4274
|
.view-menu-tab > .view-menu:hover {
|
|
4254
4275
|
background-color: rgba(0, 0, 0, 0.1);
|
|
4255
4276
|
color: inherit;
|
|
4256
|
-
cursor: pointer;
|
|
4257
4277
|
}
|
|
4258
4278
|
.view-menu-tab > .view-button.disabled,
|
|
4259
4279
|
.view-menu-tab > .view-menu.disabled {
|
|
@@ -4362,6 +4382,7 @@ iframe {
|
|
|
4362
4382
|
.view-menu-tab.selected:not(.in-background) > .view-button {
|
|
4363
4383
|
padding-left: 6px;
|
|
4364
4384
|
width: 56px;
|
|
4385
|
+
cursor: default;
|
|
4365
4386
|
}
|
|
4366
4387
|
.selected-button-invisible.view-menu-tab.selected:not(.in-background) > .view-menu {
|
|
4367
4388
|
width: 50px;
|
|
@@ -4791,6 +4812,7 @@ iframe {
|
|
|
4791
4812
|
white-space: nowrap;
|
|
4792
4813
|
font-size: 16px;
|
|
4793
4814
|
color: #000;
|
|
4815
|
+
margin-top: 1px;
|
|
4794
4816
|
}
|
|
4795
4817
|
.form > .header > .sub-title {
|
|
4796
4818
|
overflow: hidden;
|
|
@@ -6061,6 +6083,7 @@ iframe {
|
|
|
6061
6083
|
vertical-align: middle;
|
|
6062
6084
|
padding: 12px 0 12px 0;
|
|
6063
6085
|
max-width: 100%;
|
|
6086
|
+
margin-top: 1px;
|
|
6064
6087
|
}
|
|
6065
6088
|
.group-box.has-sub-label > .group-box-header > .title {
|
|
6066
6089
|
padding-bottom: 7px;
|
|
@@ -6241,7 +6264,6 @@ iframe {
|
|
|
6241
6264
|
}
|
|
6242
6265
|
.html-field > .field {
|
|
6243
6266
|
margin-left: 10px;
|
|
6244
|
-
overflow: hidden;
|
|
6245
6267
|
}
|
|
6246
6268
|
.html-field > .field:focus {
|
|
6247
6269
|
outline: none;
|
|
@@ -7219,7 +7241,7 @@ iframe {
|
|
|
7219
7241
|
.tab-box-header > .menubar {
|
|
7220
7242
|
position: absolute;
|
|
7221
7243
|
background-color: inherit;
|
|
7222
|
-
border-bottom
|
|
7244
|
+
border-bottom: none;
|
|
7223
7245
|
}
|
|
7224
7246
|
.tab-box-header > .status {
|
|
7225
7247
|
position: absolute;
|
|
@@ -7382,6 +7404,7 @@ iframe {
|
|
|
7382
7404
|
display: inline-block;
|
|
7383
7405
|
vertical-align: middle;
|
|
7384
7406
|
padding: 12px 0 12px;
|
|
7407
|
+
margin-top: 1px;
|
|
7385
7408
|
}
|
|
7386
7409
|
.tab-area.has-sub-label > .tab-item > .title {
|
|
7387
7410
|
padding-bottom: 7px;
|
|
@@ -8154,6 +8177,7 @@ iframe {
|
|
|
8154
8177
|
overflow: hidden;
|
|
8155
8178
|
text-overflow: ellipsis;
|
|
8156
8179
|
white-space: nowrap;
|
|
8180
|
+
margin-top: 1px;
|
|
8157
8181
|
}
|
|
8158
8182
|
.menu-item > .font-icon {
|
|
8159
8183
|
font-size: 16px;
|
|
@@ -8240,6 +8264,7 @@ iframe {
|
|
|
8240
8264
|
overflow: hidden;
|
|
8241
8265
|
text-overflow: ellipsis;
|
|
8242
8266
|
white-space: nowrap;
|
|
8267
|
+
margin-top: 1px;
|
|
8243
8268
|
}
|
|
8244
8269
|
.menu-button > .icon {
|
|
8245
8270
|
/* Padding only relevant for icons larger than the container */
|
|
@@ -8477,12 +8502,16 @@ iframe {
|
|
|
8477
8502
|
.context-menu > .menu-item.selected {
|
|
8478
8503
|
background-color: #E9F0F6;
|
|
8479
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
|
+
}
|
|
8480
8512
|
.context-menu > .menu-item.selected > .submenu-icon {
|
|
8481
8513
|
transform: none;
|
|
8482
8514
|
}
|
|
8483
|
-
.context-menu > .menu-item.expanded {
|
|
8484
|
-
color: #1561A7;
|
|
8485
|
-
}
|
|
8486
8515
|
.context-menu > .menu-item.expanded > .submenu-icon {
|
|
8487
8516
|
-webkit-transform: rotateX(180deg) translateY(-1px);
|
|
8488
8517
|
-ms-transform: rotateX(180deg) translateY(-1px);
|
|
@@ -9216,7 +9245,7 @@ iframe {
|
|
|
9216
9245
|
}
|
|
9217
9246
|
}
|
|
9218
9247
|
/*
|
|
9219
|
-
* Copyright (c) 2010-
|
|
9248
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9220
9249
|
* All rights reserved. This program and the accompanying materials
|
|
9221
9250
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9222
9251
|
* which accompanies this distribution, and is available at
|
|
@@ -9226,10 +9255,13 @@ iframe {
|
|
|
9226
9255
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
9227
9256
|
*/
|
|
9228
9257
|
.mode {
|
|
9229
|
-
|
|
9258
|
+
--padding-x: 12px;
|
|
9259
|
+
--padding-y: 6px;
|
|
9260
|
+
--border-width: 1px;
|
|
9261
|
+
border: var(--border-width) solid rgba(0, 0, 0, 0.23);
|
|
9230
9262
|
border-radius: 0;
|
|
9231
9263
|
flex: 1 1 0;
|
|
9232
|
-
padding:
|
|
9264
|
+
padding: var(--padding-y) var(--padding-x);
|
|
9233
9265
|
overflow: hidden;
|
|
9234
9266
|
text-overflow: ellipsis;
|
|
9235
9267
|
}
|
|
@@ -9244,12 +9276,12 @@ iframe {
|
|
|
9244
9276
|
}
|
|
9245
9277
|
.mode:not(.last):not(.selected) {
|
|
9246
9278
|
border-right: none;
|
|
9247
|
-
padding-right:
|
|
9279
|
+
padding-right: calc(var(--padding-x) + var(--border-width));
|
|
9248
9280
|
/* account for the missing border, so that text does not jump */
|
|
9249
9281
|
}
|
|
9250
9282
|
.mode.after-selected {
|
|
9251
9283
|
border-left: none;
|
|
9252
|
-
padding-left:
|
|
9284
|
+
padding-left: calc(var(--padding-x) + var(--border-width));
|
|
9253
9285
|
/* account for the missing border, so that text does not jump */
|
|
9254
9286
|
}
|
|
9255
9287
|
.mode.selected {
|
|
@@ -9274,21 +9306,12 @@ iframe {
|
|
|
9274
9306
|
.mode > .icon.with-label {
|
|
9275
9307
|
margin-right: 8px;
|
|
9276
9308
|
}
|
|
9277
|
-
.mode-selector.alternative {
|
|
9278
|
-
border: 3px solid transparent;
|
|
9279
|
-
}
|
|
9280
9309
|
.mode-selector.alternative > .mode {
|
|
9310
|
+
--border-width: 0px;
|
|
9281
9311
|
color: #666666;
|
|
9282
|
-
border: none;
|
|
9283
9312
|
background-color: transparent;
|
|
9284
9313
|
border-radius: 3px;
|
|
9285
9314
|
}
|
|
9286
|
-
.mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9287
|
-
padding-right: 12px;
|
|
9288
|
-
}
|
|
9289
|
-
.mode-selector.alternative > .mode.after-selected {
|
|
9290
|
-
padding-left: 12px;
|
|
9291
|
-
}
|
|
9292
9315
|
.mode-selector.alternative > .mode:hover {
|
|
9293
9316
|
background-color: rgba(0, 0, 0, 0.05);
|
|
9294
9317
|
}
|
|
@@ -9315,24 +9338,11 @@ iframe {
|
|
|
9315
9338
|
cursor: default;
|
|
9316
9339
|
}
|
|
9317
9340
|
.dense .mode-selector > .mode {
|
|
9318
|
-
padding:
|
|
9319
|
-
|
|
9320
|
-
.dense .mode-selector > .mode:not(.last):not(.selected) {
|
|
9321
|
-
padding-right: 6px;
|
|
9322
|
-
/* account for the missing border, so that text does not jump */
|
|
9323
|
-
}
|
|
9324
|
-
.dense .mode-selector > .mode.after-selected {
|
|
9325
|
-
padding-left: 6px;
|
|
9326
|
-
/* account for the missing border, so that text does not jump */
|
|
9327
|
-
}
|
|
9328
|
-
.dense .mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9329
|
-
padding-right: 5px;
|
|
9330
|
-
}
|
|
9331
|
-
.dense .mode-selector.alternative > .mode.after-selected {
|
|
9332
|
-
padding-left: 5px;
|
|
9341
|
+
--padding-x: 5px;
|
|
9342
|
+
--padding-y: 3px;
|
|
9333
9343
|
}
|
|
9334
9344
|
/*
|
|
9335
|
-
* Copyright (c) 2010-
|
|
9345
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9336
9346
|
* All rights reserved. This program and the accompanying materials
|
|
9337
9347
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9338
9348
|
* which accompanies this distribution, and is available at
|
|
@@ -9354,6 +9364,7 @@ iframe {
|
|
|
9354
9364
|
.mode-selector.alternative {
|
|
9355
9365
|
background-color: rgba(0, 0, 0, 0.08);
|
|
9356
9366
|
border-radius: 3px;
|
|
9367
|
+
border: 3px solid transparent;
|
|
9357
9368
|
}
|
|
9358
9369
|
.mode-selector.alternative:not(.disabled) > .mode-slider {
|
|
9359
9370
|
display: block;
|
|
@@ -9791,7 +9802,8 @@ iframe {
|
|
|
9791
9802
|
cursor: pointer;
|
|
9792
9803
|
}
|
|
9793
9804
|
.planner-mode {
|
|
9794
|
-
|
|
9805
|
+
padding: 0 8px;
|
|
9806
|
+
min-width: 65px;
|
|
9795
9807
|
text-align: center;
|
|
9796
9808
|
border-top: 1px solid rgba(0, 0, 0, 0.23);
|
|
9797
9809
|
border-bottom: 1px solid rgba(0, 0, 0, 0.23);
|
|
@@ -10312,6 +10324,10 @@ iframe {
|
|
|
10312
10324
|
--scroll-shadow-size: 5px;
|
|
10313
10325
|
--scroll-shadow-blur: 5px;
|
|
10314
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;
|
|
10315
10331
|
}
|
|
10316
10332
|
.scroll-shadow.top {
|
|
10317
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;
|
|
@@ -11673,7 +11689,7 @@ Try these to switch between fonts:
|
|
|
11673
11689
|
/* scoutIcons: custom icons */
|
|
11674
11690
|
/* scoutIcons: awesome icons */
|
|
11675
11691
|
/*
|
|
11676
|
-
* Copyright (c) 2010-
|
|
11692
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11677
11693
|
* All rights reserved. This program and the accompanying materials
|
|
11678
11694
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11679
11695
|
* which accompanies this distribution, and is available at
|
|
@@ -12052,6 +12068,13 @@ Try these to switch between fonts:
|
|
|
12052
12068
|
.table.table-row-check > .table-data > .table-row.selected::after {
|
|
12053
12069
|
display: none;
|
|
12054
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
|
+
}
|
|
12055
12078
|
.table.table-row-check > .table-data > .table-row.checked,
|
|
12056
12079
|
.table.table-row-check > .table-data > .table-row.checked.selected {
|
|
12057
12080
|
/* Mark checked rows with a background color */
|
|
@@ -12061,6 +12084,16 @@ Try these to switch between fonts:
|
|
|
12061
12084
|
.table.table-row-check > .table-data > .table-row.checked.selected > .table-cell {
|
|
12062
12085
|
color: #fff;
|
|
12063
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
|
+
}
|
|
12064
12097
|
.table.table-row-check.keyboard-navigation:focus > .table-data > .table-row.selected,
|
|
12065
12098
|
.table.table-row-check.keyboard-navigation.focused > .table-data > .table-row.selected {
|
|
12066
12099
|
background-color: rgba(0, 0, 0, 0.08);
|
|
@@ -12963,6 +12996,7 @@ Try these to switch between fonts:
|
|
|
12963
12996
|
overflow: hidden;
|
|
12964
12997
|
text-overflow: ellipsis;
|
|
12965
12998
|
white-space: nowrap;
|
|
12999
|
+
margin-top: 1px;
|
|
12966
13000
|
}
|
|
12967
13001
|
.table-header-item-state {
|
|
12968
13002
|
position: absolute;
|
|
@@ -13081,6 +13115,9 @@ Try these to switch between fonts:
|
|
|
13081
13115
|
vertical-align: top;
|
|
13082
13116
|
padding: 16px;
|
|
13083
13117
|
}
|
|
13118
|
+
.table-header-menu-actions > .table-header-menu-group > .table-header-menu-group-text {
|
|
13119
|
+
width: calc(100% + 12px);
|
|
13120
|
+
}
|
|
13084
13121
|
.table-header-menu-filters {
|
|
13085
13122
|
display: inline-block;
|
|
13086
13123
|
vertical-align: top;
|
|
@@ -13252,11 +13289,11 @@ Try these to switch between fonts:
|
|
|
13252
13289
|
}
|
|
13253
13290
|
.table-header-menu-filter-table.table-row-check > .table-data {
|
|
13254
13291
|
margin-top: 0;
|
|
13255
|
-
padding: 3px
|
|
13292
|
+
padding: 3px;
|
|
13256
13293
|
}
|
|
13257
13294
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row {
|
|
13258
13295
|
border-radius: 3px;
|
|
13259
|
-
margin-bottom:
|
|
13296
|
+
margin-bottom: 2px;
|
|
13260
13297
|
}
|
|
13261
13298
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row.last {
|
|
13262
13299
|
margin-bottom: 0;
|
|
@@ -14113,13 +14150,12 @@ Try these to switch between fonts:
|
|
|
14113
14150
|
}
|
|
14114
14151
|
.tree-node.lazy > .tree-node-control::before {
|
|
14115
14152
|
font-family: Arial, sans-serif;
|
|
14116
|
-
font-size: 13px;
|
|
14117
14153
|
content: '+';
|
|
14118
14154
|
/* Move to left because '+' sign is not as wide as 'arrow-down' */
|
|
14119
14155
|
margin-left: -2px;
|
|
14120
14156
|
}
|
|
14121
14157
|
.tree-node.expanded > .tree-node-control::before {
|
|
14122
|
-
/* 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. */
|
|
14123
14159
|
/* See https://bugzilla.mozilla.org/show_bug.cgi?id=739176 */
|
|
14124
14160
|
-webkit-transform: rotate(89.99deg);
|
|
14125
14161
|
-ms-transform: rotate(89.99deg);
|
|
@@ -14675,6 +14711,11 @@ Try these to switch between fonts:
|
|
|
14675
14711
|
.tile.dashboard.inverted > .form-field.has-error > .status::before {
|
|
14676
14712
|
color: #FF5555;
|
|
14677
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
|
+
}
|
|
14678
14719
|
.tile.dashboard.inverted > .form-field .scrollbar-thumb-handle {
|
|
14679
14720
|
background-color: rgba(218, 218, 218, 0.3);
|
|
14680
14721
|
}
|
|
@@ -14746,26 +14787,26 @@ Try these to switch between fonts:
|
|
|
14746
14787
|
}
|
|
14747
14788
|
.tile.dashboard.selected.inverted {
|
|
14748
14789
|
--tile-background-color: #367ab8;
|
|
14749
|
-
box-shadow: 0 0 0 2px #
|
|
14790
|
+
box-shadow: 0 0 0 2px #367ab8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14750
14791
|
}
|
|
14751
14792
|
.tile.dashboard.selected.color-alternative {
|
|
14752
14793
|
box-shadow: 0 0 0 2px #4C4C4C, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14753
14794
|
}
|
|
14754
14795
|
.tile.dashboard.selected.inverted.color-alternative {
|
|
14755
14796
|
--tile-background-color: #555555;
|
|
14756
|
-
box-shadow: 0 0 0 2px #
|
|
14797
|
+
box-shadow: 0 0 0 2px #555555, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14757
14798
|
}
|
|
14758
14799
|
.dimmed-background .tile.dashboard.selected {
|
|
14759
14800
|
box-shadow: 0 0 0 2px #1561A7, 0px 6px 13px 0px rgba(0, 0, 0, 0.05);
|
|
14760
14801
|
}
|
|
14761
14802
|
.dimmed-background .tile.dashboard.selected.inverted {
|
|
14762
|
-
box-shadow: 0 0 0 2px #
|
|
14803
|
+
box-shadow: 0 0 0 2px #367ab8, 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
|
|
14763
14804
|
}
|
|
14764
14805
|
.dimmed-background .tile.dashboard.selected.color-alternative {
|
|
14765
14806
|
box-shadow: 0 0 0 2px #4C4C4C, 0px 6px 13px 0px rgba(0, 0, 0, 0.05);
|
|
14766
14807
|
}
|
|
14767
14808
|
.dimmed-background .tile.dashboard.selected.inverted.color-alternative {
|
|
14768
|
-
box-shadow: 0 0 0 2px #
|
|
14809
|
+
box-shadow: 0 0 0 2px #555555, 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
|
|
14769
14810
|
}
|
|
14770
14811
|
/*
|
|
14771
14812
|
Mixing that can be used to reduce the horizontal padding.
|
|
@@ -15269,7 +15310,7 @@ Try these to switch between fonts:
|
|
|
15269
15310
|
/* Improve Chrome's auto-fill style by overriding the forced yellow background and black text color. */
|
|
15270
15311
|
/* (Requires some hacks, see http://webagility.com/posts/remove-forced-yellow-input-background-in-chrome) */
|
|
15271
15312
|
border-top-width: 0;
|
|
15272
|
-
padding-top:
|
|
15313
|
+
padding-top: 3px;
|
|
15273
15314
|
-webkit-box-shadow: inset 0 0 0 1000px #fff;
|
|
15274
15315
|
-webkit-text-fill-color: #000 !important;
|
|
15275
15316
|
/* NOSONAR (!important is okay here) */
|
|
@@ -15329,6 +15370,20 @@ Try these to switch between fonts:
|
|
|
15329
15370
|
-o-animation: nop 0.05s;
|
|
15330
15371
|
animation: nop 0.05s;
|
|
15331
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
|
+
}
|
|
15332
15387
|
/*
|
|
15333
15388
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
15334
15389
|
* All rights reserved. This program and the accompanying materials
|