@eclipse-scout/core 22.0.0-beta.5 → 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.
@@ -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
  }
@@ -5924,7 +5933,7 @@ iframe {
5924
5933
  height: 100%;
5925
5934
  }
5926
5935
  /*
5927
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
5936
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
5928
5937
  * All rights reserved. This program and the accompanying materials
5929
5938
  * are made available under the terms of the Eclipse Public License v1.0
5930
5939
  * which accompanies this distribution, and is available at
@@ -6058,6 +6067,7 @@ iframe {
6058
6067
  display: inline-block;
6059
6068
  vertical-align: middle;
6060
6069
  padding: 12px 0 12px 0;
6070
+ max-width: 100%;
6061
6071
  }
6062
6072
  .group-box.has-sub-label > .group-box-header > .title {
6063
6073
  padding-bottom: 7px;
@@ -6073,6 +6083,8 @@ iframe {
6073
6083
  font-size: 11px;
6074
6084
  letter-spacing: 0.2px;
6075
6085
  color: #A7ACAD;
6086
+ overflow: hidden;
6087
+ text-overflow: ellipsis;
6076
6088
  }
6077
6089
  .group-box-header > .status {
6078
6090
  position: absolute;
@@ -11860,7 +11872,7 @@ Try these to switch between fonts:
11860
11872
  background-color: rgba(52, 65, 70, 0.15);
11861
11873
  }
11862
11874
  /*
11863
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
11875
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
11864
11876
  * All rights reserved. This program and the accompanying materials
11865
11877
  * are made available under the terms of the Eclipse Public License v1.0
11866
11878
  * which accompanies this distribution, and is available at
@@ -11985,7 +11997,7 @@ Try these to switch between fonts:
11985
11997
  border-color: #181C1F;
11986
11998
  }
11987
11999
  /*
11988
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
12000
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
11989
12001
  * All rights reserved. This program and the accompanying materials
11990
12002
  * are made available under the terms of the Eclipse Public License v1.0
11991
12003
  * which accompanies this distribution, and is available at
@@ -12077,18 +12089,24 @@ Try these to switch between fonts:
12077
12089
  background-color: inherit;
12078
12090
  }
12079
12091
  .table > .filter-field {
12080
- --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);
12081
12093
  }
12082
12094
  .table > .filter-field:not(.focused).empty {
12083
12095
  --filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
12084
12096
  }
12085
12097
  .has-menubar.menubar-bottom.table > .filter-field {
12086
- --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);
12087
12099
  bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
12088
12100
  }
12089
12101
  .has-menubar.menubar-bottom.table > .filter-field:not(.focused).empty {
12090
12102
  --filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
12091
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
+ }
12092
12110
  .table-data {
12093
12111
  position: relative;
12094
12112
  overflow: hidden;
@@ -13757,10 +13775,6 @@ Try these to switch between fonts:
13757
13775
  max-width: 300px;
13758
13776
  white-space: normal;
13759
13777
  }
13760
- .tooltip.has-menus {
13761
- padding-top: 6px;
13762
- padding-bottom: 6px;
13763
- }
13764
13778
  .tooltip-content {
13765
13779
  padding: 8px 12px;
13766
13780
  position: relative;
@@ -13776,6 +13790,7 @@ Try these to switch between fonts:
13776
13790
  font-weight: bold;
13777
13791
  padding-left: 16px;
13778
13792
  padding-right: 16px;
13793
+ padding-top: 14px;
13779
13794
  }
13780
13795
  .tooltip-content .small {
13781
13796
  font-size: 11px;
@@ -13787,6 +13802,11 @@ Try these to switch between fonts:
13787
13802
  }
13788
13803
  .tooltip-menus {
13789
13804
  position: relative;
13805
+ background-color: inherit;
13806
+ padding-bottom: 6px;
13807
+ }
13808
+ .no-text > .tooltip-menus {
13809
+ padding-top: 6px;
13790
13810
  }
13791
13811
  .tooltip-menus > .menu-item {
13792
13812
  display: flex;
@@ -13875,7 +13895,7 @@ Try these to switch between fonts:
13875
13895
  position: relative;
13876
13896
  }
13877
13897
  /*
13878
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
13898
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
13879
13899
  * All rights reserved. This program and the accompanying materials
13880
13900
  * are made available under the terms of the Eclipse Public License v1.0
13881
13901
  * which accompanies this distribution, and is available at
@@ -13904,7 +13924,7 @@ Try these to switch between fonts:
13904
13924
  border-color: #71b0e8;
13905
13925
  }
13906
13926
  .tree > .filter-field {
13907
- --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);
13908
13928
  bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
13909
13929
  }
13910
13930
  .tree > .filter-field:not(.focused).empty {
@@ -15052,7 +15072,7 @@ Try these to switch between fonts:
15052
15072
  color: #BFC2C3;
15053
15073
  }
15054
15074
  /*
15055
- * Copyright (c) 2010-2021 BSI Business Systems Integration AG.
15075
+ * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
15056
15076
  * All rights reserved. This program and the accompanying materials
15057
15077
  * are made available under the terms of the Eclipse Public License v1.0
15058
15078
  * which accompanies this distribution, and is available at
@@ -15063,11 +15083,12 @@ Try these to switch between fonts:
15063
15083
  */
15064
15084
  .filter-field {
15065
15085
  position: absolute;
15066
- --filter-field-bottom: 6px;
15067
- --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);
15068
15089
  bottom: min(var(--filter-field-bottom), var(--filter-field-max-bottom));
15069
- right: 6px;
15070
- height: 30px;
15090
+ right: 8px;
15091
+ height: var(--filter-field-height);
15071
15092
  width: 190px;
15072
15093
  min-width: 75px;
15073
15094
  max-width: 60%;
@@ -15078,10 +15099,16 @@ Try these to switch between fonts:
15078
15099
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.2);
15079
15100
  background-color: var(--filter-field-background-color);
15080
15101
  opacity: 1;
15081
- 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);
15082
15106
  }
15083
15107
  :not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
15084
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));
15085
15112
  }
15086
15113
  .filter-field::before {
15087
15114
  content: '\E02A';
@@ -15095,7 +15122,7 @@ Try these to switch between fonts:
15095
15122
  justify-content: center;
15096
15123
  align-items: center;
15097
15124
  position: absolute;
15098
- bottom: 3px;
15125
+ bottom: calc((var(--filter-field-height) - 24px) / 2);
15099
15126
  right: 3px;
15100
15127
  height: 24px;
15101
15128
  width: 24px;
@@ -15131,19 +15158,19 @@ Try these to switch between fonts:
15131
15158
  top: calc(50% - 22px / 2) !important;
15132
15159
  }
15133
15160
  .filter-field:not(.focused).empty {
15134
- --filter-field-bottom: 6px + ((30px - 24px) / 2);
15161
+ --filter-field-bottom: 8px + ((var(--filter-field-height) - 24px) / 2);
15135
15162
  --filter-field-max-bottom: calc(50% - 24px / 2);
15136
- right: 9px;
15163
+ right: 11px;
15137
15164
  height: 24px;
15138
15165
  width: 24px;
15139
15166
  min-width: 24px;
15140
15167
  max-width: 24px;
15141
15168
  box-shadow: none;
15142
- background-color: var(--filter-field-background-color);
15169
+ background-color: var(--filter-field-transparent-80-background-color);
15143
15170
  }
15144
15171
  @supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
15145
15172
  .filter-field:not(.focused).empty {
15146
- background-color: var(--filter-field-transparent-background-color);
15173
+ background-color: var(--filter-field-transparent-50-background-color);
15147
15174
  -webkit-backdrop-filter: blur(2px);
15148
15175
  backdrop-filter: blur(2px);
15149
15176
  }
@@ -15168,10 +15195,11 @@ Try these to switch between fonts:
15168
15195
  }
15169
15196
  .filter-field-container {
15170
15197
  position: sticky;
15171
- --filter-field-container-top: calc(100% - 6px);
15172
- --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);
15173
15201
  top: max(var(--filter-field-container-top), var(--filter-field-container-min-top));
15174
- left: calc(100% - 6px);
15202
+ left: calc(100% - 8px);
15175
15203
  width: 0;
15176
15204
  height: 0;
15177
15205
  overflow: visible;
@@ -15180,6 +15208,9 @@ Try these to switch between fonts:
15180
15208
  }
15181
15209
  .filter-field-container:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
15182
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);
15183
15214
  }
15184
15215
  .filter-field-container > .filter-field {
15185
15216
  bottom: 0;
@@ -15188,9 +15219,12 @@ Try these to switch between fonts:
15188
15219
  }
15189
15220
  :not(:hover) > .filter-field-container > .filter-field:not(.focused):not(.focus-inside-widget).empty {
15190
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));
15191
15225
  }
15192
15226
  .filter-field-container > .filter-field:not(.focused).empty {
15193
- bottom: 3px;
15227
+ bottom: calc((var(--filter-field-height) - 24px) / 2);
15194
15228
  right: 3px;
15195
15229
  }
15196
15230
  @supports not (bottom: min(50%, 42px)) {
@@ -15200,6 +15234,10 @@ Try these to switch between fonts:
15200
15234
  /* NOSONAR (!important is okay here) */
15201
15235
  }
15202
15236
  }
15237
+ .dense .filter-field,
15238
+ .dense .filter-field-container {
15239
+ --filter-field-height: 24px;
15240
+ }
15203
15241
  /*
15204
15242
  * Copyright (c) 2010-2022 BSI Business Systems Integration AG.
15205
15243
  * All rights reserved. This program and the accompanying materials