@eclipse-scout/core 22.0.0-beta.5 → 22.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js +2 -0
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js.map +1 -0
- package/dist/eclipse-scout-core-theme-6b2fef56e9e49231a49c.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark-d2bb274dd42f132bfca0.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark.css +511 -399
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +247 -135
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +865 -646
- package/dist/eclipse-scout-core.js.map +1 -1
- package/dist/file-list +7 -0
- package/dist/locales.json +47126 -0
- package/dist/texts.json +1153 -0
- package/package.json +2 -2
- package/src/App.js +17 -10
- package/src/action/Button.less +1 -0
- package/src/box/Box.less +2 -2
- package/src/breadcrumbbar/BreadcrumbBarLayout.js +2 -2
- package/src/calendar/Calendar.js +40 -58
- package/src/calendar/Calendar.less +10 -10
- package/src/calendar/CalendarLayout.js +3 -1
- package/src/datepicker/DatePicker.less +1 -0
- package/src/desktop/desktoptab/DesktopTab.less +19 -2
- package/src/desktop/desktoptab/DesktopTabArea.less +7 -3
- package/src/desktop/desktoptab/DesktopTabAreaLayout.js +1 -1
- package/src/desktop/navigation/DesktopNavigation.less +4 -0
- package/src/desktop/notification/DesktopNotification.js +11 -4
- package/src/desktop/notification/DesktopNotification.less +5 -3
- package/src/desktop/outline/Outline.js +0 -30
- package/src/desktop/outline/Outline.less +4 -4
- package/src/desktop/viewbutton/ViewButton.less +18 -9
- package/src/desktop/viewbutton/ViewButtonBox.js +2 -2
- package/src/desktop/viewbutton/ViewMenuTab.less +3 -2
- package/src/filechooser/FileChooser.less +1 -1
- package/src/form/Form.less +1 -0
- package/src/form/fields/LookupBox.js +2 -1
- package/src/form/fields/breadcrumbbarfield/BreadcrumbBarField.less +14 -0
- package/src/form/fields/groupbox/GroupBox.js +13 -9
- package/src/form/fields/groupbox/GroupBox.less +4 -1
- package/src/form/fields/htmlfield/HtmlField.less +0 -1
- package/src/form/fields/listbox/ListBox.js +8 -3
- package/src/form/fields/tabbox/TabAreaLayout.js +63 -66
- package/src/form/fields/tabbox/TabBox.js +4 -7
- package/src/form/fields/tabbox/TabBox.less +2 -1
- package/src/form/fields/tabbox/TabBoxHeaderLayout.js +5 -5
- package/src/glasspane/GlassPane.js +3 -3
- package/src/group/Group.less +1 -1
- package/src/index.js +2 -1
- package/src/index.less +1 -0
- package/src/jquery/jquery-scout.js +5 -4
- package/src/login/LoginBox.less +9 -7
- package/src/menu/ContextMenuPopup.less +9 -2
- package/src/menu/Menu.less +1 -0
- package/src/messagebox/MessageBox.less +3 -3
- package/src/modeselector/Mode.less +15 -37
- package/src/modeselector/ModeSelector.js +1 -1
- package/src/modeselector/ModeSelector.less +2 -1
- package/src/planner/PlannerHeader.less +2 -1
- package/src/popup/Popup.js +24 -8
- package/src/popup/PopupLayout.js +2 -8
- package/src/scrollbar/Scrollbar.less +8 -1
- package/src/scrollbar/scrollbars.js +26 -4
- package/src/session/Session.js +4 -1
- package/src/style/colors-dark.less +25 -11
- package/src/style/colors.less +17 -3
- package/src/style/fonts.less +5 -0
- package/src/style/mixins.less +21 -14
- package/src/style/sizes-dark.less +4 -1
- package/src/style/sizes.less +7 -7
- package/src/table/Table.js +45 -33
- package/src/table/Table.less +49 -16
- package/src/table/TableHeader.js +10 -8
- package/src/table/TableHeader.less +1 -0
- package/src/table/TableHeaderMenu.js +3 -1
- package/src/table/TableHeaderMenu.less +7 -2
- package/src/table/columns/BooleanColumn.js +2 -2
- package/src/table/columns/Column.js +3 -3
- package/src/table/columns/ColumnOptimalWidthMeasurer.js +1 -1
- package/src/table/editor/CellEditorPopup.js +8 -1
- package/src/tagbar/TagBarOverflowPopupLayout.js +1 -1
- package/src/tile/TileGrid.js +1 -1
- package/src/tile/TileGridLayout.js +2 -2
- package/src/tile/accordion/TileAccordion.js +16 -1
- package/src/tile/fields/FormFieldTile.less +18 -11
- package/src/tile/fields/button/ButtonTile.js +1 -1
- package/src/tile/fields/htmlfield/TileHtmlField.js +28 -0
- package/src/tooltip/Tooltip.less +7 -5
- package/src/tree/CompactTree.less +1 -1
- package/src/tree/LazyNodeFilter.js +26 -15
- package/src/tree/Tree.js +114 -143
- package/src/tree/Tree.less +3 -5
- package/src/tree/TreeLayout.js +1 -1
- package/src/tree/TreeNode.js +2 -2
- package/src/util/Device.js +6 -2
- package/src/util/arrays.js +24 -2
- package/src/util/dragAndDrop.js +5 -4
- package/src/util/events.js +1 -1
- package/src/util/objects.js +4 -1
- package/src/widget/FilterSupport.js +7 -5
- package/src/widget/FilterSupport.less +38 -9
- package/src/widget/Widget.js +24 -7
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
33
33
|
*/
|
|
34
34
|
body {
|
|
35
|
-
background-color: #
|
|
35
|
+
background-color: #0E1316;
|
|
36
36
|
font-family: Arial, sans-serif;
|
|
37
37
|
font-weight: normal;
|
|
38
38
|
font-size: 13px;
|
|
@@ -64,11 +64,11 @@ body.ios {
|
|
|
64
64
|
/* -moz variant is required, see https://bugzilla.mozilla.org/show_bug.cgi?id=509958 */
|
|
65
65
|
::-moz-selection {
|
|
66
66
|
background: #71b0e8;
|
|
67
|
-
color: #
|
|
67
|
+
color: #0E1316;
|
|
68
68
|
}
|
|
69
69
|
::selection {
|
|
70
70
|
background: #71b0e8;
|
|
71
|
-
color: #
|
|
71
|
+
color: #0E1316;
|
|
72
72
|
}
|
|
73
73
|
::-webkit-input-placeholder {
|
|
74
74
|
color: #7E8588;
|
|
@@ -111,11 +111,11 @@ body.ios {
|
|
|
111
111
|
}
|
|
112
112
|
.disabled::-moz-selection {
|
|
113
113
|
background: #7E8588;
|
|
114
|
-
color: #
|
|
114
|
+
color: #0E1316;
|
|
115
115
|
}
|
|
116
116
|
.disabled::selection {
|
|
117
117
|
background: #7E8588;
|
|
118
|
-
color: #
|
|
118
|
+
color: #0E1316;
|
|
119
119
|
}
|
|
120
120
|
.disabled::-webkit-input-placeholder {
|
|
121
121
|
/* Fade a little to make it distinguishable from real text. Don't use opacity here because it affects background as well (IE). */
|
|
@@ -205,7 +205,7 @@ input.has-error,
|
|
|
205
205
|
textarea.has-error,
|
|
206
206
|
.input-field.has-error {
|
|
207
207
|
border-color: #FF8888;
|
|
208
|
-
background-color: #
|
|
208
|
+
background-color: #252F34;
|
|
209
209
|
}
|
|
210
210
|
input.has-error:focus,
|
|
211
211
|
textarea.has-error:focus,
|
|
@@ -233,7 +233,7 @@ input[type="password"].alternative {
|
|
|
233
233
|
padding-bottom: 1px;
|
|
234
234
|
/* Compensate padding-bottom to align input text with label on the left */
|
|
235
235
|
/* It won't be perfect (especially when zoomed) but should be good enough */
|
|
236
|
-
padding-top:
|
|
236
|
+
padding-top: 2px;
|
|
237
237
|
}
|
|
238
238
|
input.alternative,
|
|
239
239
|
.input-field.alternative {
|
|
@@ -304,7 +304,7 @@ textarea.disabled.read-only {
|
|
|
304
304
|
}
|
|
305
305
|
input.disabled::selection,
|
|
306
306
|
textarea.disabled::selection {
|
|
307
|
-
-webkit-text-fill-color: #
|
|
307
|
+
-webkit-text-fill-color: #0E1316;
|
|
308
308
|
}
|
|
309
309
|
textarea.alternative {
|
|
310
310
|
background-color: transparent;
|
|
@@ -445,7 +445,7 @@ button::-moz-focus-inner {
|
|
|
445
445
|
margin: 0;
|
|
446
446
|
padding: 0;
|
|
447
447
|
border: 0;
|
|
448
|
-
background-color: #
|
|
448
|
+
background-color: #0E1316;
|
|
449
449
|
pointer-events: none;
|
|
450
450
|
}
|
|
451
451
|
.application-loading-root.fadeout {
|
|
@@ -551,7 +551,7 @@ a:focus,
|
|
|
551
551
|
margin: 100px 50px;
|
|
552
552
|
padding: 20px;
|
|
553
553
|
border: 1px solid #FF8888;
|
|
554
|
-
background-color: #
|
|
554
|
+
background-color: #252F34;
|
|
555
555
|
}
|
|
556
556
|
.startup-error-title {
|
|
557
557
|
font-weight: bold;
|
|
@@ -721,6 +721,7 @@ iframe {
|
|
|
721
721
|
overflow: hidden;
|
|
722
722
|
text-overflow: ellipsis;
|
|
723
723
|
white-space: nowrap;
|
|
724
|
+
margin-top: 1px;
|
|
724
725
|
}
|
|
725
726
|
.button > .icon {
|
|
726
727
|
/* Padding only relevant for icons larger than the container */
|
|
@@ -772,18 +773,18 @@ iframe {
|
|
|
772
773
|
background-color: rgba(255, 255, 255, 0.18);
|
|
773
774
|
}
|
|
774
775
|
.button.selected {
|
|
775
|
-
color: #
|
|
776
|
+
color: #0E1316;
|
|
776
777
|
background-color: #71b0e8;
|
|
777
778
|
border-color: #71b0e8;
|
|
778
779
|
}
|
|
779
780
|
.button.selected:hover {
|
|
780
|
-
background-color: #
|
|
781
|
-
border-color: #
|
|
781
|
+
background-color: #94c4ee;
|
|
782
|
+
border-color: #94c4ee;
|
|
782
783
|
}
|
|
783
784
|
.button.selected.active,
|
|
784
785
|
.button.selected:active {
|
|
785
|
-
background-color: #
|
|
786
|
-
border-color: #
|
|
786
|
+
background-color: #a6cdf1;
|
|
787
|
+
border-color: #a6cdf1;
|
|
787
788
|
}
|
|
788
789
|
.button.selected.has-popup {
|
|
789
790
|
color: #71b0e8;
|
|
@@ -798,22 +799,22 @@ iframe {
|
|
|
798
799
|
background-color: #71b0e8;
|
|
799
800
|
/* border is necessary to align the text with text from buttons with a real border */
|
|
800
801
|
border-color: #71b0e8;
|
|
801
|
-
color: #
|
|
802
|
+
color: #0E1316;
|
|
802
803
|
}
|
|
803
804
|
.button.default:hover {
|
|
804
|
-
background-color: #
|
|
805
|
-
border-color: #
|
|
805
|
+
background-color: #94c4ee;
|
|
806
|
+
border-color: #94c4ee;
|
|
806
807
|
}
|
|
807
808
|
.button.default:active,
|
|
808
809
|
.button.default.active {
|
|
809
|
-
color: #
|
|
810
|
-
background-color: #
|
|
811
|
-
border-color: #
|
|
810
|
+
color: #0E1316;
|
|
811
|
+
background-color: #a6cdf1;
|
|
812
|
+
border-color: #a6cdf1;
|
|
812
813
|
}
|
|
813
814
|
.button.default.selected {
|
|
814
|
-
color: #
|
|
815
|
-
background-color: #
|
|
816
|
-
border-color: #
|
|
815
|
+
color: #0E1316;
|
|
816
|
+
background-color: #a6cdf1;
|
|
817
|
+
border-color: #a6cdf1;
|
|
817
818
|
}
|
|
818
819
|
.button.default:focus {
|
|
819
820
|
outline: none;
|
|
@@ -841,7 +842,7 @@ iframe {
|
|
|
841
842
|
}
|
|
842
843
|
.button:disabled.selected,
|
|
843
844
|
.button.disabled.selected {
|
|
844
|
-
color: #
|
|
845
|
+
color: #0E1316;
|
|
845
846
|
background-color: #7E8588;
|
|
846
847
|
border-color: #7E8588;
|
|
847
848
|
}
|
|
@@ -916,7 +917,7 @@ iframe {
|
|
|
916
917
|
.box-content {
|
|
917
918
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
918
919
|
border-radius: 12px;
|
|
919
|
-
background-color: #
|
|
920
|
+
background-color: #2E3C41;
|
|
920
921
|
max-width: 450px;
|
|
921
922
|
margin: 0 auto;
|
|
922
923
|
padding: 45px 95px 50px 95px;
|
|
@@ -1018,7 +1019,7 @@ iframe {
|
|
|
1018
1019
|
.check-box.checked {
|
|
1019
1020
|
background-color: #71b0e8;
|
|
1020
1021
|
border-color: #71b0e8;
|
|
1021
|
-
color: #
|
|
1022
|
+
color: #0E1316;
|
|
1022
1023
|
}
|
|
1023
1024
|
.check-box.checked::before {
|
|
1024
1025
|
position: absolute;
|
|
@@ -1046,7 +1047,7 @@ iframe {
|
|
|
1046
1047
|
width: 10px;
|
|
1047
1048
|
border-radius: 1px;
|
|
1048
1049
|
height: 2px;
|
|
1049
|
-
background-color: #
|
|
1050
|
+
background-color: #0E1316;
|
|
1050
1051
|
}
|
|
1051
1052
|
.check-box.disabled {
|
|
1052
1053
|
border-color: rgba(255, 255, 255, 0.12);
|
|
@@ -1080,13 +1081,6 @@ iframe {
|
|
|
1080
1081
|
.calendar-scrollable-components {
|
|
1081
1082
|
height: 100%;
|
|
1082
1083
|
}
|
|
1083
|
-
.calendar-week-scrollable {
|
|
1084
|
-
overflow: visible;
|
|
1085
|
-
}
|
|
1086
|
-
.calendar-scrollable-components-week {
|
|
1087
|
-
top: calc(23px + 5px);
|
|
1088
|
-
height: calc(15% - ( 23px + 5px));
|
|
1089
|
-
}
|
|
1090
1084
|
.calendar-header {
|
|
1091
1085
|
position: relative;
|
|
1092
1086
|
display: block;
|
|
@@ -1206,7 +1200,8 @@ iframe {
|
|
|
1206
1200
|
cursor: pointer;
|
|
1207
1201
|
}
|
|
1208
1202
|
.calendar-mode {
|
|
1209
|
-
|
|
1203
|
+
padding: 0 8px;
|
|
1204
|
+
min-width: 65px;
|
|
1210
1205
|
border-top: 1px solid rgba(255, 255, 255, 0.25);
|
|
1211
1206
|
border-bottom: 1px solid rgba(255, 255, 255, 0.25);
|
|
1212
1207
|
border-left: 1px solid rgba(255, 255, 255, 0.25);
|
|
@@ -1407,9 +1402,15 @@ iframe {
|
|
|
1407
1402
|
height: calc(100% - 25px);
|
|
1408
1403
|
padding-right: 20px;
|
|
1409
1404
|
}
|
|
1405
|
+
.calendar-grid + .scroll-shadow {
|
|
1406
|
+
--scroll-shadow-inset-right: 20px;
|
|
1407
|
+
}
|
|
1410
1408
|
.calendar-grid.mobile {
|
|
1411
1409
|
padding-right: 6px;
|
|
1412
1410
|
}
|
|
1411
|
+
.calendar-grid.mobile + .scroll-shadow {
|
|
1412
|
+
--scroll-shadow-inset-right: 6px;
|
|
1413
|
+
}
|
|
1413
1414
|
.calendar-grid.calendar-grid-short {
|
|
1414
1415
|
height: calc(100% - 105px);
|
|
1415
1416
|
}
|
|
@@ -1532,7 +1533,7 @@ iframe {
|
|
|
1532
1533
|
left: calc(50% - 8px);
|
|
1533
1534
|
top: -8px;
|
|
1534
1535
|
transform: rotate(45deg);
|
|
1535
|
-
background-color: #
|
|
1536
|
+
background-color: #252F34;
|
|
1536
1537
|
}
|
|
1537
1538
|
.calendar-day .calendar-component.component-open-bottom {
|
|
1538
1539
|
overflow: visible;
|
|
@@ -1568,7 +1569,7 @@ iframe {
|
|
|
1568
1569
|
border: solid 4px #71b0e8;
|
|
1569
1570
|
border-radius: 50%;
|
|
1570
1571
|
background-color: #71b0e8;
|
|
1571
|
-
color: #
|
|
1572
|
+
color: #0E1316;
|
|
1572
1573
|
}
|
|
1573
1574
|
.calendar-week-name {
|
|
1574
1575
|
font-size: 11px;
|
|
@@ -1731,11 +1732,11 @@ iframe {
|
|
|
1731
1732
|
}
|
|
1732
1733
|
.year-panel-list > .year-month > .year-day.year-range-day {
|
|
1733
1734
|
background-color: #71b0e8;
|
|
1734
|
-
color: #
|
|
1735
|
+
color: #0E1316;
|
|
1735
1736
|
}
|
|
1736
1737
|
.year-panel-list > .year-month > .year-day.year-hover-day {
|
|
1737
1738
|
background-color: #71b0e8;
|
|
1738
|
-
color: #
|
|
1739
|
+
color: #0E1316;
|
|
1739
1740
|
}
|
|
1740
1741
|
.year-panel-list > .year-month::before {
|
|
1741
1742
|
position: absolute;
|
|
@@ -1770,7 +1771,7 @@ iframe {
|
|
|
1770
1771
|
.date-picker-popup {
|
|
1771
1772
|
position: absolute;
|
|
1772
1773
|
width: 290px;
|
|
1773
|
-
background-color: #
|
|
1774
|
+
background-color: #3B494F;
|
|
1774
1775
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
1775
1776
|
border-radius: 3px;
|
|
1776
1777
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -1848,12 +1849,12 @@ iframe {
|
|
|
1848
1849
|
background-color: rgba(255, 255, 255, 0.18);
|
|
1849
1850
|
}
|
|
1850
1851
|
.date-picker-day.selected {
|
|
1851
|
-
color: #
|
|
1852
|
+
color: #0E1316;
|
|
1852
1853
|
background-color: #71b0e8;
|
|
1853
1854
|
font-weight: bold;
|
|
1854
1855
|
}
|
|
1855
1856
|
.date-picker-day.selected.date-picker-now > .text {
|
|
1856
|
-
border-bottom-color: #
|
|
1857
|
+
border-bottom-color: #0E1316;
|
|
1857
1858
|
}
|
|
1858
1859
|
.date-picker-day.disabled {
|
|
1859
1860
|
color: #7E8588;
|
|
@@ -1882,6 +1883,7 @@ iframe {
|
|
|
1882
1883
|
cursor: default;
|
|
1883
1884
|
font-size: 18px;
|
|
1884
1885
|
line-height: 30px;
|
|
1886
|
+
margin-top: 1px;
|
|
1885
1887
|
overflow: hidden;
|
|
1886
1888
|
text-overflow: ellipsis;
|
|
1887
1889
|
white-space: nowrap;
|
|
@@ -1969,7 +1971,7 @@ iframe {
|
|
|
1969
1971
|
height: calc(100% - 50px);
|
|
1970
1972
|
}
|
|
1971
1973
|
.desktop.in-background {
|
|
1972
|
-
background-color: #
|
|
1974
|
+
background-color: #1F2428;
|
|
1973
1975
|
}
|
|
1974
1976
|
/* "Open URI" related rules */
|
|
1975
1977
|
.download-frame {
|
|
@@ -2240,7 +2242,7 @@ iframe {
|
|
|
2240
2242
|
.desktop-bench {
|
|
2241
2243
|
position: absolute;
|
|
2242
2244
|
top: 0;
|
|
2243
|
-
background-color: #
|
|
2245
|
+
background-color: #252F34;
|
|
2244
2246
|
border-left: 1px solid rgba(255, 255, 255, 0.12);
|
|
2245
2247
|
/* Make some space for the navigation handle (when the navigation is closed */
|
|
2246
2248
|
/* Only do it if detail-table is at the bottom left corner */
|
|
@@ -2274,7 +2276,7 @@ iframe {
|
|
|
2274
2276
|
animation-duration: 0.5s;
|
|
2275
2277
|
}
|
|
2276
2278
|
.desktop-bench > .bench-column > .simple-tab-box > .simple-tab-area {
|
|
2277
|
-
background-color: #
|
|
2279
|
+
background-color: #1F2428;
|
|
2278
2280
|
}
|
|
2279
2281
|
.desktop-bench > .bench-column > .simple-tab-box > .simple-tab-area::before {
|
|
2280
2282
|
display: none;
|
|
@@ -2302,7 +2304,7 @@ iframe {
|
|
|
2302
2304
|
margin-right: -7px;
|
|
2303
2305
|
}
|
|
2304
2306
|
.desktop-bench.outline-content-has-dimmed-background {
|
|
2305
|
-
background-color: #
|
|
2307
|
+
background-color: #1F2428;
|
|
2306
2308
|
}
|
|
2307
2309
|
.detail-table.table {
|
|
2308
2310
|
--table-row-margin-x: 10px;
|
|
@@ -2342,7 +2344,7 @@ iframe {
|
|
|
2342
2344
|
animation: fade-out-from-current 0.15s;
|
|
2343
2345
|
}
|
|
2344
2346
|
.detail-table.table > .table-header {
|
|
2345
|
-
background-color: #
|
|
2347
|
+
background-color: #1F2428;
|
|
2346
2348
|
border-bottom-color: rgba(255, 255, 255, 0.12);
|
|
2347
2349
|
}
|
|
2348
2350
|
.detail-table.table > .table-header > .table-header-item {
|
|
@@ -2355,7 +2357,7 @@ iframe {
|
|
|
2355
2357
|
margin-right: 12px;
|
|
2356
2358
|
}
|
|
2357
2359
|
.detail-table.table > .table-footer {
|
|
2358
|
-
background-color: #
|
|
2360
|
+
background-color: #252F34;
|
|
2359
2361
|
}
|
|
2360
2362
|
.detail-table.table > .table-data > .scrollbar > .scrollbar-thumb.x-axis {
|
|
2361
2363
|
padding-top: 4px;
|
|
@@ -2365,9 +2367,9 @@ iframe {
|
|
|
2365
2367
|
padding-top: 2px;
|
|
2366
2368
|
}
|
|
2367
2369
|
.detail-table.table > .table-data + .scroll-shadow {
|
|
2368
|
-
--scroll-shadow-size:
|
|
2369
|
-
--scroll-shadow-blur:
|
|
2370
|
-
--scroll-shadow-spread:
|
|
2370
|
+
--scroll-shadow-size: 14px;
|
|
2371
|
+
--scroll-shadow-blur: 14px;
|
|
2372
|
+
--scroll-shadow-spread: 14px;
|
|
2371
2373
|
}
|
|
2372
2374
|
/*
|
|
2373
2375
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
@@ -2576,7 +2578,7 @@ iframe {
|
|
|
2576
2578
|
}
|
|
2577
2579
|
.simple-tab-box > .tab-content {
|
|
2578
2580
|
height: 100%;
|
|
2579
|
-
background-color: #
|
|
2581
|
+
background-color: #252F34;
|
|
2580
2582
|
}
|
|
2581
2583
|
/*
|
|
2582
2584
|
* Copyright (c) 2014-2018 BSI Business Systems Integration AG.
|
|
@@ -2600,7 +2602,7 @@ iframe {
|
|
|
2600
2602
|
flex-direction: column;
|
|
2601
2603
|
justify-content: center;
|
|
2602
2604
|
min-width: 30px;
|
|
2603
|
-
background-color: #
|
|
2605
|
+
background-color: #1F2428;
|
|
2604
2606
|
text-align: center;
|
|
2605
2607
|
cursor: pointer;
|
|
2606
2608
|
}
|
|
@@ -2637,7 +2639,7 @@ iframe {
|
|
|
2637
2639
|
display: inline-block;
|
|
2638
2640
|
vertical-align: top;
|
|
2639
2641
|
padding: 5px;
|
|
2640
|
-
background-color: #
|
|
2642
|
+
background-color: #1F2428;
|
|
2641
2643
|
border-right: 1px solid rgba(255, 255, 255, 0.12);
|
|
2642
2644
|
cursor: pointer;
|
|
2643
2645
|
width: 120px;
|
|
@@ -2707,7 +2709,7 @@ iframe {
|
|
|
2707
2709
|
}
|
|
2708
2710
|
.simple-tab.selected {
|
|
2709
2711
|
cursor: default;
|
|
2710
|
-
background-color: #
|
|
2712
|
+
background-color: #252F34;
|
|
2711
2713
|
}
|
|
2712
2714
|
.simple-tab.selected > .title-line > .title {
|
|
2713
2715
|
color: #E9EBEB;
|
|
@@ -2776,7 +2778,7 @@ iframe {
|
|
|
2776
2778
|
position: relative;
|
|
2777
2779
|
display: table-cell;
|
|
2778
2780
|
padding: 7px 8px;
|
|
2779
|
-
background-color: #
|
|
2781
|
+
background-color: #252F34;
|
|
2780
2782
|
color: #7E8588;
|
|
2781
2783
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
2782
2784
|
border-radius: 8px;
|
|
@@ -2808,11 +2810,11 @@ iframe {
|
|
|
2808
2810
|
content: '\E013';
|
|
2809
2811
|
}
|
|
2810
2812
|
.collapse-handle-body:hover {
|
|
2811
|
-
background-color: #
|
|
2813
|
+
background-color: #3B494F;
|
|
2812
2814
|
}
|
|
2813
2815
|
.collapse-handle-body:active,
|
|
2814
2816
|
.collapse-handle-body.active {
|
|
2815
|
-
background-color: #
|
|
2817
|
+
background-color: #46565e;
|
|
2816
2818
|
}
|
|
2817
2819
|
/*
|
|
2818
2820
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
@@ -2830,7 +2832,8 @@ iframe {
|
|
|
2830
2832
|
margin: 8px 3px 0 0;
|
|
2831
2833
|
padding: 10px 10px 0 20px;
|
|
2832
2834
|
border-radius: 12px 12px 0 0;
|
|
2833
|
-
border
|
|
2835
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
2836
|
+
border-bottom-width: 0;
|
|
2834
2837
|
background-color: rgba(0, 0, 0, 0.1);
|
|
2835
2838
|
}
|
|
2836
2839
|
.closable.desktop-tab.simple-tab > .title-line {
|
|
@@ -2897,11 +2900,21 @@ iframe {
|
|
|
2897
2900
|
.desktop-tab.simple-tab:hover,
|
|
2898
2901
|
.desktop-tab.simple-tab:active {
|
|
2899
2902
|
background-color: rgba(255, 255, 255, 0.12);
|
|
2903
|
+
border-color: transparent;
|
|
2900
2904
|
}
|
|
2901
2905
|
.desktop-tab.simple-tab:hover > .title-line > .title,
|
|
2902
2906
|
.desktop-tab.simple-tab:active > .title-line > .title {
|
|
2903
2907
|
color: inherit;
|
|
2904
2908
|
}
|
|
2909
|
+
.desktop-tab.simple-tab.glasspane-parent {
|
|
2910
|
+
pointer-events: unset;
|
|
2911
|
+
}
|
|
2912
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.disabled):not(.selected):hover {
|
|
2913
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
2914
|
+
}
|
|
2915
|
+
.desktop-tab.simple-tab.glasspane-parent:not(.selected):hover > .closer {
|
|
2916
|
+
display: none;
|
|
2917
|
+
}
|
|
2905
2918
|
.desktop-tab.simple-tab.disabled {
|
|
2906
2919
|
background-color: transparent;
|
|
2907
2920
|
}
|
|
@@ -2909,7 +2922,8 @@ iframe {
|
|
|
2909
2922
|
color: rgba(255, 255, 255, 0.4);
|
|
2910
2923
|
}
|
|
2911
2924
|
.desktop-tab.simple-tab.selected {
|
|
2912
|
-
background-color: #
|
|
2925
|
+
background-color: #252F34;
|
|
2926
|
+
border-color: transparent;
|
|
2913
2927
|
}
|
|
2914
2928
|
.desktop-tab.simple-tab.selected > .title-line > .icon-container {
|
|
2915
2929
|
color: #A7ACAD;
|
|
@@ -2939,23 +2953,26 @@ iframe {
|
|
|
2939
2953
|
background-color: rgba(255, 255, 255, 0.18);
|
|
2940
2954
|
}
|
|
2941
2955
|
.desktop-tab.simple-tab.selected > .edge {
|
|
2942
|
-
--color: #
|
|
2956
|
+
--color: #252F34;
|
|
2943
2957
|
position: absolute;
|
|
2944
2958
|
pointer-events: none;
|
|
2945
2959
|
background-color: transparent;
|
|
2946
|
-
bottom:
|
|
2947
|
-
height:
|
|
2948
|
-
width:
|
|
2949
|
-
box-
|
|
2950
|
-
|
|
2960
|
+
bottom: -5px;
|
|
2961
|
+
height: 12px;
|
|
2962
|
+
width: 12px;
|
|
2963
|
+
box-sizing: content-box;
|
|
2964
|
+
border: 5px solid var(--color);
|
|
2965
|
+
border-top: none;
|
|
2951
2966
|
}
|
|
2952
2967
|
.desktop-tab.simple-tab.selected > .edge.left {
|
|
2953
|
-
left: -
|
|
2954
|
-
border-bottom-right-radius:
|
|
2968
|
+
left: -12px;
|
|
2969
|
+
border-bottom-right-radius: 17px;
|
|
2970
|
+
border-left: none;
|
|
2955
2971
|
}
|
|
2956
2972
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2957
|
-
right: -
|
|
2958
|
-
border-bottom-left-radius:
|
|
2973
|
+
right: -12px;
|
|
2974
|
+
border-bottom-left-radius: 17px;
|
|
2975
|
+
border-right: none;
|
|
2959
2976
|
}
|
|
2960
2977
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2961
2978
|
z-index: 1;
|
|
@@ -3035,70 +3052,70 @@ iframe {
|
|
|
3035
3052
|
}
|
|
3036
3053
|
@-webkit-keyframes flash-desktop-tab-selected {
|
|
3037
3054
|
0% {
|
|
3038
|
-
background-color: #
|
|
3055
|
+
background-color: #252F34;
|
|
3039
3056
|
}
|
|
3040
3057
|
25% {
|
|
3041
3058
|
background-color: #000000;
|
|
3042
3059
|
}
|
|
3043
3060
|
50% {
|
|
3044
|
-
background-color: #
|
|
3061
|
+
background-color: #252F34;
|
|
3045
3062
|
}
|
|
3046
3063
|
75% {
|
|
3047
3064
|
background-color: #000000;
|
|
3048
3065
|
}
|
|
3049
3066
|
100% {
|
|
3050
|
-
background-color: #
|
|
3067
|
+
background-color: #252F34;
|
|
3051
3068
|
}
|
|
3052
3069
|
}
|
|
3053
3070
|
@keyframes flash-desktop-tab-selected {
|
|
3054
3071
|
0% {
|
|
3055
|
-
background-color: #
|
|
3072
|
+
background-color: #252F34;
|
|
3056
3073
|
}
|
|
3057
3074
|
25% {
|
|
3058
3075
|
background-color: #000000;
|
|
3059
3076
|
}
|
|
3060
3077
|
50% {
|
|
3061
|
-
background-color: #
|
|
3078
|
+
background-color: #252F34;
|
|
3062
3079
|
}
|
|
3063
3080
|
75% {
|
|
3064
3081
|
background-color: #000000;
|
|
3065
3082
|
}
|
|
3066
3083
|
100% {
|
|
3067
|
-
background-color: #
|
|
3084
|
+
background-color: #252F34;
|
|
3068
3085
|
}
|
|
3069
3086
|
}
|
|
3070
3087
|
@-webkit-keyframes flash-desktop-tab-selected-edge {
|
|
3071
3088
|
0% {
|
|
3072
|
-
box-shadow: 0 12px 0 0 #
|
|
3089
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3073
3090
|
}
|
|
3074
3091
|
25% {
|
|
3075
3092
|
box-shadow: 0 12px 0 0 #000000;
|
|
3076
3093
|
}
|
|
3077
3094
|
50% {
|
|
3078
|
-
box-shadow: 0 12px 0 0 #
|
|
3095
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3079
3096
|
}
|
|
3080
3097
|
75% {
|
|
3081
3098
|
box-shadow: 0 12px 0 0 #000000;
|
|
3082
3099
|
}
|
|
3083
3100
|
100% {
|
|
3084
|
-
box-shadow: 0 12px 0 0 #
|
|
3101
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3085
3102
|
}
|
|
3086
3103
|
}
|
|
3087
3104
|
@keyframes flash-desktop-tab-selected-edge {
|
|
3088
3105
|
0% {
|
|
3089
|
-
box-shadow: 0 12px 0 0 #
|
|
3106
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3090
3107
|
}
|
|
3091
3108
|
25% {
|
|
3092
3109
|
box-shadow: 0 12px 0 0 #000000;
|
|
3093
3110
|
}
|
|
3094
3111
|
50% {
|
|
3095
|
-
box-shadow: 0 12px 0 0 #
|
|
3112
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3096
3113
|
}
|
|
3097
3114
|
75% {
|
|
3098
3115
|
box-shadow: 0 12px 0 0 #000000;
|
|
3099
3116
|
}
|
|
3100
3117
|
100% {
|
|
3101
|
-
box-shadow: 0 12px 0 0 #
|
|
3118
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3102
3119
|
}
|
|
3103
3120
|
}
|
|
3104
3121
|
/*
|
|
@@ -3112,16 +3129,18 @@ iframe {
|
|
|
3112
3129
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
3113
3130
|
*/
|
|
3114
3131
|
.desktop-tab-area > .simple-overflow-tab-item {
|
|
3115
|
-
border-radius:
|
|
3116
|
-
margin:
|
|
3132
|
+
border-radius: 8px;
|
|
3133
|
+
margin: 14px 3px 6px;
|
|
3117
3134
|
background-color: rgba(0, 0, 0, 0.1);
|
|
3118
|
-
border: 0;
|
|
3135
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
3119
3136
|
}
|
|
3120
3137
|
.desktop-tab-area > .simple-overflow-tab-item:hover {
|
|
3121
3138
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3139
|
+
border-color: transparent;
|
|
3122
3140
|
}
|
|
3123
3141
|
.desktop-tab-area > .simple-overflow-tab-item.selected {
|
|
3124
3142
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3143
|
+
border-color: transparent;
|
|
3125
3144
|
}
|
|
3126
3145
|
/*
|
|
3127
3146
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -3138,7 +3157,7 @@ iframe {
|
|
|
3138
3157
|
top: 0;
|
|
3139
3158
|
height: 64px;
|
|
3140
3159
|
color: #E9EBEB;
|
|
3141
|
-
background-color: #
|
|
3160
|
+
background-color: #0E1316;
|
|
3142
3161
|
}
|
|
3143
3162
|
.desktop-header > .simple-tab-area {
|
|
3144
3163
|
height: 64px;
|
|
@@ -3173,7 +3192,7 @@ iframe {
|
|
|
3173
3192
|
}
|
|
3174
3193
|
.in-background.desktop-header > .view-button-box > .view-menu-tab > .view-menu::before {
|
|
3175
3194
|
height: 100%;
|
|
3176
|
-
border-color: #
|
|
3195
|
+
border-color: #0E1316;
|
|
3177
3196
|
top: 0;
|
|
3178
3197
|
}
|
|
3179
3198
|
.in-background.desktop-header > .view-button-box > .view-menu-tab > .view-menu:hover > .icon {
|
|
@@ -3197,11 +3216,11 @@ iframe {
|
|
|
3197
3216
|
}
|
|
3198
3217
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-tab-wrapper > .view-tab.selected,
|
|
3199
3218
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-menu-tab.selected {
|
|
3200
|
-
background-color: #
|
|
3219
|
+
background-color: #1F2428;
|
|
3201
3220
|
}
|
|
3202
3221
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-tab-wrapper > .view-tab.selected > .edge,
|
|
3203
3222
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-menu-tab.selected > .edge {
|
|
3204
|
-
--color: #
|
|
3223
|
+
--color: #1F2428;
|
|
3205
3224
|
}
|
|
3206
3225
|
/*
|
|
3207
3226
|
* Copyright (c) 2014-2018 BSI Business Systems Integration AG.
|
|
@@ -3218,11 +3237,11 @@ iframe {
|
|
|
3218
3237
|
height: 100%;
|
|
3219
3238
|
width: 290px;
|
|
3220
3239
|
min-width: 49px;
|
|
3221
|
-
background-color: #
|
|
3240
|
+
background-color: #0E1316;
|
|
3222
3241
|
color: #E9EBEB;
|
|
3223
3242
|
}
|
|
3224
3243
|
.desktop-navigation.view-button-box-invisible > .navigation-body > .outline > .outline-title {
|
|
3225
|
-
background-color: #
|
|
3244
|
+
background-color: #0E1316;
|
|
3226
3245
|
border-bottom: 0;
|
|
3227
3246
|
color: #E9EBEB;
|
|
3228
3247
|
}
|
|
@@ -3231,10 +3250,10 @@ iframe {
|
|
|
3231
3250
|
}
|
|
3232
3251
|
.navigation-body {
|
|
3233
3252
|
position: absolute;
|
|
3234
|
-
background-color: #
|
|
3253
|
+
background-color: #252F34;
|
|
3235
3254
|
}
|
|
3236
3255
|
.desktop-navigation.in-background > .navigation-body {
|
|
3237
|
-
background-color: #
|
|
3256
|
+
background-color: #1F2428;
|
|
3238
3257
|
}
|
|
3239
3258
|
.desktop-navigation > .desktop-tool-box > .menu-item {
|
|
3240
3259
|
margin-bottom: 6px;
|
|
@@ -3242,6 +3261,9 @@ iframe {
|
|
|
3242
3261
|
.desktop-navigation > .desktop-tool-box > .menu-item > .font-icon {
|
|
3243
3262
|
font-size: 20px;
|
|
3244
3263
|
}
|
|
3264
|
+
.desktop-navigation > .desktop-tool-box > .menu-item.ellipsis > .font-icon {
|
|
3265
|
+
font-size: 22px;
|
|
3266
|
+
}
|
|
3245
3267
|
/*
|
|
3246
3268
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
3247
3269
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -3256,16 +3278,16 @@ iframe {
|
|
|
3256
3278
|
position: absolute;
|
|
3257
3279
|
}
|
|
3258
3280
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body {
|
|
3259
|
-
background-color: #
|
|
3281
|
+
background-color: #252F34;
|
|
3260
3282
|
border-color: rgba(255, 255, 255, 0.25);
|
|
3261
3283
|
color: #7E8588;
|
|
3262
3284
|
}
|
|
3263
3285
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body:hover {
|
|
3264
|
-
background-color: #
|
|
3286
|
+
background-color: #3B494F;
|
|
3265
3287
|
}
|
|
3266
3288
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body:active,
|
|
3267
3289
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body.active {
|
|
3268
|
-
background-color: #
|
|
3290
|
+
background-color: #46565e;
|
|
3269
3291
|
}
|
|
3270
3292
|
.desktop-navigation-handle.collapse-handle.right-aligned.both-visible {
|
|
3271
3293
|
right: 5px;
|
|
@@ -3293,7 +3315,7 @@ iframe {
|
|
|
3293
3315
|
margin-left: -4px;
|
|
3294
3316
|
}
|
|
3295
3317
|
/*
|
|
3296
|
-
* Copyright (c) 2010-
|
|
3318
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
3297
3319
|
* All rights reserved. This program and the accompanying materials
|
|
3298
3320
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
3299
3321
|
* which accompanies this distribution, and is available at
|
|
@@ -3306,7 +3328,7 @@ iframe {
|
|
|
3306
3328
|
position: fixed;
|
|
3307
3329
|
right: 10px;
|
|
3308
3330
|
top: 0;
|
|
3309
|
-
height: 100
|
|
3331
|
+
height: calc(100% - 72px);
|
|
3310
3332
|
width: 300px;
|
|
3311
3333
|
margin-top: 72px;
|
|
3312
3334
|
pointer-events: none;
|
|
@@ -3402,7 +3424,7 @@ iframe {
|
|
|
3402
3424
|
width: 300px;
|
|
3403
3425
|
display: flex;
|
|
3404
3426
|
align-items: center;
|
|
3405
|
-
background-color: #
|
|
3427
|
+
background-color: #3B494F;
|
|
3406
3428
|
margin-bottom: 10px;
|
|
3407
3429
|
padding: 8px 0 8px 10px;
|
|
3408
3430
|
border-radius: 8px;
|
|
@@ -3565,7 +3587,7 @@ iframe {
|
|
|
3565
3587
|
}
|
|
3566
3588
|
.outline.tree > .tree-data > .tree-node.group,
|
|
3567
3589
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.group {
|
|
3568
|
-
background-color: #
|
|
3590
|
+
background-color: #2E3C41;
|
|
3569
3591
|
}
|
|
3570
3592
|
.outline.tree > .tree-data > .tree-node > .text,
|
|
3571
3593
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .text {
|
|
@@ -3593,17 +3615,13 @@ iframe {
|
|
|
3593
3615
|
line-height: 14px;
|
|
3594
3616
|
color: #7E8588;
|
|
3595
3617
|
}
|
|
3596
|
-
.outline.tree > .tree-data > .tree-node > .tree-node-control::before,
|
|
3597
|
-
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control::before {
|
|
3598
|
-
font-size: 18px;
|
|
3599
|
-
}
|
|
3600
3618
|
.outline.tree > .tree-data > .tree-node > .tree-node-control:hover,
|
|
3601
3619
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control:hover {
|
|
3602
3620
|
color: #FE9915;
|
|
3603
3621
|
}
|
|
3604
3622
|
.outline.tree > .tree-data > .tree-node.selected,
|
|
3605
3623
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3606
|
-
color: #
|
|
3624
|
+
color: #0E1316;
|
|
3607
3625
|
background-color: #71b0e8;
|
|
3608
3626
|
}
|
|
3609
3627
|
.outline.tree > .tree-data > .tree-node.selected::after,
|
|
@@ -3612,20 +3630,24 @@ iframe {
|
|
|
3612
3630
|
}
|
|
3613
3631
|
.outline.tree > .tree-data > .tree-node.selected > .tree-node-control,
|
|
3614
3632
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .tree-node-control {
|
|
3615
|
-
color: rgba(
|
|
3633
|
+
color: rgba(14, 19, 22, 0.7);
|
|
3634
|
+
}
|
|
3635
|
+
.outline.tree > .tree-data > .tree-node.selected > .tree-node-control:hover,
|
|
3636
|
+
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .tree-node-control:hover {
|
|
3637
|
+
color: #FE9915;
|
|
3616
3638
|
}
|
|
3617
3639
|
.outline.tree > .tree-data > .tree-node.selected > .font-icon,
|
|
3618
3640
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .font-icon {
|
|
3619
|
-
color: #
|
|
3641
|
+
color: #2E3C41;
|
|
3620
3642
|
}
|
|
3621
3643
|
.outline.tree.in-background > .tree-data > .tree-node.group,
|
|
3622
3644
|
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.group {
|
|
3623
|
-
background-color: #
|
|
3645
|
+
background-color: #2C363A;
|
|
3624
3646
|
}
|
|
3625
3647
|
.outline.tree.in-background > .tree-data > .tree-node.selected,
|
|
3626
3648
|
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3627
3649
|
background-color: #7E8588;
|
|
3628
|
-
color: #
|
|
3650
|
+
color: #0E1316;
|
|
3629
3651
|
}
|
|
3630
3652
|
.outline-title {
|
|
3631
3653
|
cursor: pointer;
|
|
@@ -3662,7 +3684,7 @@ iframe {
|
|
|
3662
3684
|
/* bread crumb style (different colors and bigger font and arrow than original breadcrumb style) */
|
|
3663
3685
|
.outline.tree.breadcrumb > .outline-title {
|
|
3664
3686
|
margin: 0;
|
|
3665
|
-
border-bottom-color: #
|
|
3687
|
+
border-bottom-color: #3B494F;
|
|
3666
3688
|
}
|
|
3667
3689
|
.outline.tree.breadcrumb > .outline-title.touch:active {
|
|
3668
3690
|
background-color: rgba(255, 255, 255, 0.12);
|
|
@@ -3672,12 +3694,12 @@ iframe {
|
|
|
3672
3694
|
}
|
|
3673
3695
|
.outline.tree.breadcrumb > .tree-data > .tree-node,
|
|
3674
3696
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node {
|
|
3675
|
-
border-bottom: 1px solid #
|
|
3697
|
+
border-bottom: 1px solid #3B494F;
|
|
3676
3698
|
padding: 12px 20px;
|
|
3677
3699
|
}
|
|
3678
3700
|
.outline.tree.breadcrumb > .tree-data > .tree-node.child-of-selected,
|
|
3679
3701
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.child-of-selected {
|
|
3680
|
-
background-color: #
|
|
3702
|
+
background-color: #252F34;
|
|
3681
3703
|
}
|
|
3682
3704
|
.in-background.outline.tree.breadcrumb > .tree-data > .tree-node.child-of-selected,
|
|
3683
3705
|
.in-background.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.child-of-selected {
|
|
@@ -3690,7 +3712,7 @@ iframe {
|
|
|
3690
3712
|
.outline.tree.breadcrumb > .tree-data > .tree-node.ancestor-of-selected,
|
|
3691
3713
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.ancestor-of-selected {
|
|
3692
3714
|
color: #BFC2C3;
|
|
3693
|
-
background-color: #
|
|
3715
|
+
background-color: #252F34;
|
|
3694
3716
|
}
|
|
3695
3717
|
.in-background.outline.tree.breadcrumb > .tree-data > .tree-node.ancestor-of-selected,
|
|
3696
3718
|
.in-background.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.ancestor-of-selected {
|
|
@@ -3703,7 +3725,7 @@ iframe {
|
|
|
3703
3725
|
.outline.tree.breadcrumb > .tree-data > .tree-node.selected,
|
|
3704
3726
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3705
3727
|
background-color: #71b0e8;
|
|
3706
|
-
color: #
|
|
3728
|
+
color: #0E1316;
|
|
3707
3729
|
cursor: default;
|
|
3708
3730
|
}
|
|
3709
3731
|
.in-background.outline.tree.breadcrumb > .tree-data > .tree-node.selected,
|
|
@@ -3712,7 +3734,7 @@ iframe {
|
|
|
3712
3734
|
}
|
|
3713
3735
|
.outline.tree.breadcrumb > .tree-data > .tree-node.selected > .text > .compact-cell-header > .compact-cell-subtitle,
|
|
3714
3736
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.selected > .text > .compact-cell-header > .compact-cell-subtitle {
|
|
3715
|
-
color: #
|
|
3737
|
+
color: #2E3C41;
|
|
3716
3738
|
}
|
|
3717
3739
|
.outline.tree.breadcrumb > .tree-data > .tree-node.selected > .text > .compact-cell-header > .compact-cell-title > .right,
|
|
3718
3740
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.selected > .text > .compact-cell-header > .compact-cell-title > .right,
|
|
@@ -3730,13 +3752,13 @@ iframe {
|
|
|
3730
3752
|
.outline.tree.breadcrumb.focused > .tree-data > .tree-node.parent-of-selected,
|
|
3731
3753
|
.outline.tree.breadcrumb:focus > .tree-data > .animation-wrapper > .tree-node.parent-of-selected,
|
|
3732
3754
|
.outline.tree.breadcrumb.focused > .tree-data > .animation-wrapper > .tree-node.parent-of-selected {
|
|
3733
|
-
border-color: #
|
|
3755
|
+
border-color: #3B494F;
|
|
3734
3756
|
}
|
|
3735
3757
|
.outline.tree.breadcrumb:focus > .tree-data > .tree-node.selected,
|
|
3736
3758
|
.outline.tree.breadcrumb.focused > .tree-data > .tree-node.selected,
|
|
3737
3759
|
.outline.tree.breadcrumb:focus > .tree-data > .animation-wrapper > .tree-node.selected,
|
|
3738
3760
|
.outline.tree.breadcrumb.focused > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3739
|
-
border-color: #
|
|
3761
|
+
border-color: #3B494F;
|
|
3740
3762
|
}
|
|
3741
3763
|
.compact.outline.breadcrumb > .outline-title {
|
|
3742
3764
|
padding-left: 16px;
|
|
@@ -3746,7 +3768,7 @@ iframe {
|
|
|
3746
3768
|
margin-right: -8px;
|
|
3747
3769
|
}
|
|
3748
3770
|
.compact.outline.breadcrumb > .tree-data {
|
|
3749
|
-
background-color: #
|
|
3771
|
+
background-color: #1F2428;
|
|
3750
3772
|
}
|
|
3751
3773
|
.compact.outline.breadcrumb > .tree-data > .tree-node {
|
|
3752
3774
|
padding: 0;
|
|
@@ -3776,7 +3798,7 @@ iframe {
|
|
|
3776
3798
|
padding: 0 16px 0 16px;
|
|
3777
3799
|
min-height: 43px;
|
|
3778
3800
|
margin-left: -8px;
|
|
3779
|
-
background-color: #
|
|
3801
|
+
background-color: #252F34;
|
|
3780
3802
|
}
|
|
3781
3803
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .detail-menubar > .menubar-box > .menu-item {
|
|
3782
3804
|
padding-left: 8px;
|
|
@@ -3794,11 +3816,11 @@ iframe {
|
|
|
3794
3816
|
min-width: 16px;
|
|
3795
3817
|
}
|
|
3796
3818
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .detail-content {
|
|
3797
|
-
background-color: #
|
|
3819
|
+
background-color: #252F34;
|
|
3798
3820
|
color: #E9EBEB;
|
|
3799
3821
|
}
|
|
3800
3822
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .detail-content.dimmed-background {
|
|
3801
|
-
background-color: #
|
|
3823
|
+
background-color: #1F2428;
|
|
3802
3824
|
}
|
|
3803
3825
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .form > .root-group-box > .group-box-body {
|
|
3804
3826
|
padding-left: 6px;
|
|
@@ -3829,7 +3851,7 @@ iframe {
|
|
|
3829
3851
|
display: none;
|
|
3830
3852
|
}
|
|
3831
3853
|
.compact.outline.breadcrumb > .tree-data.detail-content-visible > .tree-node > .detail-menubar {
|
|
3832
|
-
border-bottom: 1px solid #
|
|
3854
|
+
border-bottom: 1px solid #3B494F;
|
|
3833
3855
|
}
|
|
3834
3856
|
.compact.outline.breadcrumb > .tree-data > .tree-node.selected.has-tile-overview {
|
|
3835
3857
|
background-color: transparent;
|
|
@@ -3864,7 +3886,7 @@ iframe {
|
|
|
3864
3886
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3865
3887
|
}
|
|
3866
3888
|
100% {
|
|
3867
|
-
background-color: #
|
|
3889
|
+
background-color: #252F34;
|
|
3868
3890
|
}
|
|
3869
3891
|
}
|
|
3870
3892
|
/* NOSONAR */
|
|
@@ -3873,7 +3895,7 @@ iframe {
|
|
|
3873
3895
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3874
3896
|
}
|
|
3875
3897
|
100% {
|
|
3876
|
-
background-color: #
|
|
3898
|
+
background-color: #252F34;
|
|
3877
3899
|
}
|
|
3878
3900
|
}
|
|
3879
3901
|
/* NOSONAR */
|
|
@@ -3935,7 +3957,7 @@ iframe {
|
|
|
3935
3957
|
margin-left: 0;
|
|
3936
3958
|
margin-right: 0;
|
|
3937
3959
|
margin-bottom: 0;
|
|
3938
|
-
border-bottom-color: #
|
|
3960
|
+
border-bottom-color: #3B494F;
|
|
3939
3961
|
}
|
|
3940
3962
|
.outline.breadcrumb > .search-outline-panel > .search-outline-status {
|
|
3941
3963
|
text-align: left;
|
|
@@ -3988,7 +4010,7 @@ iframe {
|
|
|
3988
4010
|
display: table;
|
|
3989
4011
|
}
|
|
3990
4012
|
.outline-overview-content {
|
|
3991
|
-
color: #
|
|
4013
|
+
color: #3B494F;
|
|
3992
4014
|
text-align: center;
|
|
3993
4015
|
display: table-cell;
|
|
3994
4016
|
vertical-align: middle;
|
|
@@ -4080,7 +4102,7 @@ iframe {
|
|
|
4080
4102
|
bottom: 6px;
|
|
4081
4103
|
}
|
|
4082
4104
|
/*
|
|
4083
|
-
* Copyright (c)
|
|
4105
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4084
4106
|
* All rights reserved. This program and the accompanying materials
|
|
4085
4107
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4086
4108
|
* which accompanies this distribution, and is available at
|
|
@@ -4104,28 +4126,34 @@ iframe {
|
|
|
4104
4126
|
.view-tab.in-background {
|
|
4105
4127
|
border-radius: 12px;
|
|
4106
4128
|
}
|
|
4129
|
+
.view-tab > .edge {
|
|
4130
|
+
position: absolute;
|
|
4131
|
+
}
|
|
4107
4132
|
.view-tab.selected:not(.in-background) {
|
|
4108
4133
|
margin: 8px 0 0;
|
|
4109
4134
|
border-radius: 12px 12px 0 0;
|
|
4110
4135
|
}
|
|
4111
4136
|
.view-tab.selected:not(.in-background) > .edge {
|
|
4112
|
-
--color: #
|
|
4137
|
+
--color: #252F34;
|
|
4113
4138
|
position: absolute;
|
|
4114
4139
|
pointer-events: none;
|
|
4115
4140
|
background-color: transparent;
|
|
4116
|
-
bottom:
|
|
4117
|
-
height:
|
|
4118
|
-
width:
|
|
4119
|
-
box-
|
|
4120
|
-
|
|
4141
|
+
bottom: -5px;
|
|
4142
|
+
height: 12px;
|
|
4143
|
+
width: 12px;
|
|
4144
|
+
box-sizing: content-box;
|
|
4145
|
+
border: 5px solid var(--color);
|
|
4146
|
+
border-top: none;
|
|
4121
4147
|
}
|
|
4122
4148
|
.view-tab.selected:not(.in-background) > .edge.left {
|
|
4123
|
-
left: -
|
|
4124
|
-
border-bottom-right-radius:
|
|
4149
|
+
left: -12px;
|
|
4150
|
+
border-bottom-right-radius: 17px;
|
|
4151
|
+
border-left: none;
|
|
4125
4152
|
}
|
|
4126
4153
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4127
|
-
right: -
|
|
4128
|
-
border-bottom-left-radius:
|
|
4154
|
+
right: -12px;
|
|
4155
|
+
border-bottom-left-radius: 17px;
|
|
4156
|
+
border-right: none;
|
|
4129
4157
|
}
|
|
4130
4158
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4131
4159
|
z-index: 1;
|
|
@@ -4141,14 +4169,12 @@ iframe {
|
|
|
4141
4169
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.left,
|
|
4142
4170
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.left {
|
|
4143
4171
|
visibility: hidden;
|
|
4144
|
-
|
|
4145
|
-
animation: show-view-tab-left-edge 200ms ease-out 0s forwards;
|
|
4172
|
+
animation: show-view-tab-left-edge 40ms ease-out 160ms forwards;
|
|
4146
4173
|
}
|
|
4147
4174
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.right,
|
|
4148
4175
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.right {
|
|
4149
4176
|
visibility: hidden;
|
|
4150
|
-
|
|
4151
|
-
animation: show-view-tab-right-edge 200ms ease-out 0s forwards;
|
|
4177
|
+
animation: show-view-tab-right-edge 40ms ease-out 160ms forwards;
|
|
4152
4178
|
}
|
|
4153
4179
|
.view-button-tab {
|
|
4154
4180
|
display: flex;
|
|
@@ -4162,11 +4188,11 @@ iframe {
|
|
|
4162
4188
|
background-color: rgba(255, 255, 255, 0.12);
|
|
4163
4189
|
}
|
|
4164
4190
|
.view-button-tab.selected {
|
|
4165
|
-
background-color: #
|
|
4191
|
+
background-color: #252F34;
|
|
4166
4192
|
color: #71b0e8;
|
|
4167
4193
|
}
|
|
4168
4194
|
.view-button-tab.selected.in-background {
|
|
4169
|
-
background-color: #
|
|
4195
|
+
background-color: #1F2428;
|
|
4170
4196
|
}
|
|
4171
4197
|
.view-button-tab.selected:not(.in-background) {
|
|
4172
4198
|
width: 100%;
|
|
@@ -4189,15 +4215,21 @@ iframe {
|
|
|
4189
4215
|
font-size: 20px;
|
|
4190
4216
|
}
|
|
4191
4217
|
@keyframes show-view-tab-left-edge {
|
|
4192
|
-
|
|
4218
|
+
0% {
|
|
4193
4219
|
visibility: visible;
|
|
4194
|
-
|
|
4220
|
+
left: -5px;
|
|
4221
|
+
}
|
|
4222
|
+
100% {
|
|
4223
|
+
left: -12px;
|
|
4195
4224
|
}
|
|
4196
4225
|
}
|
|
4197
4226
|
@keyframes show-view-tab-right-edge {
|
|
4198
|
-
|
|
4227
|
+
0% {
|
|
4199
4228
|
visibility: visible;
|
|
4200
|
-
|
|
4229
|
+
right: -5px;
|
|
4230
|
+
}
|
|
4231
|
+
100% {
|
|
4232
|
+
right: -12px;
|
|
4201
4233
|
}
|
|
4202
4234
|
}
|
|
4203
4235
|
/*
|
|
@@ -4222,11 +4254,11 @@ iframe {
|
|
|
4222
4254
|
/* necessary if it is in the header to make rounded corner overlap into tab area */
|
|
4223
4255
|
position: relative;
|
|
4224
4256
|
/* if covered by glass pane */
|
|
4225
|
-
background-color: #
|
|
4257
|
+
background-color: #0E1316;
|
|
4226
4258
|
color: #E9EBEB;
|
|
4227
4259
|
}
|
|
4228
4260
|
/*
|
|
4229
|
-
* Copyright (c)
|
|
4261
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4230
4262
|
* All rights reserved. This program and the accompanying materials
|
|
4231
4263
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4232
4264
|
* which accompanies this distribution, and is available at
|
|
@@ -4246,12 +4278,12 @@ iframe {
|
|
|
4246
4278
|
align-items: center;
|
|
4247
4279
|
justify-content: center;
|
|
4248
4280
|
background-color: transparent;
|
|
4281
|
+
cursor: pointer;
|
|
4249
4282
|
}
|
|
4250
4283
|
.view-menu-tab > .view-button:hover,
|
|
4251
4284
|
.view-menu-tab > .view-menu:hover {
|
|
4252
4285
|
background-color: rgba(0, 0, 0, 0.1);
|
|
4253
4286
|
color: inherit;
|
|
4254
|
-
cursor: pointer;
|
|
4255
4287
|
}
|
|
4256
4288
|
.view-menu-tab > .view-button.disabled,
|
|
4257
4289
|
.view-menu-tab > .view-menu.disabled {
|
|
@@ -4289,7 +4321,7 @@ iframe {
|
|
|
4289
4321
|
content: '';
|
|
4290
4322
|
position: absolute;
|
|
4291
4323
|
height: 100%;
|
|
4292
|
-
border-left: 1px solid #
|
|
4324
|
+
border-left: 1px solid #0E1316;
|
|
4293
4325
|
left: 0;
|
|
4294
4326
|
}
|
|
4295
4327
|
.selected-button-invisible.view-menu-tab > .view-menu::before {
|
|
@@ -4311,7 +4343,7 @@ iframe {
|
|
|
4311
4343
|
}
|
|
4312
4344
|
.view-menu-tab.selected {
|
|
4313
4345
|
color: #71b0e8;
|
|
4314
|
-
background-color: #
|
|
4346
|
+
background-color: #252F34;
|
|
4315
4347
|
}
|
|
4316
4348
|
.view-menu-tab.selected > .view-button.selected,
|
|
4317
4349
|
.view-menu-tab.selected > .view-menu.selected,
|
|
@@ -4346,7 +4378,7 @@ iframe {
|
|
|
4346
4378
|
border-color: rgba(255, 255, 255, 0.12);
|
|
4347
4379
|
}
|
|
4348
4380
|
.view-menu-tab.selected.in-background {
|
|
4349
|
-
background-color: #
|
|
4381
|
+
background-color: #1F2428;
|
|
4350
4382
|
}
|
|
4351
4383
|
.view-menu-tab.selected.in-background > .view-menu > .icon {
|
|
4352
4384
|
padding-top: 2px;
|
|
@@ -4360,6 +4392,7 @@ iframe {
|
|
|
4360
4392
|
.view-menu-tab.selected:not(.in-background) > .view-button {
|
|
4361
4393
|
padding-left: 6px;
|
|
4362
4394
|
width: 56px;
|
|
4395
|
+
cursor: default;
|
|
4363
4396
|
}
|
|
4364
4397
|
.selected-button-invisible.view-menu-tab.selected:not(.in-background) > .view-menu {
|
|
4365
4398
|
width: 50px;
|
|
@@ -4394,7 +4427,7 @@ iframe {
|
|
|
4394
4427
|
align-items: center;
|
|
4395
4428
|
text-align: center;
|
|
4396
4429
|
color: #71b0e8;
|
|
4397
|
-
background-color: #
|
|
4430
|
+
background-color: #252F34;
|
|
4398
4431
|
border-radius: 12px;
|
|
4399
4432
|
border: 2px solid transparent;
|
|
4400
4433
|
padding: 12px 6px 0 6px;
|
|
@@ -4433,7 +4466,7 @@ iframe {
|
|
|
4433
4466
|
cursor: default;
|
|
4434
4467
|
}
|
|
4435
4468
|
.view-menu-tile.disabled:hover {
|
|
4436
|
-
background-color: #
|
|
4469
|
+
background-color: #252F34;
|
|
4437
4470
|
}
|
|
4438
4471
|
/*
|
|
4439
4472
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -4450,7 +4483,7 @@ iframe {
|
|
|
4450
4483
|
top: 25%;
|
|
4451
4484
|
left: 50%;
|
|
4452
4485
|
width: 473px;
|
|
4453
|
-
background-color: #
|
|
4486
|
+
background-color: #3B494F;
|
|
4454
4487
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
4455
4488
|
border-radius: 8px;
|
|
4456
4489
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -4474,7 +4507,7 @@ iframe {
|
|
|
4474
4507
|
border-color: rgba(255, 255, 255, 0.12);
|
|
4475
4508
|
}
|
|
4476
4509
|
.file-chooser > .box-buttons > .box-button.default {
|
|
4477
|
-
color: #
|
|
4510
|
+
color: #0E1316;
|
|
4478
4511
|
background-color: #71b0e8;
|
|
4479
4512
|
}
|
|
4480
4513
|
.file-chooser > .box-buttons > .box-button.default:hover {
|
|
@@ -4637,7 +4670,7 @@ iframe {
|
|
|
4637
4670
|
padding-bottom: 0;
|
|
4638
4671
|
}
|
|
4639
4672
|
.file-input.has-error:not(.disabled):not(.alternative):active {
|
|
4640
|
-
background-color: #
|
|
4673
|
+
background-color: #252F34;
|
|
4641
4674
|
}
|
|
4642
4675
|
.file-input.has-error.alternative:not(.disabled):active {
|
|
4643
4676
|
border-bottom-color: #FF8888;
|
|
@@ -4669,7 +4702,7 @@ iframe {
|
|
|
4669
4702
|
position: relative;
|
|
4670
4703
|
}
|
|
4671
4704
|
.form.dimmed-background {
|
|
4672
|
-
background-color: #
|
|
4705
|
+
background-color: #1F2428;
|
|
4673
4706
|
}
|
|
4674
4707
|
.form.dimmed-background > .root-group-box > .menubar {
|
|
4675
4708
|
background-color: inherit;
|
|
@@ -4682,7 +4715,7 @@ iframe {
|
|
|
4682
4715
|
}
|
|
4683
4716
|
.dialog {
|
|
4684
4717
|
position: absolute;
|
|
4685
|
-
background-color: #
|
|
4718
|
+
background-color: #2E3C41;
|
|
4686
4719
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
4687
4720
|
border-radius: 12px;
|
|
4688
4721
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -4789,6 +4822,7 @@ iframe {
|
|
|
4789
4822
|
white-space: nowrap;
|
|
4790
4823
|
font-size: 16px;
|
|
4791
4824
|
color: #E9EBEB;
|
|
4825
|
+
margin-top: 1px;
|
|
4792
4826
|
}
|
|
4793
4827
|
.form > .header > .sub-title {
|
|
4794
4828
|
overflow: hidden;
|
|
@@ -5854,7 +5888,7 @@ iframe {
|
|
|
5854
5888
|
background-color: transparent;
|
|
5855
5889
|
}
|
|
5856
5890
|
.date-field > .field > .predict.has-error {
|
|
5857
|
-
background-color: #
|
|
5891
|
+
background-color: #252F34;
|
|
5858
5892
|
}
|
|
5859
5893
|
.date-field > .field > .predict + input {
|
|
5860
5894
|
background-color: transparent;
|
|
@@ -5924,7 +5958,7 @@ iframe {
|
|
|
5924
5958
|
height: 100%;
|
|
5925
5959
|
}
|
|
5926
5960
|
/*
|
|
5927
|
-
* Copyright (c) 2010-
|
|
5961
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
5928
5962
|
* All rights reserved. This program and the accompanying materials
|
|
5929
5963
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
5930
5964
|
* which accompanies this distribution, and is available at
|
|
@@ -6058,6 +6092,8 @@ iframe {
|
|
|
6058
6092
|
display: inline-block;
|
|
6059
6093
|
vertical-align: middle;
|
|
6060
6094
|
padding: 12px 0 12px 0;
|
|
6095
|
+
max-width: 100%;
|
|
6096
|
+
margin-top: 1px;
|
|
6061
6097
|
}
|
|
6062
6098
|
.group-box.has-sub-label > .group-box-header > .title {
|
|
6063
6099
|
padding-bottom: 7px;
|
|
@@ -6073,6 +6109,8 @@ iframe {
|
|
|
6073
6109
|
font-size: 11px;
|
|
6074
6110
|
letter-spacing: 0.2px;
|
|
6075
6111
|
color: #A7ACAD;
|
|
6112
|
+
overflow: hidden;
|
|
6113
|
+
text-overflow: ellipsis;
|
|
6076
6114
|
}
|
|
6077
6115
|
.group-box-header > .status {
|
|
6078
6116
|
position: absolute;
|
|
@@ -6236,7 +6274,6 @@ iframe {
|
|
|
6236
6274
|
}
|
|
6237
6275
|
.html-field > .field {
|
|
6238
6276
|
margin-left: 10px;
|
|
6239
|
-
overflow: hidden;
|
|
6240
6277
|
}
|
|
6241
6278
|
.html-field > .field:focus {
|
|
6242
6279
|
outline: none;
|
|
@@ -6842,7 +6879,7 @@ iframe {
|
|
|
6842
6879
|
.proposal-field-popup {
|
|
6843
6880
|
position: absolute;
|
|
6844
6881
|
overflow: hidden;
|
|
6845
|
-
background-color: #
|
|
6882
|
+
background-color: #3B494F;
|
|
6846
6883
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
6847
6884
|
border-radius: 3px;
|
|
6848
6885
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -6851,7 +6888,7 @@ iframe {
|
|
|
6851
6888
|
.dropdown-field-popup.touch,
|
|
6852
6889
|
.smart-field-popup.touch,
|
|
6853
6890
|
.proposal-field-popup.touch {
|
|
6854
|
-
background-color: #
|
|
6891
|
+
background-color: #1F2428;
|
|
6855
6892
|
}
|
|
6856
6893
|
.proposal-chooser > .active-filter {
|
|
6857
6894
|
position: absolute;
|
|
@@ -6863,7 +6900,7 @@ iframe {
|
|
|
6863
6900
|
.proposal-chooser > .active-filter,
|
|
6864
6901
|
.proposal-chooser > .status {
|
|
6865
6902
|
padding: 0 12px;
|
|
6866
|
-
background-color: #
|
|
6903
|
+
background-color: #1F2428;
|
|
6867
6904
|
border-top: solid 1px rgba(255, 255, 255, 0.12);
|
|
6868
6905
|
height: 30px;
|
|
6869
6906
|
overflow: hidden;
|
|
@@ -7214,7 +7251,7 @@ iframe {
|
|
|
7214
7251
|
.tab-box-header > .menubar {
|
|
7215
7252
|
position: absolute;
|
|
7216
7253
|
background-color: inherit;
|
|
7217
|
-
border-bottom
|
|
7254
|
+
border-bottom: none;
|
|
7218
7255
|
}
|
|
7219
7256
|
.tab-box-header > .status {
|
|
7220
7257
|
position: absolute;
|
|
@@ -7377,6 +7414,7 @@ iframe {
|
|
|
7377
7414
|
display: inline-block;
|
|
7378
7415
|
vertical-align: middle;
|
|
7379
7416
|
padding: 12px 0 12px;
|
|
7417
|
+
margin-top: 1px;
|
|
7380
7418
|
}
|
|
7381
7419
|
.tab-area.has-sub-label > .tab-item > .title {
|
|
7382
7420
|
padding-bottom: 7px;
|
|
@@ -7542,7 +7580,7 @@ iframe {
|
|
|
7542
7580
|
.tag-chooser-popup {
|
|
7543
7581
|
position: absolute;
|
|
7544
7582
|
overflow: hidden;
|
|
7545
|
-
background-color: #
|
|
7583
|
+
background-color: #3B494F;
|
|
7546
7584
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
7547
7585
|
border-radius: 3px;
|
|
7548
7586
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -7551,7 +7589,7 @@ iframe {
|
|
|
7551
7589
|
max-width: 250px;
|
|
7552
7590
|
}
|
|
7553
7591
|
.tag-chooser-popup.touch {
|
|
7554
|
-
background-color: #
|
|
7592
|
+
background-color: #1F2428;
|
|
7555
7593
|
}
|
|
7556
7594
|
.tag-chooser-popup > .table > .table-data {
|
|
7557
7595
|
padding: 8px 12px 5px 12px;
|
|
@@ -7609,7 +7647,7 @@ iframe {
|
|
|
7609
7647
|
}
|
|
7610
7648
|
.tag-field > .field.has-error {
|
|
7611
7649
|
border-color: #FF8888;
|
|
7612
|
-
background-color: #
|
|
7650
|
+
background-color: #252F34;
|
|
7613
7651
|
}
|
|
7614
7652
|
.tag-field > .field.has-error:focus,
|
|
7615
7653
|
.tag-field > .field.has-error.focused {
|
|
@@ -7854,7 +7892,7 @@ iframe {
|
|
|
7854
7892
|
border-color: #8ee0cf;
|
|
7855
7893
|
}
|
|
7856
7894
|
.wizard-step.selected > .icon {
|
|
7857
|
-
color: #
|
|
7895
|
+
color: #0E1316;
|
|
7858
7896
|
background-color: #71b0e8;
|
|
7859
7897
|
border-color: #71b0e8;
|
|
7860
7898
|
font-weight: bold;
|
|
@@ -8106,15 +8144,15 @@ iframe {
|
|
|
8106
8144
|
background-color: rgba(255, 255, 255, 0.18);
|
|
8107
8145
|
}
|
|
8108
8146
|
.menu-item.selected {
|
|
8109
|
-
color: #
|
|
8147
|
+
color: #0E1316;
|
|
8110
8148
|
background-color: #71b0e8;
|
|
8111
8149
|
}
|
|
8112
8150
|
.menu-item.selected:hover {
|
|
8113
|
-
background-color: #
|
|
8151
|
+
background-color: #94c4ee;
|
|
8114
8152
|
}
|
|
8115
8153
|
.menu-item.selected.active,
|
|
8116
8154
|
.menu-item.selected:active {
|
|
8117
|
-
background-color: #
|
|
8155
|
+
background-color: #a6cdf1;
|
|
8118
8156
|
}
|
|
8119
8157
|
.menu-item.selected.has-popup {
|
|
8120
8158
|
color: #71b0e8;
|
|
@@ -8135,7 +8173,7 @@ iframe {
|
|
|
8135
8173
|
background-color: transparent;
|
|
8136
8174
|
}
|
|
8137
8175
|
.menu-item.disabled.selected {
|
|
8138
|
-
color: #
|
|
8176
|
+
color: #0E1316;
|
|
8139
8177
|
background-color: #7E8588;
|
|
8140
8178
|
}
|
|
8141
8179
|
.menu-item.disabled.selected.has-popup {
|
|
@@ -8149,6 +8187,7 @@ iframe {
|
|
|
8149
8187
|
overflow: hidden;
|
|
8150
8188
|
text-overflow: ellipsis;
|
|
8151
8189
|
white-space: nowrap;
|
|
8190
|
+
margin-top: 1px;
|
|
8152
8191
|
}
|
|
8153
8192
|
.menu-item > .font-icon {
|
|
8154
8193
|
font-size: 16px;
|
|
@@ -8235,6 +8274,7 @@ iframe {
|
|
|
8235
8274
|
overflow: hidden;
|
|
8236
8275
|
text-overflow: ellipsis;
|
|
8237
8276
|
white-space: nowrap;
|
|
8277
|
+
margin-top: 1px;
|
|
8238
8278
|
}
|
|
8239
8279
|
.menu-button > .icon {
|
|
8240
8280
|
/* Padding only relevant for icons larger than the container */
|
|
@@ -8286,18 +8326,18 @@ iframe {
|
|
|
8286
8326
|
background-color: rgba(255, 255, 255, 0.18);
|
|
8287
8327
|
}
|
|
8288
8328
|
.menu-button.selected {
|
|
8289
|
-
color: #
|
|
8329
|
+
color: #0E1316;
|
|
8290
8330
|
background-color: #71b0e8;
|
|
8291
8331
|
border-color: #71b0e8;
|
|
8292
8332
|
}
|
|
8293
8333
|
.menu-button.selected:hover {
|
|
8294
|
-
background-color: #
|
|
8295
|
-
border-color: #
|
|
8334
|
+
background-color: #94c4ee;
|
|
8335
|
+
border-color: #94c4ee;
|
|
8296
8336
|
}
|
|
8297
8337
|
.menu-button.selected.active,
|
|
8298
8338
|
.menu-button.selected:active {
|
|
8299
|
-
background-color: #
|
|
8300
|
-
border-color: #
|
|
8339
|
+
background-color: #a6cdf1;
|
|
8340
|
+
border-color: #a6cdf1;
|
|
8301
8341
|
}
|
|
8302
8342
|
.menu-button.selected.has-popup {
|
|
8303
8343
|
color: #71b0e8;
|
|
@@ -8312,22 +8352,22 @@ iframe {
|
|
|
8312
8352
|
background-color: #71b0e8;
|
|
8313
8353
|
/* border is necessary to align the text with text from buttons with a real border */
|
|
8314
8354
|
border-color: #71b0e8;
|
|
8315
|
-
color: #
|
|
8355
|
+
color: #0E1316;
|
|
8316
8356
|
}
|
|
8317
8357
|
.menu-button.default:hover {
|
|
8318
|
-
background-color: #
|
|
8319
|
-
border-color: #
|
|
8358
|
+
background-color: #94c4ee;
|
|
8359
|
+
border-color: #94c4ee;
|
|
8320
8360
|
}
|
|
8321
8361
|
.menu-button.default:active,
|
|
8322
8362
|
.menu-button.default.active {
|
|
8323
|
-
color: #
|
|
8324
|
-
background-color: #
|
|
8325
|
-
border-color: #
|
|
8363
|
+
color: #0E1316;
|
|
8364
|
+
background-color: #a6cdf1;
|
|
8365
|
+
border-color: #a6cdf1;
|
|
8326
8366
|
}
|
|
8327
8367
|
.menu-button.default.selected {
|
|
8328
|
-
color: #
|
|
8329
|
-
background-color: #
|
|
8330
|
-
border-color: #
|
|
8368
|
+
color: #0E1316;
|
|
8369
|
+
background-color: #a6cdf1;
|
|
8370
|
+
border-color: #a6cdf1;
|
|
8331
8371
|
}
|
|
8332
8372
|
.menu-button.default:focus {
|
|
8333
8373
|
outline: none;
|
|
@@ -8355,7 +8395,7 @@ iframe {
|
|
|
8355
8395
|
}
|
|
8356
8396
|
.menu-button:disabled.selected,
|
|
8357
8397
|
.menu-button.disabled.selected {
|
|
8358
|
-
color: #
|
|
8398
|
+
color: #0E1316;
|
|
8359
8399
|
background-color: #7E8588;
|
|
8360
8400
|
border-color: #7E8588;
|
|
8361
8401
|
}
|
|
@@ -8413,7 +8453,7 @@ iframe {
|
|
|
8413
8453
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
8414
8454
|
*/
|
|
8415
8455
|
.context-menu-popup {
|
|
8416
|
-
background-color: #
|
|
8456
|
+
background-color: #3B494F;
|
|
8417
8457
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
8418
8458
|
border-radius: 8px;
|
|
8419
8459
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -8446,7 +8486,7 @@ iframe {
|
|
|
8446
8486
|
.context-menu {
|
|
8447
8487
|
position: absolute;
|
|
8448
8488
|
margin: 6px 0;
|
|
8449
|
-
background-color: #
|
|
8489
|
+
background-color: #3B494F;
|
|
8450
8490
|
}
|
|
8451
8491
|
.context-menu > .menu-item {
|
|
8452
8492
|
display: flex;
|
|
@@ -8472,12 +8512,16 @@ iframe {
|
|
|
8472
8512
|
.context-menu > .menu-item.selected {
|
|
8473
8513
|
background-color: rgba(113, 176, 232, 0.09);
|
|
8474
8514
|
}
|
|
8515
|
+
.context-menu > .menu-item.selected.has-popup {
|
|
8516
|
+
color: #E9EBEB;
|
|
8517
|
+
}
|
|
8518
|
+
.context-menu > .menu-item.selected.has-popup.disabled {
|
|
8519
|
+
color: #7E8588;
|
|
8520
|
+
background-color: rgba(113, 176, 232, 0.09);
|
|
8521
|
+
}
|
|
8475
8522
|
.context-menu > .menu-item.selected > .submenu-icon {
|
|
8476
8523
|
transform: none;
|
|
8477
8524
|
}
|
|
8478
|
-
.context-menu > .menu-item.expanded {
|
|
8479
|
-
color: #71b0e8;
|
|
8480
|
-
}
|
|
8481
8525
|
.context-menu > .menu-item.expanded > .submenu-icon {
|
|
8482
8526
|
-webkit-transform: rotateX(180deg) translateY(-1px);
|
|
8483
8527
|
-ms-transform: rotateX(180deg) translateY(-1px);
|
|
@@ -8565,22 +8609,22 @@ iframe {
|
|
|
8565
8609
|
background-color: #71b0e8;
|
|
8566
8610
|
/* border is necessary to align the text with text from buttons with a real border */
|
|
8567
8611
|
border-color: #71b0e8;
|
|
8568
|
-
color: #
|
|
8612
|
+
color: #0E1316;
|
|
8569
8613
|
}
|
|
8570
8614
|
.combo-menu.menu-button.default > .menu-item:hover {
|
|
8571
|
-
background-color: #
|
|
8572
|
-
border-color: #
|
|
8615
|
+
background-color: #94c4ee;
|
|
8616
|
+
border-color: #94c4ee;
|
|
8573
8617
|
}
|
|
8574
8618
|
.combo-menu.menu-button.default > .menu-item:active,
|
|
8575
8619
|
.combo-menu.menu-button.default > .menu-item.active {
|
|
8576
|
-
color: #
|
|
8577
|
-
background-color: #
|
|
8578
|
-
border-color: #
|
|
8620
|
+
color: #0E1316;
|
|
8621
|
+
background-color: #a6cdf1;
|
|
8622
|
+
border-color: #a6cdf1;
|
|
8579
8623
|
}
|
|
8580
8624
|
.combo-menu.menu-button.default > .menu-item.selected {
|
|
8581
|
-
color: #
|
|
8582
|
-
background-color: #
|
|
8583
|
-
border-color: #
|
|
8625
|
+
color: #0E1316;
|
|
8626
|
+
background-color: #a6cdf1;
|
|
8627
|
+
border-color: #a6cdf1;
|
|
8584
8628
|
}
|
|
8585
8629
|
.combo-menu.menu-button.default > .menu-item:focus {
|
|
8586
8630
|
outline: none;
|
|
@@ -8588,11 +8632,11 @@ iframe {
|
|
|
8588
8632
|
border-color: #4598e1;
|
|
8589
8633
|
}
|
|
8590
8634
|
.combo-menu.menu-button.default > .menu-item::before {
|
|
8591
|
-
background-color: #
|
|
8635
|
+
background-color: #0E1316;
|
|
8592
8636
|
}
|
|
8593
8637
|
.combo-menu.menu-button.default > .menu-item.selected {
|
|
8594
|
-
background-color: #
|
|
8595
|
-
border-color: #
|
|
8638
|
+
background-color: #a6cdf1;
|
|
8639
|
+
border-color: #a6cdf1;
|
|
8596
8640
|
}
|
|
8597
8641
|
.combo-menu.menu-button.default > .menu-item.disabled {
|
|
8598
8642
|
color: rgba(255, 255, 255, 0.4);
|
|
@@ -8650,7 +8694,7 @@ iframe {
|
|
|
8650
8694
|
background: linear-gradient(180deg, #014786 -145%, #9dc8ef 56%);
|
|
8651
8695
|
}
|
|
8652
8696
|
.profile-menu.menu-item > .icon.font-icon {
|
|
8653
|
-
color: #
|
|
8697
|
+
color: #0E1316;
|
|
8654
8698
|
}
|
|
8655
8699
|
.profile-menu.menu-item > .icon.image-icon {
|
|
8656
8700
|
object-fit: cover;
|
|
@@ -8888,7 +8932,7 @@ iframe {
|
|
|
8888
8932
|
left: 0;
|
|
8889
8933
|
min-width: 200px;
|
|
8890
8934
|
max-width: 473px;
|
|
8891
|
-
background-color: #
|
|
8935
|
+
background-color: #3B494F;
|
|
8892
8936
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
8893
8937
|
border-radius: 8px;
|
|
8894
8938
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -8922,17 +8966,17 @@ iframe {
|
|
|
8922
8966
|
border-color: rgba(255, 255, 255, 0.12);
|
|
8923
8967
|
}
|
|
8924
8968
|
.messagebox.info > .box-buttons > .box-button.default {
|
|
8925
|
-
color: #
|
|
8969
|
+
color: #0E1316;
|
|
8926
8970
|
background-color: #71b0e8;
|
|
8927
8971
|
}
|
|
8928
8972
|
.messagebox.info > .box-buttons > .box-button.default:hover {
|
|
8929
|
-
background-color: #
|
|
8930
|
-
border-color: #
|
|
8973
|
+
background-color: #94c4ee;
|
|
8974
|
+
border-color: #94c4ee;
|
|
8931
8975
|
}
|
|
8932
8976
|
.messagebox.info > .box-buttons > .box-button.default.active,
|
|
8933
8977
|
.messagebox.info > .box-buttons > .box-button.default:active {
|
|
8934
|
-
background-color: #
|
|
8935
|
-
border-color: #
|
|
8978
|
+
background-color: #a6cdf1;
|
|
8979
|
+
border-color: #a6cdf1;
|
|
8936
8980
|
}
|
|
8937
8981
|
.messagebox.info > .box-buttons > .box-button.default.keyboard-navigation {
|
|
8938
8982
|
outline: none;
|
|
@@ -8968,17 +9012,17 @@ iframe {
|
|
|
8968
9012
|
border-color: rgba(255, 255, 255, 0.12);
|
|
8969
9013
|
}
|
|
8970
9014
|
.messagebox.error > .box-buttons > .box-button.default {
|
|
8971
|
-
color: #
|
|
9015
|
+
color: #0E1316;
|
|
8972
9016
|
background-color: #FF8888;
|
|
8973
9017
|
}
|
|
8974
9018
|
.messagebox.error > .box-buttons > .box-button.default:hover {
|
|
8975
|
-
background-color: #
|
|
8976
|
-
border-color: #
|
|
9019
|
+
background-color: #ffa7a7;
|
|
9020
|
+
border-color: #ffa7a7;
|
|
8977
9021
|
}
|
|
8978
9022
|
.messagebox.error > .box-buttons > .box-button.default.active,
|
|
8979
9023
|
.messagebox.error > .box-buttons > .box-button.default:active {
|
|
8980
|
-
background-color: #
|
|
8981
|
-
border-color: #
|
|
9024
|
+
background-color: #ffbbbb;
|
|
9025
|
+
border-color: #ffbbbb;
|
|
8982
9026
|
}
|
|
8983
9027
|
.messagebox.error > .box-buttons > .box-button.default.keyboard-navigation {
|
|
8984
9028
|
outline: none;
|
|
@@ -9014,17 +9058,17 @@ iframe {
|
|
|
9014
9058
|
border-color: rgba(255, 255, 255, 0.12);
|
|
9015
9059
|
}
|
|
9016
9060
|
.messagebox.warning > .box-buttons > .box-button.default {
|
|
9017
|
-
color: #
|
|
9061
|
+
color: #0E1316;
|
|
9018
9062
|
background-color: #FFBE6B;
|
|
9019
9063
|
}
|
|
9020
9064
|
.messagebox.warning > .box-buttons > .box-button.default:hover {
|
|
9021
|
-
background-color: #
|
|
9022
|
-
border-color: #
|
|
9065
|
+
background-color: #ffd094;
|
|
9066
|
+
border-color: #ffd094;
|
|
9023
9067
|
}
|
|
9024
9068
|
.messagebox.warning > .box-buttons > .box-button.default.active,
|
|
9025
9069
|
.messagebox.warning > .box-buttons > .box-button.default:active {
|
|
9026
|
-
background-color: #
|
|
9027
|
-
border-color: #
|
|
9070
|
+
background-color: #ffd9a8;
|
|
9071
|
+
border-color: #ffd9a8;
|
|
9028
9072
|
}
|
|
9029
9073
|
.messagebox.warning > .box-buttons > .box-button.default.keyboard-navigation {
|
|
9030
9074
|
outline: none;
|
|
@@ -9060,17 +9104,17 @@ iframe {
|
|
|
9060
9104
|
border-color: rgba(255, 255, 255, 0.12);
|
|
9061
9105
|
}
|
|
9062
9106
|
.messagebox.ok > .box-buttons > .box-button.default {
|
|
9063
|
-
color: #
|
|
9107
|
+
color: #0E1316;
|
|
9064
9108
|
background-color: #62e7ce;
|
|
9065
9109
|
}
|
|
9066
9110
|
.messagebox.ok > .box-buttons > .box-button.default:hover {
|
|
9067
|
-
background-color: #
|
|
9068
|
-
border-color: #
|
|
9111
|
+
background-color: #85ecd9;
|
|
9112
|
+
border-color: #85ecd9;
|
|
9069
9113
|
}
|
|
9070
9114
|
.messagebox.ok > .box-buttons > .box-button.default.active,
|
|
9071
9115
|
.messagebox.ok > .box-buttons > .box-button.default:active {
|
|
9072
|
-
background-color: #
|
|
9073
|
-
border-color: #
|
|
9116
|
+
background-color: #a0f0e1;
|
|
9117
|
+
border-color: #a0f0e1;
|
|
9074
9118
|
}
|
|
9075
9119
|
.messagebox.ok > .box-buttons > .box-button.default.keyboard-navigation {
|
|
9076
9120
|
outline: none;
|
|
@@ -9151,7 +9195,7 @@ iframe {
|
|
|
9151
9195
|
text-align: center;
|
|
9152
9196
|
}
|
|
9153
9197
|
.messagebox-header > .messagebox-icon {
|
|
9154
|
-
color: #
|
|
9198
|
+
color: #0E1316;
|
|
9155
9199
|
font-size: 14px;
|
|
9156
9200
|
border-radius: 50%;
|
|
9157
9201
|
}
|
|
@@ -9211,7 +9255,7 @@ iframe {
|
|
|
9211
9255
|
}
|
|
9212
9256
|
}
|
|
9213
9257
|
/*
|
|
9214
|
-
* Copyright (c) 2010-
|
|
9258
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9215
9259
|
* All rights reserved. This program and the accompanying materials
|
|
9216
9260
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9217
9261
|
* which accompanies this distribution, and is available at
|
|
@@ -9221,10 +9265,13 @@ iframe {
|
|
|
9221
9265
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
9222
9266
|
*/
|
|
9223
9267
|
.mode {
|
|
9224
|
-
|
|
9268
|
+
--padding-x: 12px;
|
|
9269
|
+
--padding-y: 6px;
|
|
9270
|
+
--border-width: 1px;
|
|
9271
|
+
border: var(--border-width) solid rgba(255, 255, 255, 0.25);
|
|
9225
9272
|
border-radius: 0;
|
|
9226
9273
|
flex: 1 1 0;
|
|
9227
|
-
padding:
|
|
9274
|
+
padding: var(--padding-y) var(--padding-x);
|
|
9228
9275
|
overflow: hidden;
|
|
9229
9276
|
text-overflow: ellipsis;
|
|
9230
9277
|
}
|
|
@@ -9239,16 +9286,16 @@ iframe {
|
|
|
9239
9286
|
}
|
|
9240
9287
|
.mode:not(.last):not(.selected) {
|
|
9241
9288
|
border-right: none;
|
|
9242
|
-
padding-right:
|
|
9289
|
+
padding-right: calc(var(--padding-x) + var(--border-width));
|
|
9243
9290
|
/* account for the missing border, so that text does not jump */
|
|
9244
9291
|
}
|
|
9245
9292
|
.mode.after-selected {
|
|
9246
9293
|
border-left: none;
|
|
9247
|
-
padding-left:
|
|
9294
|
+
padding-left: calc(var(--padding-x) + var(--border-width));
|
|
9248
9295
|
/* account for the missing border, so that text does not jump */
|
|
9249
9296
|
}
|
|
9250
9297
|
.mode.selected {
|
|
9251
|
-
color: #
|
|
9298
|
+
color: #0E1316;
|
|
9252
9299
|
cursor: default;
|
|
9253
9300
|
}
|
|
9254
9301
|
.mode.selected:hover {
|
|
@@ -9269,26 +9316,17 @@ iframe {
|
|
|
9269
9316
|
.mode > .icon.with-label {
|
|
9270
9317
|
margin-right: 8px;
|
|
9271
9318
|
}
|
|
9272
|
-
.mode-selector.alternative {
|
|
9273
|
-
border: 3px solid transparent;
|
|
9274
|
-
}
|
|
9275
9319
|
.mode-selector.alternative > .mode {
|
|
9320
|
+
--border-width: 0px;
|
|
9276
9321
|
color: #E9EBEB;
|
|
9277
|
-
border: none;
|
|
9278
9322
|
background-color: transparent;
|
|
9279
9323
|
border-radius: 3px;
|
|
9280
9324
|
}
|
|
9281
|
-
.mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9282
|
-
padding-right: 12px;
|
|
9283
|
-
}
|
|
9284
|
-
.mode-selector.alternative > .mode.after-selected {
|
|
9285
|
-
padding-left: 12px;
|
|
9286
|
-
}
|
|
9287
9325
|
.mode-selector.alternative > .mode:hover {
|
|
9288
|
-
background-color:
|
|
9326
|
+
background-color: #1F2428;
|
|
9289
9327
|
}
|
|
9290
9328
|
.mode-selector.alternative > .mode:active {
|
|
9291
|
-
background-color:
|
|
9329
|
+
background-color: #3B494F;
|
|
9292
9330
|
}
|
|
9293
9331
|
.mode-selector.alternative > .mode.selected {
|
|
9294
9332
|
color: #71b0e8;
|
|
@@ -9298,7 +9336,7 @@ iframe {
|
|
|
9298
9336
|
background-color: transparent;
|
|
9299
9337
|
}
|
|
9300
9338
|
.mode-selector.alternative > .mode.selected.disabled {
|
|
9301
|
-
background-color: #
|
|
9339
|
+
background-color: #252F34;
|
|
9302
9340
|
}
|
|
9303
9341
|
.mode-selector.alternative > .mode.mode-selector-dragging {
|
|
9304
9342
|
background-color: transparent;
|
|
@@ -9310,24 +9348,11 @@ iframe {
|
|
|
9310
9348
|
cursor: default;
|
|
9311
9349
|
}
|
|
9312
9350
|
.dense .mode-selector > .mode {
|
|
9313
|
-
padding:
|
|
9314
|
-
|
|
9315
|
-
.dense .mode-selector > .mode:not(.last):not(.selected) {
|
|
9316
|
-
padding-right: 6px;
|
|
9317
|
-
/* account for the missing border, so that text does not jump */
|
|
9318
|
-
}
|
|
9319
|
-
.dense .mode-selector > .mode.after-selected {
|
|
9320
|
-
padding-left: 6px;
|
|
9321
|
-
/* account for the missing border, so that text does not jump */
|
|
9322
|
-
}
|
|
9323
|
-
.dense .mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9324
|
-
padding-right: 5px;
|
|
9325
|
-
}
|
|
9326
|
-
.dense .mode-selector.alternative > .mode.after-selected {
|
|
9327
|
-
padding-left: 5px;
|
|
9351
|
+
--padding-x: 5px;
|
|
9352
|
+
--padding-y: 3px;
|
|
9328
9353
|
}
|
|
9329
9354
|
/*
|
|
9330
|
-
* Copyright (c) 2010-
|
|
9355
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9331
9356
|
* All rights reserved. This program and the accompanying materials
|
|
9332
9357
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9333
9358
|
* which accompanies this distribution, and is available at
|
|
@@ -9347,15 +9372,16 @@ iframe {
|
|
|
9347
9372
|
display: none;
|
|
9348
9373
|
}
|
|
9349
9374
|
.mode-selector.alternative {
|
|
9350
|
-
background-color:
|
|
9375
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
9351
9376
|
border-radius: 3px;
|
|
9377
|
+
border: 3px solid transparent;
|
|
9352
9378
|
}
|
|
9353
9379
|
.mode-selector.alternative:not(.disabled) > .mode-slider {
|
|
9354
9380
|
display: block;
|
|
9355
9381
|
position: absolute;
|
|
9356
9382
|
top: 0;
|
|
9357
9383
|
height: 100%;
|
|
9358
|
-
background-color: #
|
|
9384
|
+
background-color: #2C363A;
|
|
9359
9385
|
border-radius: 3px;
|
|
9360
9386
|
transition: left 500ms ease, width 500ms ease;
|
|
9361
9387
|
}
|
|
@@ -9465,8 +9491,8 @@ iframe {
|
|
|
9465
9491
|
flex-shrink: 0;
|
|
9466
9492
|
}
|
|
9467
9493
|
.notification-icon.font-icon {
|
|
9468
|
-
color: #
|
|
9469
|
-
background-color: #
|
|
9494
|
+
color: #0E1316;
|
|
9495
|
+
background-color: #252F34;
|
|
9470
9496
|
font-size: 14px;
|
|
9471
9497
|
border-radius: 50%;
|
|
9472
9498
|
}
|
|
@@ -9560,7 +9586,7 @@ iframe {
|
|
|
9560
9586
|
}
|
|
9561
9587
|
.planner-scale > .timeline > .timeline-large {
|
|
9562
9588
|
height: 50%;
|
|
9563
|
-
background-color: #
|
|
9589
|
+
background-color: #1F2428;
|
|
9564
9590
|
line-height: 22.5px;
|
|
9565
9591
|
}
|
|
9566
9592
|
.planner-scale > .timeline > .timeline-large > .scale-item > .planner-large-scale-item-line {
|
|
@@ -9626,7 +9652,7 @@ iframe {
|
|
|
9626
9652
|
top: 0;
|
|
9627
9653
|
}
|
|
9628
9654
|
.planner-resource > .resource-cells > .selector > .selector-resize-left {
|
|
9629
|
-
background-color: #
|
|
9655
|
+
background-color: #252F34;
|
|
9630
9656
|
border-left: 2px solid #71b0e8;
|
|
9631
9657
|
border-right: 2px solid #71b0e8;
|
|
9632
9658
|
position: absolute;
|
|
@@ -9637,7 +9663,7 @@ iframe {
|
|
|
9637
9663
|
cursor: col-resize;
|
|
9638
9664
|
}
|
|
9639
9665
|
.planner-resource > .resource-cells > .selector > .selector-resize-right {
|
|
9640
|
-
background-color: #
|
|
9666
|
+
background-color: #252F34;
|
|
9641
9667
|
border-left: 2px solid #71b0e8;
|
|
9642
9668
|
border-right: 2px solid #71b0e8;
|
|
9643
9669
|
position: absolute;
|
|
@@ -9651,7 +9677,7 @@ iframe {
|
|
|
9651
9677
|
position: absolute;
|
|
9652
9678
|
top: 1px;
|
|
9653
9679
|
width: 0;
|
|
9654
|
-
color: #
|
|
9680
|
+
color: #0E1316;
|
|
9655
9681
|
height: 27px;
|
|
9656
9682
|
line-height: 27px;
|
|
9657
9683
|
background-color: #62e7ce;
|
|
@@ -9786,7 +9812,8 @@ iframe {
|
|
|
9786
9812
|
cursor: pointer;
|
|
9787
9813
|
}
|
|
9788
9814
|
.planner-mode {
|
|
9789
|
-
|
|
9815
|
+
padding: 0 8px;
|
|
9816
|
+
min-width: 65px;
|
|
9790
9817
|
text-align: center;
|
|
9791
9818
|
border-top: 1px solid rgba(255, 255, 255, 0.25);
|
|
9792
9819
|
border-bottom: 1px solid rgba(255, 255, 255, 0.25);
|
|
@@ -9960,7 +9987,7 @@ iframe {
|
|
|
9960
9987
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
9961
9988
|
*/
|
|
9962
9989
|
.mobile-popup {
|
|
9963
|
-
background-color: #
|
|
9990
|
+
background-color: #2E3C41;
|
|
9964
9991
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
9965
9992
|
border-top-left-radius: 12px;
|
|
9966
9993
|
border-top-right-radius: 12px;
|
|
@@ -10034,7 +10061,7 @@ iframe {
|
|
|
10034
10061
|
.touch-popup {
|
|
10035
10062
|
position: absolute;
|
|
10036
10063
|
overflow: hidden;
|
|
10037
|
-
background-color: #
|
|
10064
|
+
background-color: #3B494F;
|
|
10038
10065
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
10039
10066
|
border-radius: 8px;
|
|
10040
10067
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -10108,7 +10135,7 @@ iframe {
|
|
|
10108
10135
|
animation-fill-mode: forwards;
|
|
10109
10136
|
}
|
|
10110
10137
|
.widget-popup {
|
|
10111
|
-
background-color: #
|
|
10138
|
+
background-color: #2E3C41;
|
|
10112
10139
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
10113
10140
|
border-radius: 12px;
|
|
10114
10141
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -10304,9 +10331,13 @@ iframe {
|
|
|
10304
10331
|
pointer-events: none;
|
|
10305
10332
|
z-index: 1;
|
|
10306
10333
|
--scroll-shadow-color: rgba(0, 0, 0, 0.7);
|
|
10307
|
-
--scroll-shadow-size:
|
|
10308
|
-
--scroll-shadow-blur:
|
|
10309
|
-
--scroll-shadow-spread:
|
|
10334
|
+
--scroll-shadow-size: 14px;
|
|
10335
|
+
--scroll-shadow-blur: 14px;
|
|
10336
|
+
--scroll-shadow-spread: 15px;
|
|
10337
|
+
--scroll-shadow-inset-top: 0;
|
|
10338
|
+
--scroll-shadow-inset-right: 0;
|
|
10339
|
+
--scroll-shadow-inset-bottom: 0;
|
|
10340
|
+
--scroll-shadow-inset-left: 0;
|
|
10310
10341
|
}
|
|
10311
10342
|
.scroll-shadow.top {
|
|
10312
10343
|
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;
|
|
@@ -10354,15 +10385,15 @@ iframe {
|
|
|
10354
10385
|
box-shadow: inset 0 0 0 0 transparent, inset calc(-1 * var(--scroll-shadow-size)) 0 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;
|
|
10355
10386
|
}
|
|
10356
10387
|
.scroll-shadow.gradient {
|
|
10357
|
-
--scroll-shadow-color: #
|
|
10388
|
+
--scroll-shadow-color: #252F34;
|
|
10358
10389
|
--scroll-shadow-size: 20px;
|
|
10359
10390
|
--scroll-shadow-blur: 15px;
|
|
10360
10391
|
--scroll-shadow-spread: 15px;
|
|
10361
10392
|
}
|
|
10362
10393
|
.scroll-shadow.large {
|
|
10363
|
-
--scroll-shadow-size:
|
|
10364
|
-
--scroll-shadow-blur:
|
|
10365
|
-
--scroll-shadow-spread:
|
|
10394
|
+
--scroll-shadow-size: 14px;
|
|
10395
|
+
--scroll-shadow-blur: 14px;
|
|
10396
|
+
--scroll-shadow-spread: 14px;
|
|
10366
10397
|
}
|
|
10367
10398
|
/*
|
|
10368
10399
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
@@ -10456,12 +10487,12 @@ iframe {
|
|
|
10456
10487
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
10457
10488
|
border-radius: 8px;
|
|
10458
10489
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
10459
|
-
background-color: #
|
|
10490
|
+
background-color: #3B494F;
|
|
10460
10491
|
/* Helper class used during width calculation - required on very narrow screens (e.g. Word AddIn) */
|
|
10461
10492
|
}
|
|
10462
10493
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
10463
10494
|
.busyindicator {
|
|
10464
|
-
background-color: rgba(
|
|
10495
|
+
background-color: rgba(59, 73, 79, 0.8);
|
|
10465
10496
|
-webkit-backdrop-filter: blur(15px);
|
|
10466
10497
|
backdrop-filter: blur(15px);
|
|
10467
10498
|
}
|
|
@@ -10484,7 +10515,7 @@ iframe {
|
|
|
10484
10515
|
border-color: rgba(255, 255, 255, 0.12);
|
|
10485
10516
|
}
|
|
10486
10517
|
.busyindicator > .box-buttons > .box-button.default {
|
|
10487
|
-
color: #
|
|
10518
|
+
color: #0E1316;
|
|
10488
10519
|
background-color: #71b0e8;
|
|
10489
10520
|
}
|
|
10490
10521
|
.busyindicator > .box-buttons > .box-button.default:hover {
|
|
@@ -10638,7 +10669,7 @@ input[type=range]:not(.ms-edge)::-webkit-slider-runnable-track {
|
|
|
10638
10669
|
}
|
|
10639
10670
|
input[type=range]:not(.ms-edge)::-webkit-slider-thumb {
|
|
10640
10671
|
box-sizing: border-box;
|
|
10641
|
-
border: 1px solid #
|
|
10672
|
+
border: 1px solid #0E1316;
|
|
10642
10673
|
height: 16px;
|
|
10643
10674
|
width: 16px;
|
|
10644
10675
|
border-radius: 8px;
|
|
@@ -10659,7 +10690,7 @@ input[type=range]::-moz-range-track {
|
|
|
10659
10690
|
}
|
|
10660
10691
|
input[type=range]::-moz-range-thumb {
|
|
10661
10692
|
box-sizing: border-box;
|
|
10662
|
-
border: 1.5px solid #
|
|
10693
|
+
border: 1.5px solid #0E1316;
|
|
10663
10694
|
height: 16px;
|
|
10664
10695
|
width: 16px;
|
|
10665
10696
|
border-radius: 8px;
|
|
@@ -10687,7 +10718,7 @@ input[type=range]::-ms-fill-upper {
|
|
|
10687
10718
|
}
|
|
10688
10719
|
input[type=range]::-ms-thumb {
|
|
10689
10720
|
box-sizing: border-box;
|
|
10690
|
-
border: 1px solid #
|
|
10721
|
+
border: 1px solid #0E1316;
|
|
10691
10722
|
height: 16px;
|
|
10692
10723
|
width: 16px;
|
|
10693
10724
|
border-radius: 8px;
|
|
@@ -11668,7 +11699,7 @@ Try these to switch between fonts:
|
|
|
11668
11699
|
/* scoutIcons: custom icons */
|
|
11669
11700
|
/* scoutIcons: awesome icons */
|
|
11670
11701
|
/*
|
|
11671
|
-
* Copyright (c) 2010-
|
|
11702
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11672
11703
|
* All rights reserved. This program and the accompanying materials
|
|
11673
11704
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11674
11705
|
* which accompanies this distribution, and is available at
|
|
@@ -11728,25 +11759,38 @@ Try these to switch between fonts:
|
|
|
11728
11759
|
background-color: rgba(255, 255, 255, 0.18);
|
|
11729
11760
|
color: #E9EBEB;
|
|
11730
11761
|
}
|
|
11731
|
-
#scout .tooltip-status
|
|
11762
|
+
#scout .tooltip-status {
|
|
11763
|
+
visibility: visible;
|
|
11764
|
+
cursor: pointer;
|
|
11765
|
+
}
|
|
11766
|
+
#scout .tooltip-status::before {
|
|
11767
|
+
content: '\E002';
|
|
11768
|
+
color: #A7ACAD;
|
|
11769
|
+
font-size: 16px;
|
|
11770
|
+
}
|
|
11771
|
+
#scout .tooltip-status:hover::before {
|
|
11772
|
+
background-color: rgba(255, 255, 255, 0.12);
|
|
11773
|
+
color: #BFC2C3;
|
|
11774
|
+
}
|
|
11775
|
+
#scout .tooltip-status:active::before,
|
|
11776
|
+
#scout .tooltip-status.selected::before {
|
|
11777
|
+
background-color: rgba(255, 255, 255, 0.18);
|
|
11778
|
+
color: #BFC2C3;
|
|
11779
|
+
}
|
|
11732
11780
|
#scout .info-status {
|
|
11733
11781
|
visibility: visible;
|
|
11734
11782
|
cursor: pointer;
|
|
11735
11783
|
}
|
|
11736
|
-
#scout .tooltip-status::before,
|
|
11737
11784
|
#scout .info-status::before {
|
|
11738
11785
|
content: '\E002';
|
|
11739
11786
|
color: #A7ACAD;
|
|
11740
11787
|
font-size: 16px;
|
|
11741
11788
|
}
|
|
11742
|
-
#scout .tooltip-status:hover::before,
|
|
11743
11789
|
#scout .info-status:hover::before {
|
|
11744
11790
|
background-color: rgba(255, 255, 255, 0.12);
|
|
11745
11791
|
color: #BFC2C3;
|
|
11746
11792
|
}
|
|
11747
|
-
#scout .tooltip-status:active::before,
|
|
11748
11793
|
#scout .info-status:active::before,
|
|
11749
|
-
#scout .tooltip-status.selected::before,
|
|
11750
11794
|
#scout .info-status.selected::before {
|
|
11751
11795
|
background-color: rgba(255, 255, 255, 0.18);
|
|
11752
11796
|
color: #BFC2C3;
|
|
@@ -11822,17 +11866,17 @@ Try these to switch between fonts:
|
|
|
11822
11866
|
#scout .chooser-popup {
|
|
11823
11867
|
position: absolute;
|
|
11824
11868
|
overflow: hidden;
|
|
11825
|
-
background-color: #
|
|
11869
|
+
background-color: #3B494F;
|
|
11826
11870
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
11827
11871
|
border-radius: 3px;
|
|
11828
11872
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
11829
11873
|
margin: 5px;
|
|
11830
11874
|
}
|
|
11831
11875
|
#scout .chooser-popup.touch {
|
|
11832
|
-
background-color: #
|
|
11876
|
+
background-color: #1F2428;
|
|
11833
11877
|
}
|
|
11834
11878
|
#scout .popup {
|
|
11835
|
-
background-color: #
|
|
11879
|
+
background-color: #2E3C41;
|
|
11836
11880
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
11837
11881
|
border-radius: 12px;
|
|
11838
11882
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -11846,21 +11890,21 @@ Try these to switch between fonts:
|
|
|
11846
11890
|
display: none;
|
|
11847
11891
|
}
|
|
11848
11892
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb > .scrollbar-thumb-handle {
|
|
11849
|
-
background-color: rgba(
|
|
11893
|
+
background-color: rgba(59, 73, 79, 0.3);
|
|
11850
11894
|
}
|
|
11851
11895
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.scrollbar-thumb-move > .scrollbar-thumb-handle,
|
|
11852
11896
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb:hover > .scrollbar-thumb-handle {
|
|
11853
|
-
background-color: rgba(
|
|
11897
|
+
background-color: rgba(59, 73, 79, 0.45);
|
|
11854
11898
|
}
|
|
11855
11899
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.container-too-small-for-thumb > .scrollbar-thumb-handle {
|
|
11856
|
-
background-color: rgba(
|
|
11900
|
+
background-color: rgba(59, 73, 79, 0.15);
|
|
11857
11901
|
}
|
|
11858
11902
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.container-too-small-for-thumb.scrollbar-thumb-move > .scrollbar-thumb-handle,
|
|
11859
11903
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.container-too-small-for-thumb.scrollbar-thumb:hover > .scrollbar-thumb-handle {
|
|
11860
|
-
background-color: rgba(
|
|
11904
|
+
background-color: rgba(59, 73, 79, 0.15);
|
|
11861
11905
|
}
|
|
11862
11906
|
/*
|
|
11863
|
-
* Copyright (c) 2010-
|
|
11907
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11864
11908
|
* All rights reserved. This program and the accompanying materials
|
|
11865
11909
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11866
11910
|
* which accompanies this distribution, and is available at
|
|
@@ -11940,7 +11984,7 @@ Try these to switch between fonts:
|
|
|
11940
11984
|
position: relative;
|
|
11941
11985
|
height: 22px;
|
|
11942
11986
|
border-radius: 11px;
|
|
11943
|
-
background-color:
|
|
11987
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
11944
11988
|
cursor: pointer;
|
|
11945
11989
|
border: solid 1px #7E8588;
|
|
11946
11990
|
--activated-border-color: #71b0e8;
|
|
@@ -11963,8 +12007,8 @@ Try these to switch between fonts:
|
|
|
11963
12007
|
border-color: var(--activated-border-color);
|
|
11964
12008
|
}
|
|
11965
12009
|
.switch-button.activated:before {
|
|
11966
|
-
background-color: #
|
|
11967
|
-
border-color: #
|
|
12010
|
+
background-color: #1F2428;
|
|
12011
|
+
border-color: #1F2428;
|
|
11968
12012
|
left: calc(100% - 18px);
|
|
11969
12013
|
}
|
|
11970
12014
|
.disabled > .switch-button {
|
|
@@ -11981,11 +12025,11 @@ Try these to switch between fonts:
|
|
|
11981
12025
|
border-color: #7E8588;
|
|
11982
12026
|
}
|
|
11983
12027
|
.disabled > .switch-button.activated::before {
|
|
11984
|
-
background-color: #
|
|
11985
|
-
border-color: #
|
|
12028
|
+
background-color: #1F2428;
|
|
12029
|
+
border-color: #1F2428;
|
|
11986
12030
|
}
|
|
11987
12031
|
/*
|
|
11988
|
-
* Copyright (c) 2010-
|
|
12032
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11989
12033
|
* All rights reserved. This program and the accompanying materials
|
|
11990
12034
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11991
12035
|
* which accompanies this distribution, and is available at
|
|
@@ -12034,6 +12078,13 @@ Try these to switch between fonts:
|
|
|
12034
12078
|
.table.table-row-check > .table-data > .table-row.selected::after {
|
|
12035
12079
|
display: none;
|
|
12036
12080
|
}
|
|
12081
|
+
.table.table-row-check > .table-data > .table-row:hover {
|
|
12082
|
+
background-color: rgba(255, 255, 255, 0.12);
|
|
12083
|
+
}
|
|
12084
|
+
.table.table-row-check > .table-data > .table-row.disabled,
|
|
12085
|
+
.table.table-row-check > .table-data.disabled > .table-row {
|
|
12086
|
+
background-color: transparent;
|
|
12087
|
+
}
|
|
12037
12088
|
.table.table-row-check > .table-data > .table-row.checked,
|
|
12038
12089
|
.table.table-row-check > .table-data > .table-row.checked.selected {
|
|
12039
12090
|
/* Mark checked rows with a background color */
|
|
@@ -12041,7 +12092,17 @@ Try these to switch between fonts:
|
|
|
12041
12092
|
}
|
|
12042
12093
|
.table.table-row-check > .table-data > .table-row.checked > .table-cell,
|
|
12043
12094
|
.table.table-row-check > .table-data > .table-row.checked.selected > .table-cell {
|
|
12044
|
-
color: #
|
|
12095
|
+
color: #0E1316;
|
|
12096
|
+
}
|
|
12097
|
+
.table.table-row-check > .table-data > .table-row.checked:hover,
|
|
12098
|
+
.table.table-row-check > .table-data > .table-row.checked.selected:hover {
|
|
12099
|
+
background-color: #94c4ee;
|
|
12100
|
+
}
|
|
12101
|
+
.table.table-row-check > .table-data > .table-row.disabled.checked,
|
|
12102
|
+
.table.table-row-check > .table-data.disabled > .table-row.checked,
|
|
12103
|
+
.table.table-row-check > .table-data > .table-row.disabled.checked.selected,
|
|
12104
|
+
.table.table-row-check > .table-data.disabled > .table-row.checked.selected {
|
|
12105
|
+
background-color: #7E8588;
|
|
12045
12106
|
}
|
|
12046
12107
|
.table.table-row-check.keyboard-navigation:focus > .table-data > .table-row.selected,
|
|
12047
12108
|
.table.table-row-check.keyboard-navigation.focused > .table-data > .table-row.selected {
|
|
@@ -12049,10 +12110,10 @@ Try these to switch between fonts:
|
|
|
12049
12110
|
}
|
|
12050
12111
|
.table.table-row-check.keyboard-navigation:focus > .table-data > .table-row.selected.checked,
|
|
12051
12112
|
.table.table-row-check.keyboard-navigation.focused > .table-data > .table-row.selected.checked {
|
|
12052
|
-
background-color: #
|
|
12113
|
+
background-color: #94c4ee;
|
|
12053
12114
|
}
|
|
12054
12115
|
.table.structured .table-row:not(.leaf) {
|
|
12055
|
-
background-color: #
|
|
12116
|
+
background-color: #1F2428;
|
|
12056
12117
|
font-weight: bold;
|
|
12057
12118
|
}
|
|
12058
12119
|
.table > .tile-accordion {
|
|
@@ -12071,24 +12132,30 @@ Try these to switch between fonts:
|
|
|
12071
12132
|
padding-bottom: 6px;
|
|
12072
12133
|
}
|
|
12073
12134
|
.table.dimmed-background {
|
|
12074
|
-
background-color: #
|
|
12135
|
+
background-color: #1F2428;
|
|
12075
12136
|
}
|
|
12076
12137
|
.table.dimmed-background > .menubar {
|
|
12077
12138
|
background-color: inherit;
|
|
12078
12139
|
}
|
|
12079
12140
|
.table > .filter-field {
|
|
12080
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12141
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12081
12142
|
}
|
|
12082
12143
|
.table > .filter-field:not(.focused).empty {
|
|
12083
12144
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12084
12145
|
}
|
|
12085
12146
|
.has-menubar.menubar-bottom.table > .filter-field {
|
|
12086
|
-
--filter-field-max-bottom: calc(50% - (
|
|
12147
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--controls-height)) / 2);
|
|
12087
12148
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
12088
12149
|
}
|
|
12089
12150
|
.has-menubar.menubar-bottom.table > .filter-field:not(.focused).empty {
|
|
12090
12151
|
--filter-field-max-bottom: calc(50% - (24px + var(--controls-height)) / 2);
|
|
12091
12152
|
}
|
|
12153
|
+
.has-cell-editor-popup.table > .filter-field {
|
|
12154
|
+
opacity: 0;
|
|
12155
|
+
visibility: hidden;
|
|
12156
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
12157
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
12158
|
+
}
|
|
12092
12159
|
.table-data {
|
|
12093
12160
|
position: relative;
|
|
12094
12161
|
overflow: hidden;
|
|
@@ -12253,7 +12320,7 @@ Try these to switch between fonts:
|
|
|
12253
12320
|
color: #E9EBEB;
|
|
12254
12321
|
}
|
|
12255
12322
|
.table-row.checked > .table-cell {
|
|
12256
|
-
color: #
|
|
12323
|
+
color: #0E1316;
|
|
12257
12324
|
}
|
|
12258
12325
|
.table-cell.empty,
|
|
12259
12326
|
.table-cell.icon-only {
|
|
@@ -12380,7 +12447,7 @@ Try these to switch between fonts:
|
|
|
12380
12447
|
margin-right: 8px;
|
|
12381
12448
|
}
|
|
12382
12449
|
.table-row.checked > .table-cell > .table-cell-icon {
|
|
12383
|
-
color: #
|
|
12450
|
+
color: #0E1316;
|
|
12384
12451
|
}
|
|
12385
12452
|
.table-aggregate {
|
|
12386
12453
|
overflow: hidden;
|
|
@@ -12396,7 +12463,7 @@ Try these to switch between fonts:
|
|
|
12396
12463
|
margin-top: 1px;
|
|
12397
12464
|
}
|
|
12398
12465
|
.table-aggregate-row {
|
|
12399
|
-
background-color: #
|
|
12466
|
+
background-color: #1F2428;
|
|
12400
12467
|
min-width: 100%;
|
|
12401
12468
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
12402
12469
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
@@ -12449,16 +12516,16 @@ Try these to switch between fonts:
|
|
|
12449
12516
|
background-color: rgba(21, 97, 167, 0.4);
|
|
12450
12517
|
}
|
|
12451
12518
|
.column-background-effect-gradient1-start {
|
|
12452
|
-
background-color: #
|
|
12519
|
+
background-color: #5a3437;
|
|
12453
12520
|
}
|
|
12454
12521
|
.column-background-effect-gradient1-end {
|
|
12455
|
-
background-color: #
|
|
12522
|
+
background-color: #1e544e;
|
|
12456
12523
|
}
|
|
12457
12524
|
.column-background-effect-gradient2-start {
|
|
12458
|
-
background-color: #
|
|
12525
|
+
background-color: #1e544e;
|
|
12459
12526
|
}
|
|
12460
12527
|
.column-background-effect-gradient2-end {
|
|
12461
|
-
background-color: #
|
|
12528
|
+
background-color: #5a3437;
|
|
12462
12529
|
}
|
|
12463
12530
|
/* key box */
|
|
12464
12531
|
.table-row > .key-box {
|
|
@@ -12585,7 +12652,7 @@ Try these to switch between fonts:
|
|
|
12585
12652
|
width: 100%;
|
|
12586
12653
|
white-space: nowrap;
|
|
12587
12654
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
12588
|
-
background-color: #
|
|
12655
|
+
background-color: #252F34;
|
|
12589
12656
|
}
|
|
12590
12657
|
.table-control-resize {
|
|
12591
12658
|
position: absolute;
|
|
@@ -12600,7 +12667,7 @@ Try these to switch between fonts:
|
|
|
12600
12667
|
position: absolute;
|
|
12601
12668
|
overflow: hidden;
|
|
12602
12669
|
outline: none;
|
|
12603
|
-
background-color: #
|
|
12670
|
+
background-color: #252F34;
|
|
12604
12671
|
bottom: 64px;
|
|
12605
12672
|
width: 100%;
|
|
12606
12673
|
/* Default value for TableControl.js */
|
|
@@ -12621,7 +12688,7 @@ Try these to switch between fonts:
|
|
|
12621
12688
|
width: 100%;
|
|
12622
12689
|
}
|
|
12623
12690
|
.table-control-content > .form {
|
|
12624
|
-
background-color: #
|
|
12691
|
+
background-color: #252F34;
|
|
12625
12692
|
}
|
|
12626
12693
|
.table-control-content > .form > .root-group-box > .group-box-body {
|
|
12627
12694
|
/* to make sure fields are not drawn over the menubar when making table control container very small */
|
|
@@ -12794,7 +12861,7 @@ Try these to switch between fonts:
|
|
|
12794
12861
|
position: relative;
|
|
12795
12862
|
white-space: nowrap;
|
|
12796
12863
|
overflow: hidden;
|
|
12797
|
-
background-color: #
|
|
12864
|
+
background-color: #1F2428;
|
|
12798
12865
|
border-bottom: 2px solid rgba(255, 255, 255, 0.12);
|
|
12799
12866
|
z-index: 0;
|
|
12800
12867
|
/* begin new stacking context */
|
|
@@ -12939,6 +13006,7 @@ Try these to switch between fonts:
|
|
|
12939
13006
|
overflow: hidden;
|
|
12940
13007
|
text-overflow: ellipsis;
|
|
12941
13008
|
white-space: nowrap;
|
|
13009
|
+
margin-top: 1px;
|
|
12942
13010
|
}
|
|
12943
13011
|
.table-header-item-state {
|
|
12944
13012
|
position: absolute;
|
|
@@ -13015,7 +13083,7 @@ Try these to switch between fonts:
|
|
|
13015
13083
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
13016
13084
|
*/
|
|
13017
13085
|
.table-header-menu {
|
|
13018
|
-
background-color: #
|
|
13086
|
+
background-color: #3B494F;
|
|
13019
13087
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13020
13088
|
border-radius: 8px;
|
|
13021
13089
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -13057,6 +13125,9 @@ Try these to switch between fonts:
|
|
|
13057
13125
|
vertical-align: top;
|
|
13058
13126
|
padding: 16px;
|
|
13059
13127
|
}
|
|
13128
|
+
.table-header-menu-actions > .table-header-menu-group > .table-header-menu-group-text {
|
|
13129
|
+
width: calc(100% + 12px);
|
|
13130
|
+
}
|
|
13060
13131
|
.table-header-menu-filters {
|
|
13061
13132
|
display: inline-block;
|
|
13062
13133
|
vertical-align: top;
|
|
@@ -13198,10 +13269,10 @@ Try these to switch between fonts:
|
|
|
13198
13269
|
content: '\E038';
|
|
13199
13270
|
}
|
|
13200
13271
|
.table-header-menu-command.color-gradient1 {
|
|
13201
|
-
background-image: linear-gradient(to right, #
|
|
13272
|
+
background-image: linear-gradient(to right, #5a3437, #1e544e);
|
|
13202
13273
|
}
|
|
13203
13274
|
.table-header-menu-command.color-gradient2 {
|
|
13204
|
-
background-image: linear-gradient(to right, #
|
|
13275
|
+
background-image: linear-gradient(to right, #1e544e, #5a3437);
|
|
13205
13276
|
}
|
|
13206
13277
|
.table-header-menu-command.color-bar-chart {
|
|
13207
13278
|
background-image: linear-gradient(to right, rgba(21, 97, 167, 0.4) 0, rgba(21, 97, 167, 0.4) 65%, #fff 65%, #fff 100%);
|
|
@@ -13228,11 +13299,11 @@ Try these to switch between fonts:
|
|
|
13228
13299
|
}
|
|
13229
13300
|
.table-header-menu-filter-table.table-row-check > .table-data {
|
|
13230
13301
|
margin-top: 0;
|
|
13231
|
-
padding: 3px
|
|
13302
|
+
padding: 3px;
|
|
13232
13303
|
}
|
|
13233
13304
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row {
|
|
13234
13305
|
border-radius: 3px;
|
|
13235
|
-
margin-bottom:
|
|
13306
|
+
margin-bottom: 2px;
|
|
13236
13307
|
}
|
|
13237
13308
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row.last {
|
|
13238
13309
|
margin-bottom: 0;
|
|
@@ -13569,7 +13640,7 @@ Try these to switch between fonts:
|
|
|
13569
13640
|
padding: 5px 4px 8px 8px;
|
|
13570
13641
|
max-width: 250px;
|
|
13571
13642
|
overflow: hidden;
|
|
13572
|
-
background-color: #
|
|
13643
|
+
background-color: #3B494F;
|
|
13573
13644
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13574
13645
|
border-radius: 3px;
|
|
13575
13646
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -13614,7 +13685,7 @@ Try these to switch between fonts:
|
|
|
13614
13685
|
*/
|
|
13615
13686
|
.time-picker-popup {
|
|
13616
13687
|
position: absolute;
|
|
13617
|
-
background-color: #
|
|
13688
|
+
background-color: #3B494F;
|
|
13618
13689
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13619
13690
|
border-radius: 3px;
|
|
13620
13691
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -13731,11 +13802,11 @@ Try these to switch between fonts:
|
|
|
13731
13802
|
background-color: rgba(255, 255, 255, 0.18);
|
|
13732
13803
|
}
|
|
13733
13804
|
.day-table > .hour-row > .minutes.selected {
|
|
13734
|
-
color: #
|
|
13805
|
+
color: #0E1316;
|
|
13735
13806
|
background-color: #71b0e8;
|
|
13736
13807
|
}
|
|
13737
13808
|
.day-table > .hour-row > .minutes.selected.now > .text {
|
|
13738
|
-
border-color: #
|
|
13809
|
+
border-color: #0E1316;
|
|
13739
13810
|
}
|
|
13740
13811
|
/*
|
|
13741
13812
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -13749,7 +13820,7 @@ Try these to switch between fonts:
|
|
|
13749
13820
|
*/
|
|
13750
13821
|
.tooltip {
|
|
13751
13822
|
position: absolute;
|
|
13752
|
-
background-color: #
|
|
13823
|
+
background-color: #3B494F;
|
|
13753
13824
|
border-radius: 3px;
|
|
13754
13825
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13755
13826
|
color: #BFC2C3;
|
|
@@ -13757,10 +13828,6 @@ Try these to switch between fonts:
|
|
|
13757
13828
|
max-width: 300px;
|
|
13758
13829
|
white-space: normal;
|
|
13759
13830
|
}
|
|
13760
|
-
.tooltip.has-menus {
|
|
13761
|
-
padding-top: 6px;
|
|
13762
|
-
padding-bottom: 6px;
|
|
13763
|
-
}
|
|
13764
13831
|
.tooltip-content {
|
|
13765
13832
|
padding: 8px 12px;
|
|
13766
13833
|
position: relative;
|
|
@@ -13776,6 +13843,7 @@ Try these to switch between fonts:
|
|
|
13776
13843
|
font-weight: bold;
|
|
13777
13844
|
padding-left: 16px;
|
|
13778
13845
|
padding-right: 16px;
|
|
13846
|
+
padding-top: 14px;
|
|
13779
13847
|
}
|
|
13780
13848
|
.tooltip-content .small {
|
|
13781
13849
|
font-size: 11px;
|
|
@@ -13787,6 +13855,11 @@ Try these to switch between fonts:
|
|
|
13787
13855
|
}
|
|
13788
13856
|
.tooltip-menus {
|
|
13789
13857
|
position: relative;
|
|
13858
|
+
background-color: inherit;
|
|
13859
|
+
padding-bottom: 6px;
|
|
13860
|
+
}
|
|
13861
|
+
.no-text > .tooltip-menus {
|
|
13862
|
+
padding-top: 6px;
|
|
13790
13863
|
}
|
|
13791
13864
|
.tooltip-menus > .menu-item {
|
|
13792
13865
|
display: flex;
|
|
@@ -13801,16 +13874,16 @@ Try these to switch between fonts:
|
|
|
13801
13874
|
padding-left: 5px;
|
|
13802
13875
|
}
|
|
13803
13876
|
.ok > .tooltip-menus > .menu-item {
|
|
13804
|
-
color: #
|
|
13877
|
+
color: #0E1316;
|
|
13805
13878
|
}
|
|
13806
13879
|
.info > .tooltip-menus > .menu-item {
|
|
13807
13880
|
color: #E9EBEB;
|
|
13808
13881
|
}
|
|
13809
13882
|
.warning > .tooltip-menus > .menu-item {
|
|
13810
|
-
color: #
|
|
13883
|
+
color: #0E1316;
|
|
13811
13884
|
}
|
|
13812
13885
|
.error > .tooltip-menus > .menu-item {
|
|
13813
|
-
color: #
|
|
13886
|
+
color: #0E1316;
|
|
13814
13887
|
}
|
|
13815
13888
|
.tooltip-arrow {
|
|
13816
13889
|
position: absolute;
|
|
@@ -13830,7 +13903,7 @@ Try these to switch between fonts:
|
|
|
13830
13903
|
.tooltip.error {
|
|
13831
13904
|
background-color: #FF8888;
|
|
13832
13905
|
border-width: 0;
|
|
13833
|
-
color: #
|
|
13906
|
+
color: #0E1316;
|
|
13834
13907
|
}
|
|
13835
13908
|
.tooltip.error > .tooltip-arrow {
|
|
13836
13909
|
background-color: #FF8888;
|
|
@@ -13838,7 +13911,7 @@ Try these to switch between fonts:
|
|
|
13838
13911
|
.tooltip.warning {
|
|
13839
13912
|
background-color: #FFBE6B;
|
|
13840
13913
|
border-width: 0;
|
|
13841
|
-
color: #
|
|
13914
|
+
color: #0E1316;
|
|
13842
13915
|
}
|
|
13843
13916
|
.tooltip.warning > .tooltip-arrow {
|
|
13844
13917
|
background-color: #FFBE6B;
|
|
@@ -13846,7 +13919,7 @@ Try these to switch between fonts:
|
|
|
13846
13919
|
.tooltip.ok {
|
|
13847
13920
|
background-color: #62e7ce;
|
|
13848
13921
|
border-width: 0;
|
|
13849
|
-
color: #
|
|
13922
|
+
color: #0E1316;
|
|
13850
13923
|
}
|
|
13851
13924
|
.tooltip.ok > .tooltip-arrow {
|
|
13852
13925
|
background-color: #62e7ce;
|
|
@@ -13875,7 +13948,7 @@ Try these to switch between fonts:
|
|
|
13875
13948
|
position: relative;
|
|
13876
13949
|
}
|
|
13877
13950
|
/*
|
|
13878
|
-
* Copyright (c) 2010-
|
|
13951
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
13879
13952
|
* All rights reserved. This program and the accompanying materials
|
|
13880
13953
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
13881
13954
|
* which accompanies this distribution, and is available at
|
|
@@ -13904,7 +13977,7 @@ Try these to switch between fonts:
|
|
|
13904
13977
|
border-color: #71b0e8;
|
|
13905
13978
|
}
|
|
13906
13979
|
.tree > .filter-field {
|
|
13907
|
-
--filter-field-max-bottom: calc(50% - (
|
|
13980
|
+
--filter-field-max-bottom: calc(50% - (var(--filter-field-height) + var(--menubar-height)) / 2);
|
|
13908
13981
|
bottom: calc(min(var(--filter-field-bottom), var(--filter-field-max-bottom)) + var(--menubar-height));
|
|
13909
13982
|
}
|
|
13910
13983
|
.tree > .filter-field:not(.focused).empty {
|
|
@@ -14024,7 +14097,7 @@ Try these to switch between fonts:
|
|
|
14024
14097
|
width: 10px;
|
|
14025
14098
|
border-radius: 1px;
|
|
14026
14099
|
height: 2px;
|
|
14027
|
-
background-color: #
|
|
14100
|
+
background-color: #0E1316;
|
|
14028
14101
|
}
|
|
14029
14102
|
.tree-node-checkbox > .check-box:not(.checked).children-checked.disabled {
|
|
14030
14103
|
border-color: rgba(255, 255, 255, 0.12);
|
|
@@ -14087,13 +14160,12 @@ Try these to switch between fonts:
|
|
|
14087
14160
|
}
|
|
14088
14161
|
.tree-node.lazy > .tree-node-control::before {
|
|
14089
14162
|
font-family: Arial, sans-serif;
|
|
14090
|
-
font-size: 13px;
|
|
14091
14163
|
content: '+';
|
|
14092
14164
|
/* Move to left because '+' sign is not as wide as 'arrow-down' */
|
|
14093
14165
|
margin-left: -2px;
|
|
14094
14166
|
}
|
|
14095
14167
|
.tree-node.expanded > .tree-node-control::before {
|
|
14096
|
-
/* This "imprecise" angle is a
|
|
14168
|
+
/* This "imprecise" angle is a workaround for firefox to prevent shifting the div a little when the animation finishes. */
|
|
14097
14169
|
/* See https://bugzilla.mozilla.org/show_bug.cgi?id=739176 */
|
|
14098
14170
|
-webkit-transform: rotate(89.99deg);
|
|
14099
14171
|
-ms-transform: rotate(89.99deg);
|
|
@@ -14272,7 +14344,7 @@ Try these to switch between fonts:
|
|
|
14272
14344
|
}
|
|
14273
14345
|
/* The default class is added if displayStyle is set to DEFAULT. If it is set to PLAIN no class will be added. */
|
|
14274
14346
|
.default-tile {
|
|
14275
|
-
background-color: #
|
|
14347
|
+
background-color: #252F34;
|
|
14276
14348
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
14277
14349
|
padding: 6px 8px;
|
|
14278
14350
|
}
|
|
@@ -14373,7 +14445,7 @@ Try these to switch between fonts:
|
|
|
14373
14445
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
14374
14446
|
*/
|
|
14375
14447
|
.tile-overview {
|
|
14376
|
-
background-color: #
|
|
14448
|
+
background-color: #1F2428;
|
|
14377
14449
|
position: relative;
|
|
14378
14450
|
height: 100%;
|
|
14379
14451
|
width: 100%;
|
|
@@ -14456,16 +14528,16 @@ Try these to switch between fonts:
|
|
|
14456
14528
|
border: none;
|
|
14457
14529
|
border-radius: 12px;
|
|
14458
14530
|
color: #BFC2C3;
|
|
14459
|
-
--tile-background-color: #
|
|
14531
|
+
--tile-background-color: #252F34;
|
|
14460
14532
|
background-color: var(--tile-background-color);
|
|
14461
14533
|
overflow: hidden;
|
|
14462
14534
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14463
14535
|
}
|
|
14464
14536
|
.tile.dashboard.inverted {
|
|
14465
|
-
box-shadow: 0 0 0 1px #
|
|
14537
|
+
box-shadow: 0 0 0 1px #252F34, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14466
14538
|
}
|
|
14467
14539
|
.tile.dashboard.inverted.color-alternative {
|
|
14468
|
-
box-shadow: 0 0 0 1px #
|
|
14540
|
+
box-shadow: 0 0 0 1px #252F34, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14469
14541
|
}
|
|
14470
14542
|
.dimmed-background .tile.dashboard {
|
|
14471
14543
|
box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.05);
|
|
@@ -14609,7 +14681,7 @@ Try these to switch between fonts:
|
|
|
14609
14681
|
animation: fade-out-from-current 0.15s;
|
|
14610
14682
|
}
|
|
14611
14683
|
.tile.dashboard.inverted {
|
|
14612
|
-
--tile-background-color: #
|
|
14684
|
+
--tile-background-color: #252F34;
|
|
14613
14685
|
color: #BFC2C3;
|
|
14614
14686
|
}
|
|
14615
14687
|
.tile.dashboard.inverted.disabled:not(.read-only) {
|
|
@@ -14647,7 +14719,12 @@ Try these to switch between fonts:
|
|
|
14647
14719
|
background-color: rgba(255, 255, 255, 0.18);
|
|
14648
14720
|
}
|
|
14649
14721
|
.tile.dashboard.inverted > .form-field.has-error > .status::before {
|
|
14650
|
-
color: #
|
|
14722
|
+
color: #FF8888;
|
|
14723
|
+
}
|
|
14724
|
+
.tile.dashboard.inverted > .form-field.has-error > .status:hover::before,
|
|
14725
|
+
.tile.dashboard.inverted > .form-field.has-error > .status:active::before,
|
|
14726
|
+
.tile.dashboard.inverted > .form-field.has-error > .status.selected::before {
|
|
14727
|
+
color: #ffbbbb;
|
|
14651
14728
|
}
|
|
14652
14729
|
.tile.dashboard.inverted > .form-field .scrollbar-thumb-handle {
|
|
14653
14730
|
background-color: rgba(255, 255, 255, 0.3);
|
|
@@ -14665,7 +14742,7 @@ Try these to switch between fonts:
|
|
|
14665
14742
|
background-color: rgba(255, 255, 255, 0.15);
|
|
14666
14743
|
}
|
|
14667
14744
|
.tile.dashboard.color-alternative {
|
|
14668
|
-
--tile-background-color: #
|
|
14745
|
+
--tile-background-color: #252F34;
|
|
14669
14746
|
color: #BFC2C3;
|
|
14670
14747
|
}
|
|
14671
14748
|
.tile.dashboard.color-alternative.disabled:not(.read-only) {
|
|
@@ -14687,7 +14764,7 @@ Try these to switch between fonts:
|
|
|
14687
14764
|
color: #b3d5f3;
|
|
14688
14765
|
}
|
|
14689
14766
|
.tile.dashboard.inverted.color-alternative {
|
|
14690
|
-
--tile-background-color: #
|
|
14767
|
+
--tile-background-color: #252F34;
|
|
14691
14768
|
color: #BFC2C3;
|
|
14692
14769
|
}
|
|
14693
14770
|
.tile.dashboard.inverted.color-alternative.disabled:not(.read-only) {
|
|
@@ -14719,14 +14796,14 @@ Try these to switch between fonts:
|
|
|
14719
14796
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14720
14797
|
}
|
|
14721
14798
|
.tile.dashboard.selected.inverted {
|
|
14722
|
-
--tile-background-color: #
|
|
14799
|
+
--tile-background-color: #252f34;
|
|
14723
14800
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14724
14801
|
}
|
|
14725
14802
|
.tile.dashboard.selected.color-alternative {
|
|
14726
14803
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14727
14804
|
}
|
|
14728
14805
|
.tile.dashboard.selected.inverted.color-alternative {
|
|
14729
|
-
--tile-background-color: #
|
|
14806
|
+
--tile-background-color: #252f34;
|
|
14730
14807
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14731
14808
|
}
|
|
14732
14809
|
.dimmed-background .tile.dashboard.selected {
|
|
@@ -14819,7 +14896,7 @@ Try these to switch between fonts:
|
|
|
14819
14896
|
background-color: inherit;
|
|
14820
14897
|
}
|
|
14821
14898
|
.button-tile.dashboard > .tile-button {
|
|
14822
|
-
background-color: #
|
|
14899
|
+
background-color: #252F34;
|
|
14823
14900
|
}
|
|
14824
14901
|
.button-tile.dashboard > .tile-button > .field > .label {
|
|
14825
14902
|
color: #71b0e8;
|
|
@@ -14835,7 +14912,7 @@ Try these to switch between fonts:
|
|
|
14835
14912
|
background-color: rgba(255, 255, 255, 0.18);
|
|
14836
14913
|
}
|
|
14837
14914
|
.button-tile.dashboard.inverted > .tile-button {
|
|
14838
|
-
background-color: #
|
|
14915
|
+
background-color: #252F34;
|
|
14839
14916
|
}
|
|
14840
14917
|
.button-tile.dashboard.inverted > .tile-button > .field > .label {
|
|
14841
14918
|
color: #71b0e8;
|
|
@@ -14853,7 +14930,7 @@ Try these to switch between fonts:
|
|
|
14853
14930
|
border-color: rgba(255, 255, 255, 0.18);
|
|
14854
14931
|
}
|
|
14855
14932
|
.button-tile.dashboard.color-alternative.inverted > .tile-button {
|
|
14856
|
-
background-color: #
|
|
14933
|
+
background-color: #252F34;
|
|
14857
14934
|
}
|
|
14858
14935
|
.button-tile.dashboard.color-alternative.inverted > .tile-button > .field > .label {
|
|
14859
14936
|
color: #71b0e8;
|
|
@@ -14970,7 +15047,7 @@ Try these to switch between fonts:
|
|
|
14970
15047
|
--scroll-shadow-size: 20px;
|
|
14971
15048
|
--scroll-shadow-blur: 15px;
|
|
14972
15049
|
--scroll-shadow-spread: 15px;
|
|
14973
|
-
--scroll-shadow-color: #
|
|
15050
|
+
--scroll-shadow-color: #252F34;
|
|
14974
15051
|
}
|
|
14975
15052
|
.tile.dashboard > .table-field > .table > .table-data > .table-row > .table-cell,
|
|
14976
15053
|
.tile.dashboard > .table-field > .table > .table-data > .table-row > .table-cell > .font-icon {
|
|
@@ -15007,7 +15084,7 @@ Try these to switch between fonts:
|
|
|
15007
15084
|
color: #BFC2C3;
|
|
15008
15085
|
}
|
|
15009
15086
|
.tile.dashboard.inverted > .table-field > .table > .table-data + .scroll-shadow {
|
|
15010
|
-
--scroll-shadow-color: #
|
|
15087
|
+
--scroll-shadow-color: #252F34;
|
|
15011
15088
|
}
|
|
15012
15089
|
.tile.dashboard.inverted > .table-field > .table > .menubar {
|
|
15013
15090
|
border-top-color: rgba(255, 255, 255, 0.25);
|
|
@@ -15043,7 +15120,7 @@ Try these to switch between fonts:
|
|
|
15043
15120
|
color: #BFC2C3;
|
|
15044
15121
|
}
|
|
15045
15122
|
.tile.dashboard.color-alternative.inverted > .table-field > .table > .table-data + .scroll-shadow {
|
|
15046
|
-
--scroll-shadow-color: #
|
|
15123
|
+
--scroll-shadow-color: #252F34;
|
|
15047
15124
|
}
|
|
15048
15125
|
.tile.dashboard.color-alternative.inverted > .table-field > .table > .menubar {
|
|
15049
15126
|
border-top-color: rgba(255, 255, 255, 0.25);
|
|
@@ -15052,7 +15129,7 @@ Try these to switch between fonts:
|
|
|
15052
15129
|
color: #BFC2C3;
|
|
15053
15130
|
}
|
|
15054
15131
|
/*
|
|
15055
|
-
* Copyright (c) 2010-
|
|
15132
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15056
15133
|
* All rights reserved. This program and the accompanying materials
|
|
15057
15134
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
15058
15135
|
* which accompanies this distribution, and is available at
|
|
@@ -15063,11 +15140,12 @@ Try these to switch between fonts:
|
|
|
15063
15140
|
*/
|
|
15064
15141
|
.filter-field {
|
|
15065
15142
|
position: absolute;
|
|
15066
|
-
--filter-field-
|
|
15067
|
-
--filter-field-
|
|
15143
|
+
--filter-field-height: 30px;
|
|
15144
|
+
--filter-field-bottom: 8px;
|
|
15145
|
+
--filter-field-max-bottom: calc(50% - var(--filter-field-height) / 2);
|
|
15068
15146
|
bottom: min(var(--filter-field-bottom), var(--filter-field-max-bottom));
|
|
15069
|
-
right:
|
|
15070
|
-
height:
|
|
15147
|
+
right: 8px;
|
|
15148
|
+
height: var(--filter-field-height);
|
|
15071
15149
|
width: 190px;
|
|
15072
15150
|
min-width: 75px;
|
|
15073
15151
|
max-width: 60%;
|
|
@@ -15078,10 +15156,16 @@ Try these to switch between fonts:
|
|
|
15078
15156
|
box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.2);
|
|
15079
15157
|
background-color: var(--filter-field-background-color);
|
|
15080
15158
|
opacity: 1;
|
|
15081
|
-
|
|
15159
|
+
visibility: visible;
|
|
15160
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15161
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15162
|
+
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
15163
|
}
|
|
15083
15164
|
:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15084
15165
|
opacity: 0;
|
|
15166
|
+
visibility: hidden;
|
|
15167
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15168
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15085
15169
|
}
|
|
15086
15170
|
.filter-field::before {
|
|
15087
15171
|
content: '\E02A';
|
|
@@ -15095,7 +15179,7 @@ Try these to switch between fonts:
|
|
|
15095
15179
|
justify-content: center;
|
|
15096
15180
|
align-items: center;
|
|
15097
15181
|
position: absolute;
|
|
15098
|
-
bottom:
|
|
15182
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15099
15183
|
right: 3px;
|
|
15100
15184
|
height: 24px;
|
|
15101
15185
|
width: 24px;
|
|
@@ -15131,19 +15215,19 @@ Try these to switch between fonts:
|
|
|
15131
15215
|
top: calc(50% - 22px / 2) !important;
|
|
15132
15216
|
}
|
|
15133
15217
|
.filter-field:not(.focused).empty {
|
|
15134
|
-
--filter-field-bottom:
|
|
15218
|
+
--filter-field-bottom: 8px + ((var(--filter-field-height) - 24px) / 2);
|
|
15135
15219
|
--filter-field-max-bottom: calc(50% - 24px / 2);
|
|
15136
|
-
right:
|
|
15220
|
+
right: 11px;
|
|
15137
15221
|
height: 24px;
|
|
15138
15222
|
width: 24px;
|
|
15139
15223
|
min-width: 24px;
|
|
15140
15224
|
max-width: 24px;
|
|
15141
15225
|
box-shadow: none;
|
|
15142
|
-
background-color: var(--filter-field-background-color);
|
|
15226
|
+
background-color: var(--filter-field-transparent-80-background-color);
|
|
15143
15227
|
}
|
|
15144
15228
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
15145
15229
|
.filter-field:not(.focused).empty {
|
|
15146
|
-
background-color: var(--filter-field-transparent-background-color);
|
|
15230
|
+
background-color: var(--filter-field-transparent-50-background-color);
|
|
15147
15231
|
-webkit-backdrop-filter: blur(2px);
|
|
15148
15232
|
backdrop-filter: blur(2px);
|
|
15149
15233
|
}
|
|
@@ -15168,10 +15252,11 @@ Try these to switch between fonts:
|
|
|
15168
15252
|
}
|
|
15169
15253
|
.filter-field-container {
|
|
15170
15254
|
position: sticky;
|
|
15171
|
-
--filter-field-
|
|
15172
|
-
--filter-field-container-
|
|
15255
|
+
--filter-field-height: 30px;
|
|
15256
|
+
--filter-field-container-top: calc(100% - 8px);
|
|
15257
|
+
--filter-field-container-min-top: calc(50% + var(--filter-field-height) / 2);
|
|
15173
15258
|
top: max(var(--filter-field-container-top), var(--filter-field-container-min-top));
|
|
15174
|
-
left: calc(100% -
|
|
15259
|
+
left: calc(100% - 8px);
|
|
15175
15260
|
width: 0;
|
|
15176
15261
|
height: 0;
|
|
15177
15262
|
overflow: visible;
|
|
@@ -15180,6 +15265,9 @@ Try these to switch between fonts:
|
|
|
15180
15265
|
}
|
|
15181
15266
|
.filter-field-container:not(:hover) > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15182
15267
|
opacity: 1;
|
|
15268
|
+
visibility: visible;
|
|
15269
|
+
--filter-field-opacity-transition-delay: 100ms;
|
|
15270
|
+
--filter-field-visibility-transition-delay: var(--filter-field-opacity-transition-delay);
|
|
15183
15271
|
}
|
|
15184
15272
|
.filter-field-container > .filter-field {
|
|
15185
15273
|
bottom: 0;
|
|
@@ -15188,9 +15276,12 @@ Try these to switch between fonts:
|
|
|
15188
15276
|
}
|
|
15189
15277
|
:not(:hover) > .filter-field-container > .filter-field:not(.focused):not(.focus-inside-widget).empty {
|
|
15190
15278
|
opacity: 0;
|
|
15279
|
+
visibility: hidden;
|
|
15280
|
+
--filter-field-opacity-transition-delay: 0s;
|
|
15281
|
+
--filter-field-visibility-transition-delay: calc(250ms + var(--filter-field-opacity-transition-delay));
|
|
15191
15282
|
}
|
|
15192
15283
|
.filter-field-container > .filter-field:not(.focused).empty {
|
|
15193
|
-
bottom:
|
|
15284
|
+
bottom: calc((var(--filter-field-height) - 24px) / 2);
|
|
15194
15285
|
right: 3px;
|
|
15195
15286
|
}
|
|
15196
15287
|
@supports not (bottom: min(50%, 42px)) {
|
|
@@ -15200,6 +15291,10 @@ Try these to switch between fonts:
|
|
|
15200
15291
|
/* NOSONAR (!important is okay here) */
|
|
15201
15292
|
}
|
|
15202
15293
|
}
|
|
15294
|
+
.dense .filter-field,
|
|
15295
|
+
.dense .filter-field-container {
|
|
15296
|
+
--filter-field-height: 24px;
|
|
15297
|
+
}
|
|
15203
15298
|
/*
|
|
15204
15299
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15205
15300
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -15225,8 +15320,8 @@ Try these to switch between fonts:
|
|
|
15225
15320
|
/* Improve Chrome's auto-fill style by overriding the forced yellow background and black text color. */
|
|
15226
15321
|
/* (Requires some hacks, see http://webagility.com/posts/remove-forced-yellow-input-background-in-chrome) */
|
|
15227
15322
|
border-top-width: 0;
|
|
15228
|
-
padding-top:
|
|
15229
|
-
-webkit-box-shadow: inset 0 0 0 1000px #
|
|
15323
|
+
padding-top: 3px;
|
|
15324
|
+
-webkit-box-shadow: inset 0 0 0 1000px #252F34;
|
|
15230
15325
|
-webkit-text-fill-color: #E9EBEB !important;
|
|
15231
15326
|
/* NOSONAR (!important is okay here) */
|
|
15232
15327
|
}
|
|
@@ -15239,27 +15334,30 @@ Try these to switch between fonts:
|
|
|
15239
15334
|
/* NOSONAR (!important is okay here) */
|
|
15240
15335
|
}
|
|
15241
15336
|
.login-box-content > form > input.alternative:-webkit-autofill::selection {
|
|
15242
|
-
-webkit-text-fill-color: #
|
|
15337
|
+
-webkit-text-fill-color: #0E1316 !important;
|
|
15243
15338
|
/* NOSONAR (!important is okay here) */
|
|
15244
15339
|
}
|
|
15245
15340
|
/*
|
|
15246
15341
|
* Login button is a default button -> styles are defined in main.css.
|
|
15247
15342
|
* Difference to regular default button is the disabled style and the ability to turn red.
|
|
15248
15343
|
*/
|
|
15249
|
-
.login-button.default.login-error {
|
|
15250
|
-
border-color:
|
|
15251
|
-
background-color: #
|
|
15344
|
+
.login-button.default.login-error:not(.disabled) {
|
|
15345
|
+
border-color: transparent;
|
|
15346
|
+
background-color: #FF8888;
|
|
15252
15347
|
}
|
|
15253
|
-
.login-button.default.login-error:hover {
|
|
15254
|
-
background-color: #
|
|
15255
|
-
border-color: #D53F3F;
|
|
15348
|
+
.login-button.default.login-error:not(.disabled):hover {
|
|
15349
|
+
background-color: #ffa7a7;
|
|
15256
15350
|
}
|
|
15257
|
-
.login-button.default.login-error:active {
|
|
15258
|
-
|
|
15259
|
-
|
|
15351
|
+
.login-button.default.login-error:not(.disabled):active {
|
|
15352
|
+
background-color: #ffbbbb;
|
|
15353
|
+
}
|
|
15354
|
+
.login-button.default.login-error:not(.disabled):focus {
|
|
15355
|
+
outline: none;
|
|
15356
|
+
box-shadow: 0 0 0 3px #804444;
|
|
15357
|
+
border-color: #9f5555;
|
|
15260
15358
|
}
|
|
15261
15359
|
.login-button.default.disabled {
|
|
15262
|
-
color: #
|
|
15360
|
+
color: #0E1316;
|
|
15263
15361
|
border-color: #71b0e8;
|
|
15264
15362
|
background-color: #71b0e8;
|
|
15265
15363
|
}
|
|
@@ -15270,7 +15368,7 @@ Try these to switch between fonts:
|
|
|
15270
15368
|
animation: pulsate 2s cubic-bezier(0.5, 0.1, 0.1, 0.5) infinite;
|
|
15271
15369
|
display: inline-block;
|
|
15272
15370
|
border-radius: 50%;
|
|
15273
|
-
border: 1px rgba(
|
|
15371
|
+
border: 1px rgba(14, 19, 22, 0.8) solid;
|
|
15274
15372
|
width: 18px;
|
|
15275
15373
|
height: 18px;
|
|
15276
15374
|
vertical-align: middle;
|
|
@@ -15282,6 +15380,20 @@ Try these to switch between fonts:
|
|
|
15282
15380
|
-o-animation: nop 0.05s;
|
|
15283
15381
|
animation: nop 0.05s;
|
|
15284
15382
|
}
|
|
15383
|
+
/*
|
|
15384
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
15385
|
+
* All rights reserved. This program and the accompanying materials
|
|
15386
|
+
* are made available under the terms of the Eclipse Public License v1.0
|
|
15387
|
+
* which accompanies this distribution, and is available at
|
|
15388
|
+
* http://www.eclipse.org/legal/epl-v10.html
|
|
15389
|
+
*
|
|
15390
|
+
* Contributors:
|
|
15391
|
+
* BSI Business Systems Integration AG - initial API and implementation
|
|
15392
|
+
*/
|
|
15393
|
+
.breadcrumb-bar-field > .field {
|
|
15394
|
+
padding-top: 8px;
|
|
15395
|
+
padding-bottom: 9px;
|
|
15396
|
+
}
|
|
15285
15397
|
/*
|
|
15286
15398
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
15287
15399
|
* All rights reserved. This program and the accompanying materials
|