@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.
- package/dist/eclipse-scout-core-theme-dark.css +135 -46
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +134 -45
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +744 -640
- package/dist/eclipse-scout-core.js.map +1 -1
- package/package.json +2 -2
- package/src/App.js +86 -17
- package/src/RemoteApp.js +1 -0
- package/src/desktop/Desktop.js +3 -3
- package/src/desktop/desktoptab/DesktopTab.less +14 -0
- package/src/desktop/notification/DesktopNotification.js +33 -8
- package/src/desktop/outline/Outline.js +2 -32
- package/src/desktop/outline/Outline.less +14 -6
- package/src/desktop/outline/OutlineViewButton.js +1 -0
- package/src/desktop/viewbutton/ViewButtonBox.js +2 -2
- package/src/filechooser/FileChooser.js +2 -1
- package/src/form/Form.js +11 -3
- package/src/form/fields/groupbox/GroupBox.less +3 -1
- package/src/glasspane/DeferredGlassPaneTarget.js +2 -2
- package/src/index.js +2 -1
- package/src/login/LoginBox.less +8 -1
- package/src/main.less +1 -1
- package/src/menu/ComboMenu.js +22 -17
- package/src/menu/ComboMenu.less +71 -26
- package/src/menu/ContextMenuPopup.js +3 -2
- package/src/menu/ContextMenuPopup.less +1 -1
- package/src/menu/EllipsisMenu.js +4 -0
- package/src/menu/Menu.js +24 -11
- package/src/menu/menubar/MenuBar.js +2 -19
- package/src/menu/menubar/MenuBarBox.js +3 -34
- package/src/menu/menubar/MenuBarLayout.js +6 -19
- package/src/menu/menubox/MenuBoxLayout.js +1 -1
- package/src/menu/menus.js +4 -10
- package/src/messagebox/MessageBox.js +3 -22
- package/src/modeselector/ModeSelectorLayout.js +11 -6
- package/src/notification/Notification.js +15 -14
- package/src/popup/Popup.js +3 -20
- package/src/session/BusyIndicator.js +2 -1
- package/src/session/Session.js +4 -63
- package/src/status/Status.js +2 -1
- package/src/style/colors-dark.less +3 -1
- package/src/style/colors.less +2 -0
- package/src/style/sizes.less +5 -3
- package/src/table/Table.js +7 -3
- package/src/table/Table.less +13 -3
- package/src/table/columns/Column.js +4 -0
- package/src/tile/fields/htmlfield/TileHtmlField.js +28 -0
- package/src/tooltip/Tooltip.less +7 -5
- package/src/tree/LazyNodeFilter.js +24 -15
- package/src/tree/Tree.js +112 -143
- package/src/tree/Tree.less +2 -2
- package/src/tree/TreeLayout.js +1 -1
- package/src/tree/TreeNode.js +2 -2
- package/src/util/Device.js +6 -2
- package/src/widget/FilterSupport.js +6 -4
- package/src/widget/FilterSupport.less +38 -9
- package/src/widget/LoadingSupport.js +1 -1
- package/src/widget/Widget.js +41 -36
- package/src/widget/WidgetSupport.js +1 -1
|
@@ -439,10 +439,10 @@ button::-moz-focus-inner {
|
|
|
439
439
|
pointer-events: none;
|
|
440
440
|
}
|
|
441
441
|
.application-loading-root.fadeout {
|
|
442
|
-
-webkit-animation: application-loading-fade-out 250ms linear 1;
|
|
443
|
-
-moz-animation: application-loading-fade-out 250ms linear 1;
|
|
444
|
-
-o-animation: application-loading-fade-out 250ms linear 1;
|
|
445
|
-
animation: application-loading-fade-out 250ms linear 1;
|
|
442
|
+
-webkit-animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
443
|
+
-moz-animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
444
|
+
-o-animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
445
|
+
animation: application-loading-fade-out 250ms linear 1 forwards;
|
|
446
446
|
}
|
|
447
447
|
@-webkit-keyframes application-loading-fade-out {
|
|
448
448
|
to {
|
|
@@ -2892,6 +2892,15 @@ iframe {
|
|
|
2892
2892
|
.desktop-tab.simple-tab:active > .title-line > .title {
|
|
2893
2893
|
color: inherit;
|
|
2894
2894
|
}
|
|
2895
|
+
.desktop-tab.simple-tab.glasspane-parent {
|
|
2896
|
+
pointer-events: unset;
|
|
2897
|
+
}
|
|
2898
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.disabled):not(.selected):hover {
|
|
2899
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
2900
|
+
}
|
|
2901
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.selected):hover > .closer {
|
|
2902
|
+
display: none;
|
|
2903
|
+
}
|
|
2895
2904
|
.desktop-tab.simple-tab.disabled {
|
|
2896
2905
|
background-color: transparent;
|
|
2897
2906
|
}
|
|
@@ -3532,10 +3541,6 @@ iframe {
|
|
|
3532
3541
|
* Contributors:
|
|
3533
3542
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
3534
3543
|
*/
|
|
3535
|
-
.outline.tree.in-background > .tree-data > .tree-node.selected {
|
|
3536
|
-
background-color: #808080;
|
|
3537
|
-
color: #fff;
|
|
3538
|
-
}
|
|
3539
3544
|
.outline.tree > .tree-data {
|
|
3540
3545
|
padding-top: 16px;
|
|
3541
3546
|
}
|
|
@@ -3612,6 +3617,15 @@ iframe {
|
|
|
3612
3617
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .font-icon {
|
|
3613
3618
|
color: rgba(255, 255, 255, 0.7);
|
|
3614
3619
|
}
|
|
3620
|
+
.outline.tree.in-background > .tree-data > .tree-node.group,
|
|
3621
|
+
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.group {
|
|
3622
|
+
background-color: #e8e8e8;
|
|
3623
|
+
}
|
|
3624
|
+
.outline.tree.in-background > .tree-data > .tree-node.selected,
|
|
3625
|
+
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3626
|
+
background-color: #808080;
|
|
3627
|
+
color: #fff;
|
|
3628
|
+
}
|
|
3615
3629
|
.outline-title {
|
|
3616
3630
|
cursor: pointer;
|
|
3617
3631
|
color: #1561A7;
|
|
@@ -5909,7 +5923,7 @@ iframe {
|
|
|
5909
5923
|
height: 100%;
|
|
5910
5924
|
}
|
|
5911
5925
|
/*
|
|
5912
|
-
* Copyright (c) 2010-
|
|
5926
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
5913
5927
|
* All rights reserved. This program and the accompanying materials
|
|
5914
5928
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
5915
5929
|
* which accompanies this distribution, and is available at
|
|
@@ -6043,6 +6057,7 @@ iframe {
|
|
|
6043
6057
|
display: inline-block;
|
|
6044
6058
|
vertical-align: middle;
|
|
6045
6059
|
padding: 12px 0 12px 0;
|
|
6060
|
+
max-width: 100%;
|
|
6046
6061
|
}
|
|
6047
6062
|
.group-box.has-sub-label > .group-box-header > .title {
|
|
6048
6063
|
padding-bottom: 7px;
|
|
@@ -6058,6 +6073,8 @@ iframe {
|
|
|
6058
6073
|
font-size: 11px;
|
|
6059
6074
|
letter-spacing: 0.2px;
|
|
6060
6075
|
color: #666666;
|
|
6076
|
+
overflow: hidden;
|
|
6077
|
+
text-overflow: ellipsis;
|
|
6061
6078
|
}
|
|
6062
6079
|
.group-box-header > .status {
|
|
6063
6080
|
position: absolute;
|
|
@@ -8498,10 +8515,10 @@ iframe {
|
|
|
8498
8515
|
.combo-menu:hover {
|
|
8499
8516
|
background-color: transparent;
|
|
8500
8517
|
}
|
|
8501
|
-
.combo-menu > .menu-item:not(
|
|
8518
|
+
.combo-menu > .menu-item:not(.first) {
|
|
8502
8519
|
margin-left: 3px;
|
|
8503
8520
|
}
|
|
8504
|
-
.combo-menu > .menu-item:not(
|
|
8521
|
+
.combo-menu > .menu-item:not(.first)::before {
|
|
8505
8522
|
content: '';
|
|
8506
8523
|
position: absolute;
|
|
8507
8524
|
left: -1px;
|
|
@@ -8510,8 +8527,13 @@ iframe {
|
|
|
8510
8527
|
width: 1px;
|
|
8511
8528
|
background-color: #DADADA;
|
|
8512
8529
|
}
|
|
8513
|
-
.combo-menu
|
|
8514
|
-
|
|
8530
|
+
.combo-menu > .menu-item:focus::before {
|
|
8531
|
+
display: none;
|
|
8532
|
+
}
|
|
8533
|
+
.combo-menu > .menu-item:not(.disabled):hover::before,
|
|
8534
|
+
.combo-menu > .menu-item.selected::before,
|
|
8535
|
+
.combo-menu > .menu-item:not(.disabled):hover ~ .menu-item::before,
|
|
8536
|
+
.combo-menu > .menu-item.selected ~ .menu-item::before {
|
|
8515
8537
|
display: none;
|
|
8516
8538
|
}
|
|
8517
8539
|
.combo-menu.menu-button {
|
|
@@ -8519,13 +8541,17 @@ iframe {
|
|
|
8519
8541
|
}
|
|
8520
8542
|
.combo-menu.menu-button > .menu-item {
|
|
8521
8543
|
border: 1px solid #1561A7;
|
|
8544
|
+
flex-grow: 1;
|
|
8545
|
+
}
|
|
8546
|
+
.combo-menu.menu-button > .menu-item.menu-icononly:not(.first.last) {
|
|
8547
|
+
flex-grow: 0;
|
|
8522
8548
|
}
|
|
8523
|
-
.combo-menu.menu-button > .menu-item:not(
|
|
8549
|
+
.combo-menu.menu-button > .menu-item:not(.last) {
|
|
8524
8550
|
border-top-right-radius: 0;
|
|
8525
8551
|
border-bottom-right-radius: 0;
|
|
8526
8552
|
border-right: 0;
|
|
8527
8553
|
}
|
|
8528
|
-
.combo-menu.menu-button > .menu-item:not(
|
|
8554
|
+
.combo-menu.menu-button > .menu-item:not(.first) {
|
|
8529
8555
|
border-top-left-radius: 0;
|
|
8530
8556
|
border-bottom-left-radius: 0;
|
|
8531
8557
|
border-left: 0;
|
|
@@ -8534,6 +8560,9 @@ iframe {
|
|
|
8534
8560
|
.disabled.combo-menu.menu-button > .menu-item {
|
|
8535
8561
|
border-color: #808080;
|
|
8536
8562
|
}
|
|
8563
|
+
.combo-menu.menu-button > .menu-item:focus {
|
|
8564
|
+
z-index: 1;
|
|
8565
|
+
}
|
|
8537
8566
|
.combo-menu.menu-button.default > .menu-item {
|
|
8538
8567
|
background-color: #1561A7;
|
|
8539
8568
|
/* border is necessary to align the text with text from buttons with a real border */
|
|
@@ -8560,20 +8589,47 @@ iframe {
|
|
|
8560
8589
|
box-shadow: 0 0 0 3px #93c5f4;
|
|
8561
8590
|
border-color: #64adf0;
|
|
8562
8591
|
}
|
|
8592
|
+
.combo-menu.menu-button.default > .menu-item::before {
|
|
8593
|
+
background-color: #DADADA;
|
|
8594
|
+
}
|
|
8563
8595
|
.combo-menu.menu-button.default > .menu-item.selected {
|
|
8564
8596
|
background-color: #012c53;
|
|
8565
8597
|
border-color: #012c53;
|
|
8566
8598
|
}
|
|
8599
|
+
.combo-menu.menu-button.default > .menu-item.disabled {
|
|
8600
|
+
color: rgba(255, 255, 255, 0.4);
|
|
8601
|
+
}
|
|
8602
|
+
.combo-menu.menu-button.default > .menu-item.disabled:hover,
|
|
8603
|
+
.combo-menu.menu-button.default > .menu-item.disabled.active,
|
|
8604
|
+
.combo-menu.menu-button.default > .menu-item.disabled:active,
|
|
8605
|
+
.combo-menu.menu-button.default > .menu-item.disabled.selected {
|
|
8606
|
+
background-color: #1561A7;
|
|
8607
|
+
border-color: #1561A7;
|
|
8608
|
+
}
|
|
8567
8609
|
.context-menu > .combo-menu {
|
|
8568
8610
|
padding: 0;
|
|
8569
8611
|
}
|
|
8570
8612
|
.context-menu > .combo-menu > .menu-item {
|
|
8571
8613
|
color: #000;
|
|
8572
|
-
padding
|
|
8573
|
-
|
|
8614
|
+
padding: 8px 16px 8px 16px;
|
|
8615
|
+
flex-grow: 1;
|
|
8616
|
+
justify-content: start;
|
|
8617
|
+
border-radius: 0;
|
|
8574
8618
|
}
|
|
8575
|
-
.context-menu > .combo-menu > .menu-item
|
|
8576
|
-
|
|
8619
|
+
.context-menu > .combo-menu > .menu-item > .font-icon {
|
|
8620
|
+
color: #1561A7;
|
|
8621
|
+
}
|
|
8622
|
+
.context-menu > .combo-menu > .menu-item.menu-textandicon > .icon {
|
|
8623
|
+
margin-right: 14px;
|
|
8624
|
+
}
|
|
8625
|
+
.context-menu > .combo-menu > .menu-item.menu-icononly:not(.first.last) {
|
|
8626
|
+
flex-grow: 0;
|
|
8627
|
+
}
|
|
8628
|
+
.context-menu > .combo-menu > .menu-item.disabled {
|
|
8629
|
+
color: #808080;
|
|
8630
|
+
}
|
|
8631
|
+
.context-menu > .combo-menu > .menu-item.disabled > .font-icon {
|
|
8632
|
+
color: #808080;
|
|
8577
8633
|
}
|
|
8578
8634
|
/*
|
|
8579
8635
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -11806,7 +11862,7 @@ Try these to switch between fonts:
|
|
|
11806
11862
|
background-color: rgba(255, 255, 255, 0.15);
|
|
11807
11863
|
}
|
|
11808
11864
|
/*
|
|
11809
|
-
* Copyright (c) 2010-
|
|
11865
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11810
11866
|
* All rights reserved. This program and the accompanying materials
|
|
11811
11867
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11812
11868
|
* which accompanies this distribution, and is available at
|
|
@@ -11931,7 +11987,7 @@ Try these to switch between fonts:
|
|
|
11931
11987
|
border-color: #fff;
|
|
11932
11988
|
}
|
|
11933
11989
|
/*
|
|
11934
|
-
* Copyright (c) 2010-
|
|
11990
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11935
11991
|
* All rights reserved. This program and the accompanying materials
|
|
11936
11992
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11937
11993
|
* which accompanies this distribution, and is available at
|
|
@@ -12023,18 +12079,24 @@ Try these to switch between fonts:
|
|
|
12023
12079
|
background-color: inherit;
|
|
12024
12080
|
}
|
|
12025
12081
|
.table > .filter-field {
|
|
12026
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12082
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12027
12083
|
}
|
|
12028
12084
|
.table > .filter-field:not(.focused).empty {
|
|
12029
12085
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12030
12086
|
}
|
|
12031
12087
|
.has-menubar.menubar-bottom.table > .filter-field {
|
|
12032
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12088
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12033
12089
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
12034
12090
|
}
|
|
12035
12091
|
.has-menubar.menubar-bottom.table > .filter-field:not(.focused).empty {
|
|
12036
12092
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12037
12093
|
}
|
|
12094
|
+
.has-cell-editor-popup.table > .filter-field {
|
|
12095
|
+
opacity: 0;
|
|
12096
|
+
visibility: hidden;
|
|
12097
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
12098
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
12099
|
+
}
|
|
12038
12100
|
.table-data {
|
|
12039
12101
|
position: relative;
|
|
12040
12102
|
overflow: hidden;
|
|
@@ -13703,10 +13765,6 @@ Try these to switch between fonts:
|
|
|
13703
13765
|
max-width: 300px;
|
|
13704
13766
|
white-space: normal;
|
|
13705
13767
|
}
|
|
13706
|
-
.tooltip.has-menus {
|
|
13707
|
-
padding-top: 6px;
|
|
13708
|
-
padding-bottom: 6px;
|
|
13709
|
-
}
|
|
13710
13768
|
.tooltip-content {
|
|
13711
13769
|
padding: 8px 12px;
|
|
13712
13770
|
position: relative;
|
|
@@ -13722,6 +13780,7 @@ Try these to switch between fonts:
|
|
|
13722
13780
|
font-weight: bold;
|
|
13723
13781
|
padding-left: 16px;
|
|
13724
13782
|
padding-right: 16px;
|
|
13783
|
+
padding-top: 14px;
|
|
13725
13784
|
}
|
|
13726
13785
|
.tooltip-content .small {
|
|
13727
13786
|
font-size: 11px;
|
|
@@ -13733,6 +13792,11 @@ Try these to switch between fonts:
|
|
|
13733
13792
|
}
|
|
13734
13793
|
.tooltip-menus {
|
|
13735
13794
|
position: relative;
|
|
13795
|
+
background-color: inherit;
|
|
13796
|
+
padding-bottom: 6px;
|
|
13797
|
+
}
|
|
13798
|
+
.no-text > .tooltip-menus {
|
|
13799
|
+
padding-top: 6px;
|
|
13736
13800
|
}
|
|
13737
13801
|
.tooltip-menus > .menu-item {
|
|
13738
13802
|
display: flex;
|
|
@@ -13821,7 +13885,7 @@ Try these to switch between fonts:
|
|
|
13821
13885
|
position: relative;
|
|
13822
13886
|
}
|
|
13823
13887
|
/*
|
|
13824
|
-
* Copyright (c) 2010-
|
|
13888
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
13825
13889
|
* All rights reserved. This program and the accompanying materials
|
|
13826
13890
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
13827
13891
|
* which accompanies this distribution, and is available at
|
|
@@ -13850,7 +13914,7 @@ Try these to switch between fonts:
|
|
|
13850
13914
|
border-color: #1561A7;
|
|
13851
13915
|
}
|
|
13852
13916
|
.tree > .filter-field {
|
|
13853
|
-
--filter-field-max-bottom: calc(50% - (
|
|
13917
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--menubar-height)) / 2);
|
|
13854
13918
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
13855
13919
|
}
|
|
13856
13920
|
.tree > .filter-field:not(.focused).empty {
|
|
@@ -14998,7 +15062,7 @@ Try these to switch between fonts:
|
|
|
14998
15062
|
color: #fff;
|
|
14999
15063
|
}
|
|
15000
15064
|
/*
|
|
15001
|
-
* Copyright (c) 2010-
|
|
15065
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15002
15066
|
* All rights reserved. This program and the accompanying materials
|
|
15003
15067
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15004
15068
|
* which accompanies this distribution, and is available at
|
|
@@ -15009,11 +15073,12 @@ Try these to switch between fonts:
|
|
|
15009
15073
|
*/
|
|
15010
15074
|
.filter-field {
|
|
15011
15075
|
position: absolute;
|
|
15012
|
-
--filter-field-
|
|
15013
|
-
--filter-field-
|
|
15076
|
+
--filter-field-height: 30px;
|
|
15077
|
+
--filter-field-bottom: 8px;
|
|
15078
|
+
--filter-field-max-bottom: calc(50% - var(--filter-field-height) / 2);
|
|
15014
15079
|
bottom: min(var(--filter-field-bottom), var(--filter-field-max-bottom));
|
|
15015
|
-
right:
|
|
15016
|
-
height:
|
|
15080
|
+
right: 8px;
|
|
15081
|
+
height: var(--filter-field-height);
|
|
15017
15082
|
width: 190px;
|
|
15018
15083
|
min-width: 75px;
|
|
15019
15084
|
max-width: 60%;
|
|
@@ -15024,10 +15089,16 @@ Try these to switch between fonts:
|
|
|
15024
15089
|
box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.2);
|
|
15025
15090
|
background-color: var(--filter-field-background-color);
|
|
15026
15091
|
opacity: 1;
|
|
15027
|
-
|
|
15092
|
+
visibility: visible;
|
|
15093
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15094
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15095
|
+
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);
|
|
15028
15096
|
}
|
|
15029
15097
|
:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15030
15098
|
opacity: 0;
|
|
15099
|
+
visibility: hidden;
|
|
15100
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15101
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15031
15102
|
}
|
|
15032
15103
|
.filter-field::before {
|
|
15033
15104
|
content: '\E02A';
|
|
@@ -15041,7 +15112,7 @@ Try these to switch between fonts:
|
|
|
15041
15112
|
justify-content: center;
|
|
15042
15113
|
align-items: center;
|
|
15043
15114
|
position: absolute;
|
|
15044
|
-
bottom:
|
|
15115
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15045
15116
|
right: 3px;
|
|
15046
15117
|
height: 24px;
|
|
15047
15118
|
width: 24px;
|
|
@@ -15077,19 +15148,19 @@ Try these to switch between fonts:
|
|
|
15077
15148
|
top: calc(50% - 22px / 2) !important;
|
|
15078
15149
|
}
|
|
15079
15150
|
.filter-field:not(.focused).empty {
|
|
15080
|
-
--filter-field-bottom:
|
|
15151
|
+
--filter-field-bottom: 8px + ((var(--filter-field-height) - 24px) / 2);
|
|
15081
15152
|
--filter-field-max-bottom: calc(50% - 24px / 2);
|
|
15082
|
-
right:
|
|
15153
|
+
right: 11px;
|
|
15083
15154
|
height: 24px;
|
|
15084
15155
|
width: 24px;
|
|
15085
15156
|
min-width: 24px;
|
|
15086
15157
|
max-width: 24px;
|
|
15087
15158
|
box-shadow: none;
|
|
15088
|
-
background-color: var(--filter-field-background-color);
|
|
15159
|
+
background-color: var(--filter-field-transparent-80-background-color);
|
|
15089
15160
|
}
|
|
15090
15161
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
15091
15162
|
.filter-field:not(.focused).empty {
|
|
15092
|
-
background-color: var(--filter-field-transparent-background-color);
|
|
15163
|
+
background-color: var(--filter-field-transparent-50-background-color);
|
|
15093
15164
|
-webkit-backdrop-filter: blur(2px);
|
|
15094
15165
|
backdrop-filter: blur(2px);
|
|
15095
15166
|
}
|
|
@@ -15114,10 +15185,11 @@ Try these to switch between fonts:
|
|
|
15114
15185
|
}
|
|
15115
15186
|
.filter-field-container {
|
|
15116
15187
|
position: sticky;
|
|
15117
|
-
--filter-field-
|
|
15118
|
-
--filter-field-container-
|
|
15188
|
+
--filter-field-height: 30px;
|
|
15189
|
+
--filter-field-container-top: calc(100% - 8px);
|
|
15190
|
+
--filter-field-container-min-top: calc(50% + var(--filter-field-height) / 2);
|
|
15119
15191
|
top: max(var(--filter-field-container-top), var(--filter-field-container-min-top));
|
|
15120
|
-
left: calc(100% -
|
|
15192
|
+
left: calc(100% - 8px);
|
|
15121
15193
|
width: 0;
|
|
15122
15194
|
height: 0;
|
|
15123
15195
|
overflow: visible;
|
|
@@ -15126,6 +15198,9 @@ Try these to switch between fonts:
|
|
|
15126
15198
|
}
|
|
15127
15199
|
.filter-field-container:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15128
15200
|
opacity: 1;
|
|
15201
|
+
visibility: visible;
|
|
15202
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15203
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15129
15204
|
}
|
|
15130
15205
|
.filter-field-container > .filter-field {
|
|
15131
15206
|
bottom: 0;
|
|
@@ -15134,9 +15209,12 @@ Try these to switch between fonts:
|
|
|
15134
15209
|
}
|
|
15135
15210
|
:not(:hover) > .filter-field-container > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15136
15211
|
opacity: 0;
|
|
15212
|
+
visibility: hidden;
|
|
15213
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15214
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15137
15215
|
}
|
|
15138
15216
|
.filter-field-container > .filter-field:not(.focused).empty {
|
|
15139
|
-
bottom:
|
|
15217
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15140
15218
|
right: 3px;
|
|
15141
15219
|
}
|
|
15142
15220
|
@supports not (bottom: min(50%, 42px)) {
|
|
@@ -15146,8 +15224,12 @@ Try these to switch between fonts:
|
|
|
15146
15224
|
/* NOSONAR (!important is okay here) */
|
|
15147
15225
|
}
|
|
15148
15226
|
}
|
|
15227
|
+
.dense .filter-field,
|
|
15228
|
+
.dense .filter-field-container {
|
|
15229
|
+
--filter-field-height: 24px;
|
|
15230
|
+
}
|
|
15149
15231
|
/*
|
|
15150
|
-
* Copyright (c) 2010-
|
|
15232
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15151
15233
|
* All rights reserved. This program and the accompanying materials
|
|
15152
15234
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15153
15235
|
* which accompanies this distribution, and is available at
|
|
@@ -15221,6 +15303,13 @@ Try these to switch between fonts:
|
|
|
15221
15303
|
height: 18px;
|
|
15222
15304
|
vertical-align: middle;
|
|
15223
15305
|
}
|
|
15306
|
+
.login-body > .box-background-elements.box-background-elements-fadeout,
|
|
15307
|
+
.logout-body > .box-background-elements.box-background-elements-fadeout {
|
|
15308
|
+
-webkit-animation: nop 0.05s;
|
|
15309
|
+
-moz-animation: nop 0.05s;
|
|
15310
|
+
-o-animation: nop 0.05s;
|
|
15311
|
+
animation: nop 0.05s;
|
|
15312
|
+
}
|
|
15224
15313
|
/*
|
|
15225
15314
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
15226
15315
|
* All rights reserved. This program and the accompanying materials
|