@eclipse-scout/core 22.0.0-beta.1 → 22.0.0

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.
Files changed (60) hide show
  1. package/dist/eclipse-scout-core-theme-dark.css +135 -46
  2. package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
  3. package/dist/eclipse-scout-core-theme.css +134 -45
  4. package/dist/eclipse-scout-core-theme.css.map +1 -1
  5. package/dist/eclipse-scout-core.js +744 -640
  6. package/dist/eclipse-scout-core.js.map +1 -1
  7. package/package.json +2 -2
  8. package/src/App.js +86 -17
  9. package/src/RemoteApp.js +1 -0
  10. package/src/desktop/Desktop.js +3 -3
  11. package/src/desktop/desktoptab/DesktopTab.less +14 -0
  12. package/src/desktop/notification/DesktopNotification.js +33 -8
  13. package/src/desktop/outline/Outline.js +2 -32
  14. package/src/desktop/outline/Outline.less +14 -6
  15. package/src/desktop/outline/OutlineViewButton.js +1 -0
  16. package/src/desktop/viewbutton/ViewButtonBox.js +2 -2
  17. package/src/filechooser/FileChooser.js +2 -1
  18. package/src/form/Form.js +11 -3
  19. package/src/form/fields/groupbox/GroupBox.less +3 -1
  20. package/src/glasspane/DeferredGlassPaneTarget.js +2 -2
  21. package/src/index.js +2 -1
  22. package/src/login/LoginBox.less +8 -1
  23. package/src/main.less +1 -1
  24. package/src/menu/ComboMenu.js +22 -17
  25. package/src/menu/ComboMenu.less +71 -26
  26. package/src/menu/ContextMenuPopup.js +3 -2
  27. package/src/menu/ContextMenuPopup.less +1 -1
  28. package/src/menu/EllipsisMenu.js +4 -0
  29. package/src/menu/Menu.js +24 -11
  30. package/src/menu/menubar/MenuBar.js +2 -19
  31. package/src/menu/menubar/MenuBarBox.js +3 -34
  32. package/src/menu/menubar/MenuBarLayout.js +6 -19
  33. package/src/menu/menubox/MenuBoxLayout.js +1 -1
  34. package/src/menu/menus.js +4 -10
  35. package/src/messagebox/MessageBox.js +3 -22
  36. package/src/modeselector/ModeSelectorLayout.js +11 -6
  37. package/src/notification/Notification.js +15 -14
  38. package/src/popup/Popup.js +3 -20
  39. package/src/session/BusyIndicator.js +2 -1
  40. package/src/session/Session.js +4 -63
  41. package/src/status/Status.js +2 -1
  42. package/src/style/colors-dark.less +3 -1
  43. package/src/style/colors.less +2 -0
  44. package/src/style/sizes.less +5 -3
  45. package/src/table/Table.js +7 -3
  46. package/src/table/Table.less +13 -3
  47. package/src/table/columns/Column.js +4 -0
  48. package/src/tile/fields/htmlfield/TileHtmlField.js +28 -0
  49. package/src/tooltip/Tooltip.less +7 -5
  50. package/src/tree/LazyNodeFilter.js +24 -15
  51. package/src/tree/Tree.js +112 -143
  52. package/src/tree/Tree.less +2 -2
  53. package/src/tree/TreeLayout.js +1 -1
  54. package/src/tree/TreeNode.js +2 -2
  55. package/src/util/Device.js +6 -2
  56. package/src/widget/FilterSupport.js +6 -4
  57. package/src/widget/FilterSupport.less +38 -9
  58. package/src/widget/LoadingSupport.js +1 -1
  59. package/src/widget/Widget.js +41 -36
  60. package/src/widget/WidgetSupport.js +1 -1
@@ -449,10 +449,10 @@ button::-moz-focus-inner {
449
449
  pointer-events: none;
450
450
  }
451
451
  .application-loading-root.fadeout {
452
- -webkit-animation: application-loading-fade-out 250ms linear 1;
453
- -moz-animation: application-loading-fade-out 250ms linear 1;
454
- -o-animation: application-loading-fade-out 250ms linear 1;
455
- animation: application-loading-fade-out 250ms linear 1;
452
+ -webkit-animation: application-loading-fade-out 250ms linear 1 forwards;
453
+ -moz-animation: application-loading-fade-out 250ms linear 1 forwards;
454
+ -o-animation: application-loading-fade-out 250ms linear 1 forwards;
455
+ animation: application-loading-fade-out 250ms linear 1 forwards;
456
456
  }
457
457
  @-webkit-keyframes application-loading-fade-out {
458
458
  to {
@@ -2902,6 +2902,15 @@ iframe {
2902
2902
  .desktop-tab.simple-tab:active > .title-line > .title {
2903
2903
  color: inherit;
2904
2904
  }
2905
+ .desktop-tab.simple-tab.glasspane-parent {
2906
+ pointer-events: unset;
2907
+ }
2908
+ .desktop-tab.simple-tab.glasspane-parent:not(.disabled):not(.selected):hover {
2909
+ background-color: rgba(0, 0, 0, 0.1);
2910
+ }
2911
+ .desktop-tab.simple-tab.glasspane-parent:not(.selected):hover > .closer {
2912
+ display: none;
2913
+ }
2905
2914
  .desktop-tab.simple-tab.disabled {
2906
2915
  background-color: transparent;
2907
2916
  }
@@ -3542,10 +3551,6 @@ iframe {
3542
3551
  * Contributors:
3543
3552
  * BSI Business Systems Integration AG - initial API and implementation
3544
3553
  */
3545
- .outline.tree.in-background > .tree-data > .tree-node.selected {
3546
- background-color: #7E8588;
3547
- color: #0C1013;
3548
- }
3549
3554
  .outline.tree > .tree-data {
3550
3555
  padding-top: 16px;
3551
3556
  }
@@ -3569,7 +3574,7 @@ iframe {
3569
3574
  }
3570
3575
  .outline.tree > .tree-data > .tree-node.group,
3571
3576
  .outline.tree > .tree-data > .animation-wrapper > .tree-node.group {
3572
- background-color: #252e31;
3577
+ background-color: #283438;
3573
3578
  }
3574
3579
  .outline.tree > .tree-data > .tree-node > .text,
3575
3580
  .outline.tree > .tree-data > .animation-wrapper > .tree-node > .text {
@@ -3622,6 +3627,15 @@ iframe {
3622
3627
  .outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .font-icon {
3623
3628
  color: #283438;
3624
3629
  }
3630
+ .outline.tree.in-background > .tree-data > .tree-node.group,
3631
+ .outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.group {
3632
+ background-color: #252e31;
3633
+ }
3634
+ .outline.tree.in-background > .tree-data > .tree-node.selected,
3635
+ .outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.selected {
3636
+ background-color: #7E8588;
3637
+ color: #0C1013;
3638
+ }
3625
3639
  .outline-title {
3626
3640
  cursor: pointer;
3627
3641
  color: #71b0e8;
@@ -5919,7 +5933,7 @@ iframe {
5919
5933
  height: 100%;
5920
5934
  }
5921
5935
  /*
5922
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
5936
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5923
5937
  * All rights reserved. This program and the accompanying materials
5924
5938
  * are made available under the terms of the Eclipse Public License v1.0
5925
5939
  * which accompanies this distribution, and is available at
@@ -6053,6 +6067,7 @@ iframe {
6053
6067
  display: inline-block;
6054
6068
  vertical-align: middle;
6055
6069
  padding: 12px 0 12px 0;
6070
+ max-width: 100%;
6056
6071
  }
6057
6072
  .group-box.has-sub-label > .group-box-header > .title {
6058
6073
  padding-bottom: 7px;
@@ -6068,6 +6083,8 @@ iframe {
6068
6083
  font-size: 11px;
6069
6084
  letter-spacing: 0.2px;
6070
6085
  color: #A7ACAD;
6086
+ overflow: hidden;
6087
+ text-overflow: ellipsis;
6071
6088
  }
6072
6089
  .group-box-header > .status {
6073
6090
  position: absolute;
@@ -8508,10 +8525,10 @@ iframe {
8508
8525
  .combo-menu:hover {
8509
8526
  background-color: transparent;
8510
8527
  }
8511
- .combo-menu > .menu-item:not(:first-child) {
8528
+ .combo-menu > .menu-item:not(.first) {
8512
8529
  margin-left: 3px;
8513
8530
  }
8514
- .combo-menu > .menu-item:not(:first-child)::before {
8531
+ .combo-menu > .menu-item:not(.first)::before {
8515
8532
  content: '';
8516
8533
  position: absolute;
8517
8534
  left: -1px;
@@ -8520,8 +8537,13 @@ iframe {
8520
8537
  width: 1px;
8521
8538
  background-color: rgba(255, 255, 255, 0.12);
8522
8539
  }
8523
- .combo-menu:not(.disabled).child-selected > .menu-item:not(:first-child)::before,
8524
- .combo-menu:not(.disabled):hover > .menu-item:not(:first-child)::before {
8540
+ .combo-menu > .menu-item:focus::before {
8541
+ display: none;
8542
+ }
8543
+ .combo-menu > .menu-item:not(.disabled):hover::before,
8544
+ .combo-menu > .menu-item.selected::before,
8545
+ .combo-menu > .menu-item:not(.disabled):hover ~ .menu-item::before,
8546
+ .combo-menu > .menu-item.selected ~ .menu-item::before {
8525
8547
  display: none;
8526
8548
  }
8527
8549
  .combo-menu.menu-button {
@@ -8529,13 +8551,17 @@ iframe {
8529
8551
  }
8530
8552
  .combo-menu.menu-button > .menu-item {
8531
8553
  border: 1px solid #71b0e8;
8554
+ flex-grow: 1;
8555
+ }
8556
+ .combo-menu.menu-button > .menu-item.menu-icononly:not(.first.last) {
8557
+ flex-grow: 0;
8532
8558
  }
8533
- .combo-menu.menu-button > .menu-item:not(:last-child) {
8559
+ .combo-menu.menu-button > .menu-item:not(.last) {
8534
8560
  border-top-right-radius: 0;
8535
8561
  border-bottom-right-radius: 0;
8536
8562
  border-right: 0;
8537
8563
  }
8538
- .combo-menu.menu-button > .menu-item:not(:first-child) {
8564
+ .combo-menu.menu-button > .menu-item:not(.first) {
8539
8565
  border-top-left-radius: 0;
8540
8566
  border-bottom-left-radius: 0;
8541
8567
  border-left: 0;
@@ -8544,6 +8570,9 @@ iframe {
8544
8570
  .disabled.combo-menu.menu-button > .menu-item {
8545
8571
  border-color: #7E8588;
8546
8572
  }
8573
+ .combo-menu.menu-button > .menu-item:focus {
8574
+ z-index: 1;
8575
+ }
8547
8576
  .combo-menu.menu-button.default > .menu-item {
8548
8577
  background-color: #71b0e8;
8549
8578
  /* border is necessary to align the text with text from buttons with a real border */
@@ -8570,20 +8599,47 @@ iframe {
8570
8599
  box-shadow: 0 0 0 3px #1b64a5;
8571
8600
  border-color: #4598e1;
8572
8601
  }
8602
+ .combo-menu.menu-button.default > .menu-item::before {
8603
+ background-color: #0C1013;
8604
+ }
8573
8605
  .combo-menu.menu-button.default > .menu-item.selected {
8574
8606
  background-color: #227fd1;
8575
8607
  border-color: #227fd1;
8576
8608
  }
8609
+ .combo-menu.menu-button.default > .menu-item.disabled {
8610
+ color: rgba(255, 255, 255, 0.4);
8611
+ }
8612
+ .combo-menu.menu-button.default > .menu-item.disabled:hover,
8613
+ .combo-menu.menu-button.default > .menu-item.disabled.active,
8614
+ .combo-menu.menu-button.default > .menu-item.disabled:active,
8615
+ .combo-menu.menu-button.default > .menu-item.disabled.selected {
8616
+ background-color: #71b0e8;
8617
+ border-color: #71b0e8;
8618
+ }
8577
8619
  .context-menu > .combo-menu {
8578
8620
  padding: 0;
8579
8621
  }
8580
8622
  .context-menu > .combo-menu > .menu-item {
8581
8623
  color: #E9EBEB;
8582
- padding-top: 8px;
8583
- padding-bottom: 8px;
8624
+ padding: 8px 16px 8px 16px;
8625
+ flex-grow: 1;
8626
+ justify-content: start;
8627
+ border-radius: 0;
8584
8628
  }
8585
- .context-menu > .combo-menu > .menu-item:first-child {
8586
- margin-left: 6px;
8629
+ .context-menu > .combo-menu > .menu-item > .font-icon {
8630
+ color: #A7ACAD;
8631
+ }
8632
+ .context-menu > .combo-menu > .menu-item.menu-textandicon > .icon {
8633
+ margin-right: 14px;
8634
+ }
8635
+ .context-menu > .combo-menu > .menu-item.menu-icononly:not(.first.last) {
8636
+ flex-grow: 0;
8637
+ }
8638
+ .context-menu > .combo-menu > .menu-item.disabled {
8639
+ color: #7E8588;
8640
+ }
8641
+ .context-menu > .combo-menu > .menu-item.disabled > .font-icon {
8642
+ color: #7E8588;
8587
8643
  }
8588
8644
  /*
8589
8645
  * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
@@ -11816,7 +11872,7 @@ Try these to switch between fonts:
11816
11872
  background-color: rgba(52, 65, 70, 0.15);
11817
11873
  }
11818
11874
  /*
11819
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
11875
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
11820
11876
  * All rights reserved. This program and the accompanying materials
11821
11877
  * are made available under the terms of the Eclipse Public License v1.0
11822
11878
  * which accompanies this distribution, and is available at
@@ -11941,7 +11997,7 @@ Try these to switch between fonts:
11941
11997
  border-color: #181C1F;
11942
11998
  }
11943
11999
  /*
11944
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
12000
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
11945
12001
  * All rights reserved. This program and the accompanying materials
11946
12002
  * are made available under the terms of the Eclipse Public License v1.0
11947
12003
  * which accompanies this distribution, and is available at
@@ -12033,18 +12089,24 @@ Try these to switch between fonts:
12033
12089
  background-color: inherit;
12034
12090
  }
12035
12091
  .table > .filter-field {
12036
- --filter-field-max-bottom: calc(50% - (30px + var(--controls-height)) / 2);
12092
+ --filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
12037
12093
  }
12038
12094
  .table > .filter-field:not(.focused).empty {
12039
12095
  --filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
12040
12096
  }
12041
12097
  .has-menubar.menubar-bottom.table > .filter-field {
12042
- --filter-field-max-bottom: calc(50% - (30px + var(--controls-height)) / 2);
12098
+ --filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
12043
12099
  bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
12044
12100
  }
12045
12101
  .has-menubar.menubar-bottom.table > .filter-field:not(.focused).empty {
12046
12102
  --filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
12047
12103
  }
12104
+ .has-cell-editor-popup.table > .filter-field {
12105
+ opacity: 0;
12106
+ visibility: hidden;
12107
+ --filter-field-opacity-transition-delay: 0s;
12108
+ --filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
12109
+ }
12048
12110
  .table-data {
12049
12111
  position: relative;
12050
12112
  overflow: hidden;
@@ -13713,10 +13775,6 @@ Try these to switch between fonts:
13713
13775
  max-width: 300px;
13714
13776
  white-space: normal;
13715
13777
  }
13716
- .tooltip.has-menus {
13717
- padding-top: 6px;
13718
- padding-bottom: 6px;
13719
- }
13720
13778
  .tooltip-content {
13721
13779
  padding: 8px 12px;
13722
13780
  position: relative;
@@ -13732,6 +13790,7 @@ Try these to switch between fonts:
13732
13790
  font-weight: bold;
13733
13791
  padding-left: 16px;
13734
13792
  padding-right: 16px;
13793
+ padding-top: 14px;
13735
13794
  }
13736
13795
  .tooltip-content .small {
13737
13796
  font-size: 11px;
@@ -13743,6 +13802,11 @@ Try these to switch between fonts:
13743
13802
  }
13744
13803
  .tooltip-menus {
13745
13804
  position: relative;
13805
+ background-color: inherit;
13806
+ padding-bottom: 6px;
13807
+ }
13808
+ .no-text > .tooltip-menus {
13809
+ padding-top: 6px;
13746
13810
  }
13747
13811
  .tooltip-menus > .menu-item {
13748
13812
  display: flex;
@@ -13831,7 +13895,7 @@ Try these to switch between fonts:
13831
13895
  position: relative;
13832
13896
  }
13833
13897
  /*
13834
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
13898
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
13835
13899
  * All rights reserved. This program and the accompanying materials
13836
13900
  * are made available under the terms of the Eclipse Public License v1.0
13837
13901
  * which accompanies this distribution, and is available at
@@ -13860,7 +13924,7 @@ Try these to switch between fonts:
13860
13924
  border-color: #71b0e8;
13861
13925
  }
13862
13926
  .tree > .filter-field {
13863
- --filter-field-max-bottom: calc(50% - (30px + var(--menubar-height)) / 2);
13927
+ --filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--menubar-height)) / 2);
13864
13928
  bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
13865
13929
  }
13866
13930
  .tree > .filter-field:not(.focused).empty {
@@ -15008,7 +15072,7 @@ Try these to switch between fonts:
15008
15072
  color: #BFC2C3;
15009
15073
  }
15010
15074
  /*
15011
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
15075
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
15012
15076
  * All rights reserved. This program and the accompanying materials
15013
15077
  * are made available under the terms of the Eclipse Public License v1.0
15014
15078
  * which accompanies this distribution, and is available at
@@ -15019,11 +15083,12 @@ Try these to switch between fonts:
15019
15083
  */
15020
15084
  .filter-field {
15021
15085
  position: absolute;
15022
- --filter-field-bottom: 6px;
15023
- --filter-field-max-bottom: calc(50% - 30px / 2);
15086
+ --filter-field-height: 30px;
15087
+ --filter-field-bottom: 8px;
15088
+ --filter-field-max-bottom: calc(50% - var(--filter-field-height) / 2);
15024
15089
  bottom: min(var(--filter-field-bottom), var(--filter-field-max-bottom));
15025
- right: 6px;
15026
- height: 30px;
15090
+ right: 8px;
15091
+ height: var(--filter-field-height);
15027
15092
  width: 190px;
15028
15093
  min-width: 75px;
15029
15094
  max-width: 60%;
@@ -15034,10 +15099,16 @@ Try these to switch between fonts:
15034
15099
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.2);
15035
15100
  background-color: var(--filter-field-background-color);
15036
15101
  opacity: 1;
15037
- 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;
15102
+ visibility: visible;
15103
+ --filter-field-opacity-transition-delay: 100ms;
15104
+ --filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
15105
+ 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);
15038
15106
  }
15039
15107
  :not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
15040
15108
  opacity: 0;
15109
+ visibility: hidden;
15110
+ --filter-field-opacity-transition-delay: 0s;
15111
+ --filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
15041
15112
  }
15042
15113
  .filter-field::before {
15043
15114
  content: '\E02A';
@@ -15051,7 +15122,7 @@ Try these to switch between fonts:
15051
15122
  justify-content: center;
15052
15123
  align-items: center;
15053
15124
  position: absolute;
15054
- bottom: 3px;
15125
+ bottom: calc((var(--filter-field-height) - 24px) / 2);
15055
15126
  right: 3px;
15056
15127
  height: 24px;
15057
15128
  width: 24px;
@@ -15087,19 +15158,19 @@ Try these to switch between fonts:
15087
15158
  top: calc(50% - 22px / 2) !important;
15088
15159
  }
15089
15160
  .filter-field:not(.focused).empty {
15090
- --filter-field-bottom: 6px + ((30px - 24px) / 2);
15161
+ --filter-field-bottom: 8px + ((var(--filter-field-height) - 24px) / 2);
15091
15162
  --filter-field-max-bottom: calc(50% - 24px / 2);
15092
- right: 9px;
15163
+ right: 11px;
15093
15164
  height: 24px;
15094
15165
  width: 24px;
15095
15166
  min-width: 24px;
15096
15167
  max-width: 24px;
15097
15168
  box-shadow: none;
15098
- background-color: var(--filter-field-background-color);
15169
+ background-color: var(--filter-field-transparent-80-background-color);
15099
15170
  }
15100
15171
  @supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
15101
15172
  .filter-field:not(.focused).empty {
15102
- background-color: var(--filter-field-transparent-background-color);
15173
+ background-color: var(--filter-field-transparent-50-background-color);
15103
15174
  -webkit-backdrop-filter: blur(2px);
15104
15175
  backdrop-filter: blur(2px);
15105
15176
  }
@@ -15124,10 +15195,11 @@ Try these to switch between fonts:
15124
15195
  }
15125
15196
  .filter-field-container {
15126
15197
  position: sticky;
15127
- --filter-field-container-top: calc(100% - 6px);
15128
- --filter-field-container-min-top: calc(50% + 30px / 2);
15198
+ --filter-field-height: 30px;
15199
+ --filter-field-container-top: calc(100% - 8px);
15200
+ --filter-field-container-min-top: calc(50% + var(--filter-field-height) / 2);
15129
15201
  top: max(var(--filter-field-container-top), var(--filter-field-container-min-top));
15130
- left: calc(100% - 6px);
15202
+ left: calc(100% - 8px);
15131
15203
  width: 0;
15132
15204
  height: 0;
15133
15205
  overflow: visible;
@@ -15136,6 +15208,9 @@ Try these to switch between fonts:
15136
15208
  }
15137
15209
  .filter-field-container:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
15138
15210
  opacity: 1;
15211
+ visibility: visible;
15212
+ --filter-field-opacity-transition-delay: 100ms;
15213
+ --filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
15139
15214
  }
15140
15215
  .filter-field-container > .filter-field {
15141
15216
  bottom: 0;
@@ -15144,9 +15219,12 @@ Try these to switch between fonts:
15144
15219
  }
15145
15220
  :not(:hover) > .filter-field-container > .filter-field:not(.focused):not(.focus-inside-widget).empty {
15146
15221
  opacity: 0;
15222
+ visibility: hidden;
15223
+ --filter-field-opacity-transition-delay: 0s;
15224
+ --filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
15147
15225
  }
15148
15226
  .filter-field-container > .filter-field:not(.focused).empty {
15149
- bottom: 3px;
15227
+ bottom: calc((var(--filter-field-height) - 24px) / 2);
15150
15228
  right: 3px;
15151
15229
  }
15152
15230
  @supports not (bottom: min(50%, 42px)) {
@@ -15156,8 +15234,12 @@ Try these to switch between fonts:
15156
15234
  /* NOSONAR (!important is okay here) */
15157
15235
  }
15158
15236
  }
15237
+ .dense .filter-field,
15238
+ .dense .filter-field-container {
15239
+ --filter-field-height: 24px;
15240
+ }
15159
15241
  /*
15160
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
15242
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
15161
15243
  * All rights reserved. This program and the accompanying materials
15162
15244
  * are made available under the terms of the Eclipse Public License v1.0
15163
15245
  * which accompanies this distribution, and is available at
@@ -15231,6 +15313,13 @@ Try these to switch between fonts:
15231
15313
  height: 18px;
15232
15314
  vertical-align: middle;
15233
15315
  }
15316
+ .login-body > .box-background-elements.box-background-elements-fadeout,
15317
+ .logout-body > .box-background-elements.box-background-elements-fadeout {
15318
+ -webkit-animation: nop 0.05s;
15319
+ -moz-animation: nop 0.05s;
15320
+ -o-animation: nop 0.05s;
15321
+ animation: nop 0.05s;
15322
+ }
15234
15323
  /*
15235
15324
  * Copyright (c) 2010-2020 BSI Business Systems Integration AG.
15236
15325
  * All rights reserved. This program and the accompanying materials