@eclipse-scout/core 22.0.1 → 22.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js +2 -0
- package/dist/eclipse-scout-core-c98fb5230e71dcec75ce.min.js.map +1 -0
- package/dist/eclipse-scout-core-theme-6b2fef56e9e49231a49c.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark-d2bb274dd42f132bfca0.min.css +1 -0
- package/dist/eclipse-scout-core-theme-dark.css +367 -312
- package/dist/eclipse-scout-core-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-core-theme.css +150 -95
- package/dist/eclipse-scout-core-theme.css.map +1 -1
- package/dist/eclipse-scout-core.js +371 -204
- package/dist/eclipse-scout-core.js.map +1 -1
- package/dist/file-list +7 -0
- package/dist/locales.json +47126 -0
- package/dist/texts.json +1153 -0
- package/package.json +2 -2
- package/src/action/Button.less +1 -0
- package/src/calendar/Calendar.js +40 -58
- package/src/calendar/Calendar.less +10 -10
- package/src/calendar/CalendarLayout.js +3 -1
- package/src/datepicker/DatePicker.less +1 -0
- package/src/desktop/desktoptab/DesktopTab.less +5 -2
- package/src/desktop/desktoptab/DesktopTabArea.less +7 -3
- package/src/desktop/navigation/DesktopNavigation.less +4 -0
- package/src/desktop/notification/DesktopNotification.js +11 -4
- package/src/desktop/notification/DesktopNotification.less +5 -3
- package/src/desktop/outline/Outline.less +4 -4
- package/src/desktop/viewbutton/ViewButton.less +13 -9
- package/src/desktop/viewbutton/ViewMenuTab.less +3 -2
- package/src/filechooser/FileChooser.less +1 -1
- package/src/form/Form.less +1 -0
- package/src/form/fields/LookupBox.js +2 -1
- package/src/form/fields/breadcrumbbarfield/BreadcrumbBarField.less +14 -0
- package/src/form/fields/groupbox/GroupBox.js +13 -9
- package/src/form/fields/groupbox/GroupBox.less +1 -0
- package/src/form/fields/htmlfield/HtmlField.less +0 -1
- package/src/form/fields/listbox/ListBox.js +8 -3
- package/src/form/fields/tabbox/TabAreaLayout.js +63 -66
- package/src/form/fields/tabbox/TabBox.js +4 -7
- package/src/form/fields/tabbox/TabBox.less +2 -1
- package/src/form/fields/tabbox/TabBoxHeaderLayout.js +5 -5
- package/src/glasspane/GlassPane.js +3 -3
- package/src/group/Group.less +1 -1
- package/src/index.less +1 -0
- package/src/jquery/jquery-scout.js +5 -4
- package/src/menu/ContextMenuPopup.less +9 -2
- package/src/menu/Menu.less +1 -0
- package/src/modeselector/Mode.less +15 -37
- package/src/modeselector/ModeSelector.js +1 -1
- package/src/modeselector/ModeSelector.less +2 -1
- package/src/planner/PlannerHeader.less +2 -1
- package/src/popup/Popup.js +24 -8
- package/src/popup/PopupLayout.js +2 -8
- package/src/scrollbar/Scrollbar.less +8 -1
- package/src/scrollbar/scrollbars.js +26 -4
- package/src/style/colors-dark.less +17 -10
- package/src/style/colors.less +11 -3
- package/src/style/fonts.less +5 -0
- package/src/style/mixins.less +16 -12
- package/src/style/sizes-dark.less +4 -1
- package/src/style/sizes.less +3 -4
- package/src/table/Table.js +37 -29
- package/src/table/Table.less +36 -13
- package/src/table/TableHeader.js +10 -8
- package/src/table/TableHeader.less +1 -0
- package/src/table/TableHeaderMenu.js +3 -1
- package/src/table/TableHeaderMenu.less +7 -2
- package/src/table/columns/BooleanColumn.js +2 -2
- package/src/table/columns/Column.js +3 -3
- package/src/table/editor/CellEditorPopup.js +8 -1
- package/src/tile/TileGrid.js +1 -1
- package/src/tile/TileGridLayout.js +2 -2
- package/src/tile/accordion/TileAccordion.js +16 -1
- package/src/tile/fields/FormFieldTile.less +18 -11
- package/src/tree/CompactTree.less +1 -1
- package/src/tree/Tree.less +1 -3
- package/src/util/arrays.js +24 -2
- package/src/util/objects.js +4 -1
- package/src/widget/Widget.js +11 -3
|
@@ -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,7 +773,7 @@ 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
|
}
|
|
@@ -798,7 +799,7 @@ 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
805
|
background-color: #94c4ee;
|
|
@@ -806,12 +807,12 @@ iframe {
|
|
|
806
807
|
}
|
|
807
808
|
.button.default:active,
|
|
808
809
|
.button.default.active {
|
|
809
|
-
color: #
|
|
810
|
+
color: #0E1316;
|
|
810
811
|
background-color: #a6cdf1;
|
|
811
812
|
border-color: #a6cdf1;
|
|
812
813
|
}
|
|
813
814
|
.button.default.selected {
|
|
814
|
-
color: #
|
|
815
|
+
color: #0E1316;
|
|
815
816
|
background-color: #a6cdf1;
|
|
816
817
|
border-color: #a6cdf1;
|
|
817
818
|
}
|
|
@@ -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,6 +2900,7 @@ 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 {
|
|
@@ -2918,7 +2922,8 @@ iframe {
|
|
|
2918
2922
|
color: rgba(255, 255, 255, 0.4);
|
|
2919
2923
|
}
|
|
2920
2924
|
.desktop-tab.simple-tab.selected {
|
|
2921
|
-
background-color: #
|
|
2925
|
+
background-color: #252F34;
|
|
2926
|
+
border-color: transparent;
|
|
2922
2927
|
}
|
|
2923
2928
|
.desktop-tab.simple-tab.selected > .title-line > .icon-container {
|
|
2924
2929
|
color: #A7ACAD;
|
|
@@ -2948,23 +2953,26 @@ iframe {
|
|
|
2948
2953
|
background-color: rgba(255, 255, 255, 0.18);
|
|
2949
2954
|
}
|
|
2950
2955
|
.desktop-tab.simple-tab.selected > .edge {
|
|
2951
|
-
--color: #
|
|
2956
|
+
--color: #252F34;
|
|
2952
2957
|
position: absolute;
|
|
2953
2958
|
pointer-events: none;
|
|
2954
2959
|
background-color: transparent;
|
|
2955
|
-
bottom:
|
|
2956
|
-
height:
|
|
2957
|
-
width:
|
|
2958
|
-
box-
|
|
2959
|
-
|
|
2960
|
+
bottom: -5px;
|
|
2961
|
+
height: 12px;
|
|
2962
|
+
width: 12px;
|
|
2963
|
+
box-sizing: content-box;
|
|
2964
|
+
border: 5px solid var(--color);
|
|
2965
|
+
border-top: none;
|
|
2960
2966
|
}
|
|
2961
2967
|
.desktop-tab.simple-tab.selected > .edge.left {
|
|
2962
|
-
left: -
|
|
2963
|
-
border-bottom-right-radius:
|
|
2968
|
+
left: -12px;
|
|
2969
|
+
border-bottom-right-radius: 17px;
|
|
2970
|
+
border-left: none;
|
|
2964
2971
|
}
|
|
2965
2972
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2966
|
-
right: -
|
|
2967
|
-
border-bottom-left-radius:
|
|
2973
|
+
right: -12px;
|
|
2974
|
+
border-bottom-left-radius: 17px;
|
|
2975
|
+
border-right: none;
|
|
2968
2976
|
}
|
|
2969
2977
|
.desktop-tab.simple-tab.selected > .edge.right {
|
|
2970
2978
|
z-index: 1;
|
|
@@ -3044,70 +3052,70 @@ iframe {
|
|
|
3044
3052
|
}
|
|
3045
3053
|
@-webkit-keyframes flash-desktop-tab-selected {
|
|
3046
3054
|
0% {
|
|
3047
|
-
background-color: #
|
|
3055
|
+
background-color: #252F34;
|
|
3048
3056
|
}
|
|
3049
3057
|
25% {
|
|
3050
3058
|
background-color: #000000;
|
|
3051
3059
|
}
|
|
3052
3060
|
50% {
|
|
3053
|
-
background-color: #
|
|
3061
|
+
background-color: #252F34;
|
|
3054
3062
|
}
|
|
3055
3063
|
75% {
|
|
3056
3064
|
background-color: #000000;
|
|
3057
3065
|
}
|
|
3058
3066
|
100% {
|
|
3059
|
-
background-color: #
|
|
3067
|
+
background-color: #252F34;
|
|
3060
3068
|
}
|
|
3061
3069
|
}
|
|
3062
3070
|
@keyframes flash-desktop-tab-selected {
|
|
3063
3071
|
0% {
|
|
3064
|
-
background-color: #
|
|
3072
|
+
background-color: #252F34;
|
|
3065
3073
|
}
|
|
3066
3074
|
25% {
|
|
3067
3075
|
background-color: #000000;
|
|
3068
3076
|
}
|
|
3069
3077
|
50% {
|
|
3070
|
-
background-color: #
|
|
3078
|
+
background-color: #252F34;
|
|
3071
3079
|
}
|
|
3072
3080
|
75% {
|
|
3073
3081
|
background-color: #000000;
|
|
3074
3082
|
}
|
|
3075
3083
|
100% {
|
|
3076
|
-
background-color: #
|
|
3084
|
+
background-color: #252F34;
|
|
3077
3085
|
}
|
|
3078
3086
|
}
|
|
3079
3087
|
@-webkit-keyframes flash-desktop-tab-selected-edge {
|
|
3080
3088
|
0% {
|
|
3081
|
-
box-shadow: 0 12px 0 0 #
|
|
3089
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3082
3090
|
}
|
|
3083
3091
|
25% {
|
|
3084
3092
|
box-shadow: 0 12px 0 0 #000000;
|
|
3085
3093
|
}
|
|
3086
3094
|
50% {
|
|
3087
|
-
box-shadow: 0 12px 0 0 #
|
|
3095
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3088
3096
|
}
|
|
3089
3097
|
75% {
|
|
3090
3098
|
box-shadow: 0 12px 0 0 #000000;
|
|
3091
3099
|
}
|
|
3092
3100
|
100% {
|
|
3093
|
-
box-shadow: 0 12px 0 0 #
|
|
3101
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3094
3102
|
}
|
|
3095
3103
|
}
|
|
3096
3104
|
@keyframes flash-desktop-tab-selected-edge {
|
|
3097
3105
|
0% {
|
|
3098
|
-
box-shadow: 0 12px 0 0 #
|
|
3106
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3099
3107
|
}
|
|
3100
3108
|
25% {
|
|
3101
3109
|
box-shadow: 0 12px 0 0 #000000;
|
|
3102
3110
|
}
|
|
3103
3111
|
50% {
|
|
3104
|
-
box-shadow: 0 12px 0 0 #
|
|
3112
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3105
3113
|
}
|
|
3106
3114
|
75% {
|
|
3107
3115
|
box-shadow: 0 12px 0 0 #000000;
|
|
3108
3116
|
}
|
|
3109
3117
|
100% {
|
|
3110
|
-
box-shadow: 0 12px 0 0 #
|
|
3118
|
+
box-shadow: 0 12px 0 0 #252F34;
|
|
3111
3119
|
}
|
|
3112
3120
|
}
|
|
3113
3121
|
/*
|
|
@@ -3121,16 +3129,18 @@ iframe {
|
|
|
3121
3129
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
3122
3130
|
*/
|
|
3123
3131
|
.desktop-tab-area > .simple-overflow-tab-item {
|
|
3124
|
-
border-radius:
|
|
3125
|
-
margin:
|
|
3132
|
+
border-radius: 8px;
|
|
3133
|
+
margin: 14px 3px 6px;
|
|
3126
3134
|
background-color: rgba(0, 0, 0, 0.1);
|
|
3127
|
-
border: 0;
|
|
3135
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
3128
3136
|
}
|
|
3129
3137
|
.desktop-tab-area > .simple-overflow-tab-item:hover {
|
|
3130
3138
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3139
|
+
border-color: transparent;
|
|
3131
3140
|
}
|
|
3132
3141
|
.desktop-tab-area > .simple-overflow-tab-item.selected {
|
|
3133
3142
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3143
|
+
border-color: transparent;
|
|
3134
3144
|
}
|
|
3135
3145
|
/*
|
|
3136
3146
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -3147,7 +3157,7 @@ iframe {
|
|
|
3147
3157
|
top: 0;
|
|
3148
3158
|
height: 64px;
|
|
3149
3159
|
color: #E9EBEB;
|
|
3150
|
-
background-color: #
|
|
3160
|
+
background-color: #0E1316;
|
|
3151
3161
|
}
|
|
3152
3162
|
.desktop-header > .simple-tab-area {
|
|
3153
3163
|
height: 64px;
|
|
@@ -3182,7 +3192,7 @@ iframe {
|
|
|
3182
3192
|
}
|
|
3183
3193
|
.in-background.desktop-header > .view-button-box > .view-menu-tab > .view-menu::before {
|
|
3184
3194
|
height: 100%;
|
|
3185
|
-
border-color: #
|
|
3195
|
+
border-color: #0E1316;
|
|
3186
3196
|
top: 0;
|
|
3187
3197
|
}
|
|
3188
3198
|
.in-background.desktop-header > .view-button-box > .view-menu-tab > .view-menu:hover > .icon {
|
|
@@ -3206,11 +3216,11 @@ iframe {
|
|
|
3206
3216
|
}
|
|
3207
3217
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-tab-wrapper > .view-tab.selected,
|
|
3208
3218
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-menu-tab.selected {
|
|
3209
|
-
background-color: #
|
|
3219
|
+
background-color: #1F2428;
|
|
3210
3220
|
}
|
|
3211
3221
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-tab-wrapper > .view-tab.selected > .edge,
|
|
3212
3222
|
.outline-content-has-dimmed-background.desktop-header:not(.in-background) > .view-button-box > .view-menu-tab.selected > .edge {
|
|
3213
|
-
--color: #
|
|
3223
|
+
--color: #1F2428;
|
|
3214
3224
|
}
|
|
3215
3225
|
/*
|
|
3216
3226
|
* Copyright (c) 2014-2018 BSI Business Systems Integration AG.
|
|
@@ -3227,11 +3237,11 @@ iframe {
|
|
|
3227
3237
|
height: 100%;
|
|
3228
3238
|
width: 290px;
|
|
3229
3239
|
min-width: 49px;
|
|
3230
|
-
background-color: #
|
|
3240
|
+
background-color: #0E1316;
|
|
3231
3241
|
color: #E9EBEB;
|
|
3232
3242
|
}
|
|
3233
3243
|
.desktop-navigation.view-button-box-invisible > .navigation-body > .outline > .outline-title {
|
|
3234
|
-
background-color: #
|
|
3244
|
+
background-color: #0E1316;
|
|
3235
3245
|
border-bottom: 0;
|
|
3236
3246
|
color: #E9EBEB;
|
|
3237
3247
|
}
|
|
@@ -3240,10 +3250,10 @@ iframe {
|
|
|
3240
3250
|
}
|
|
3241
3251
|
.navigation-body {
|
|
3242
3252
|
position: absolute;
|
|
3243
|
-
background-color: #
|
|
3253
|
+
background-color: #252F34;
|
|
3244
3254
|
}
|
|
3245
3255
|
.desktop-navigation.in-background > .navigation-body {
|
|
3246
|
-
background-color: #
|
|
3256
|
+
background-color: #1F2428;
|
|
3247
3257
|
}
|
|
3248
3258
|
.desktop-navigation > .desktop-tool-box > .menu-item {
|
|
3249
3259
|
margin-bottom: 6px;
|
|
@@ -3251,6 +3261,9 @@ iframe {
|
|
|
3251
3261
|
.desktop-navigation > .desktop-tool-box > .menu-item > .font-icon {
|
|
3252
3262
|
font-size: 20px;
|
|
3253
3263
|
}
|
|
3264
|
+
.desktop-navigation > .desktop-tool-box > .menu-item.ellipsis > .font-icon {
|
|
3265
|
+
font-size: 22px;
|
|
3266
|
+
}
|
|
3254
3267
|
/*
|
|
3255
3268
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
3256
3269
|
* All rights reserved. This program and the accompanying materials
|
|
@@ -3265,16 +3278,16 @@ iframe {
|
|
|
3265
3278
|
position: absolute;
|
|
3266
3279
|
}
|
|
3267
3280
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body {
|
|
3268
|
-
background-color: #
|
|
3281
|
+
background-color: #252F34;
|
|
3269
3282
|
border-color: rgba(255, 255, 255, 0.25);
|
|
3270
3283
|
color: #7E8588;
|
|
3271
3284
|
}
|
|
3272
3285
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body:hover {
|
|
3273
|
-
background-color: #
|
|
3286
|
+
background-color: #3B494F;
|
|
3274
3287
|
}
|
|
3275
3288
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body:active,
|
|
3276
3289
|
.desktop-navigation-handle.collapse-handle > .collapse-handle-body.active {
|
|
3277
|
-
background-color: #
|
|
3290
|
+
background-color: #46565e;
|
|
3278
3291
|
}
|
|
3279
3292
|
.desktop-navigation-handle.collapse-handle.right-aligned.both-visible {
|
|
3280
3293
|
right: 5px;
|
|
@@ -3302,7 +3315,7 @@ iframe {
|
|
|
3302
3315
|
margin-left: -4px;
|
|
3303
3316
|
}
|
|
3304
3317
|
/*
|
|
3305
|
-
* Copyright (c) 2010-
|
|
3318
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
3306
3319
|
* All rights reserved. This program and the accompanying materials
|
|
3307
3320
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
3308
3321
|
* which accompanies this distribution, and is available at
|
|
@@ -3315,7 +3328,7 @@ iframe {
|
|
|
3315
3328
|
position: fixed;
|
|
3316
3329
|
right: 10px;
|
|
3317
3330
|
top: 0;
|
|
3318
|
-
height: 100
|
|
3331
|
+
height: calc(100% - 72px);
|
|
3319
3332
|
width: 300px;
|
|
3320
3333
|
margin-top: 72px;
|
|
3321
3334
|
pointer-events: none;
|
|
@@ -3411,7 +3424,7 @@ iframe {
|
|
|
3411
3424
|
width: 300px;
|
|
3412
3425
|
display: flex;
|
|
3413
3426
|
align-items: center;
|
|
3414
|
-
background-color: #
|
|
3427
|
+
background-color: #3B494F;
|
|
3415
3428
|
margin-bottom: 10px;
|
|
3416
3429
|
padding: 8px 0 8px 10px;
|
|
3417
3430
|
border-radius: 8px;
|
|
@@ -3574,7 +3587,7 @@ iframe {
|
|
|
3574
3587
|
}
|
|
3575
3588
|
.outline.tree > .tree-data > .tree-node.group,
|
|
3576
3589
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.group {
|
|
3577
|
-
background-color: #
|
|
3590
|
+
background-color: #2E3C41;
|
|
3578
3591
|
}
|
|
3579
3592
|
.outline.tree > .tree-data > .tree-node > .text,
|
|
3580
3593
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .text {
|
|
@@ -3602,17 +3615,13 @@ iframe {
|
|
|
3602
3615
|
line-height: 14px;
|
|
3603
3616
|
color: #7E8588;
|
|
3604
3617
|
}
|
|
3605
|
-
.outline.tree > .tree-data > .tree-node > .tree-node-control::before,
|
|
3606
|
-
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control::before {
|
|
3607
|
-
font-size: 18px;
|
|
3608
|
-
}
|
|
3609
3618
|
.outline.tree > .tree-data > .tree-node > .tree-node-control:hover,
|
|
3610
3619
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node > .tree-node-control:hover {
|
|
3611
3620
|
color: #FE9915;
|
|
3612
3621
|
}
|
|
3613
3622
|
.outline.tree > .tree-data > .tree-node.selected,
|
|
3614
3623
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3615
|
-
color: #
|
|
3624
|
+
color: #0E1316;
|
|
3616
3625
|
background-color: #71b0e8;
|
|
3617
3626
|
}
|
|
3618
3627
|
.outline.tree > .tree-data > .tree-node.selected::after,
|
|
@@ -3621,20 +3630,24 @@ iframe {
|
|
|
3621
3630
|
}
|
|
3622
3631
|
.outline.tree > .tree-data > .tree-node.selected > .tree-node-control,
|
|
3623
3632
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .tree-node-control {
|
|
3624
|
-
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;
|
|
3625
3638
|
}
|
|
3626
3639
|
.outline.tree > .tree-data > .tree-node.selected > .font-icon,
|
|
3627
3640
|
.outline.tree > .tree-data > .animation-wrapper > .tree-node.selected > .font-icon {
|
|
3628
|
-
color: #
|
|
3641
|
+
color: #2E3C41;
|
|
3629
3642
|
}
|
|
3630
3643
|
.outline.tree.in-background > .tree-data > .tree-node.group,
|
|
3631
3644
|
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.group {
|
|
3632
|
-
background-color: #
|
|
3645
|
+
background-color: #2C363A;
|
|
3633
3646
|
}
|
|
3634
3647
|
.outline.tree.in-background > .tree-data > .tree-node.selected,
|
|
3635
3648
|
.outline.tree.in-background > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3636
3649
|
background-color: #7E8588;
|
|
3637
|
-
color: #
|
|
3650
|
+
color: #0E1316;
|
|
3638
3651
|
}
|
|
3639
3652
|
.outline-title {
|
|
3640
3653
|
cursor: pointer;
|
|
@@ -3671,7 +3684,7 @@ iframe {
|
|
|
3671
3684
|
/* bread crumb style (different colors and bigger font and arrow than original breadcrumb style) */
|
|
3672
3685
|
.outline.tree.breadcrumb > .outline-title {
|
|
3673
3686
|
margin: 0;
|
|
3674
|
-
border-bottom-color: #
|
|
3687
|
+
border-bottom-color: #3B494F;
|
|
3675
3688
|
}
|
|
3676
3689
|
.outline.tree.breadcrumb > .outline-title.touch:active {
|
|
3677
3690
|
background-color: rgba(255, 255, 255, 0.12);
|
|
@@ -3681,12 +3694,12 @@ iframe {
|
|
|
3681
3694
|
}
|
|
3682
3695
|
.outline.tree.breadcrumb > .tree-data > .tree-node,
|
|
3683
3696
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node {
|
|
3684
|
-
border-bottom: 1px solid #
|
|
3697
|
+
border-bottom: 1px solid #3B494F;
|
|
3685
3698
|
padding: 12px 20px;
|
|
3686
3699
|
}
|
|
3687
3700
|
.outline.tree.breadcrumb > .tree-data > .tree-node.child-of-selected,
|
|
3688
3701
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.child-of-selected {
|
|
3689
|
-
background-color: #
|
|
3702
|
+
background-color: #252F34;
|
|
3690
3703
|
}
|
|
3691
3704
|
.in-background.outline.tree.breadcrumb > .tree-data > .tree-node.child-of-selected,
|
|
3692
3705
|
.in-background.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.child-of-selected {
|
|
@@ -3699,7 +3712,7 @@ iframe {
|
|
|
3699
3712
|
.outline.tree.breadcrumb > .tree-data > .tree-node.ancestor-of-selected,
|
|
3700
3713
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.ancestor-of-selected {
|
|
3701
3714
|
color: #BFC2C3;
|
|
3702
|
-
background-color: #
|
|
3715
|
+
background-color: #252F34;
|
|
3703
3716
|
}
|
|
3704
3717
|
.in-background.outline.tree.breadcrumb > .tree-data > .tree-node.ancestor-of-selected,
|
|
3705
3718
|
.in-background.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.ancestor-of-selected {
|
|
@@ -3712,7 +3725,7 @@ iframe {
|
|
|
3712
3725
|
.outline.tree.breadcrumb > .tree-data > .tree-node.selected,
|
|
3713
3726
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3714
3727
|
background-color: #71b0e8;
|
|
3715
|
-
color: #
|
|
3728
|
+
color: #0E1316;
|
|
3716
3729
|
cursor: default;
|
|
3717
3730
|
}
|
|
3718
3731
|
.in-background.outline.tree.breadcrumb > .tree-data > .tree-node.selected,
|
|
@@ -3721,7 +3734,7 @@ iframe {
|
|
|
3721
3734
|
}
|
|
3722
3735
|
.outline.tree.breadcrumb > .tree-data > .tree-node.selected > .text > .compact-cell-header > .compact-cell-subtitle,
|
|
3723
3736
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.selected > .text > .compact-cell-header > .compact-cell-subtitle {
|
|
3724
|
-
color: #
|
|
3737
|
+
color: #2E3C41;
|
|
3725
3738
|
}
|
|
3726
3739
|
.outline.tree.breadcrumb > .tree-data > .tree-node.selected > .text > .compact-cell-header > .compact-cell-title > .right,
|
|
3727
3740
|
.outline.tree.breadcrumb > .tree-data > .animation-wrapper > .tree-node.selected > .text > .compact-cell-header > .compact-cell-title > .right,
|
|
@@ -3739,13 +3752,13 @@ iframe {
|
|
|
3739
3752
|
.outline.tree.breadcrumb.focused > .tree-data > .tree-node.parent-of-selected,
|
|
3740
3753
|
.outline.tree.breadcrumb:focus > .tree-data > .animation-wrapper > .tree-node.parent-of-selected,
|
|
3741
3754
|
.outline.tree.breadcrumb.focused > .tree-data > .animation-wrapper > .tree-node.parent-of-selected {
|
|
3742
|
-
border-color: #
|
|
3755
|
+
border-color: #3B494F;
|
|
3743
3756
|
}
|
|
3744
3757
|
.outline.tree.breadcrumb:focus > .tree-data > .tree-node.selected,
|
|
3745
3758
|
.outline.tree.breadcrumb.focused > .tree-data > .tree-node.selected,
|
|
3746
3759
|
.outline.tree.breadcrumb:focus > .tree-data > .animation-wrapper > .tree-node.selected,
|
|
3747
3760
|
.outline.tree.breadcrumb.focused > .tree-data > .animation-wrapper > .tree-node.selected {
|
|
3748
|
-
border-color: #
|
|
3761
|
+
border-color: #3B494F;
|
|
3749
3762
|
}
|
|
3750
3763
|
.compact.outline.breadcrumb > .outline-title {
|
|
3751
3764
|
padding-left: 16px;
|
|
@@ -3755,7 +3768,7 @@ iframe {
|
|
|
3755
3768
|
margin-right: -8px;
|
|
3756
3769
|
}
|
|
3757
3770
|
.compact.outline.breadcrumb > .tree-data {
|
|
3758
|
-
background-color: #
|
|
3771
|
+
background-color: #1F2428;
|
|
3759
3772
|
}
|
|
3760
3773
|
.compact.outline.breadcrumb > .tree-data > .tree-node {
|
|
3761
3774
|
padding: 0;
|
|
@@ -3785,7 +3798,7 @@ iframe {
|
|
|
3785
3798
|
padding: 0 16px 0 16px;
|
|
3786
3799
|
min-height: 43px;
|
|
3787
3800
|
margin-left: -8px;
|
|
3788
|
-
background-color: #
|
|
3801
|
+
background-color: #252F34;
|
|
3789
3802
|
}
|
|
3790
3803
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .detail-menubar > .menubar-box > .menu-item {
|
|
3791
3804
|
padding-left: 8px;
|
|
@@ -3803,11 +3816,11 @@ iframe {
|
|
|
3803
3816
|
min-width: 16px;
|
|
3804
3817
|
}
|
|
3805
3818
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .detail-content {
|
|
3806
|
-
background-color: #
|
|
3819
|
+
background-color: #252F34;
|
|
3807
3820
|
color: #E9EBEB;
|
|
3808
3821
|
}
|
|
3809
3822
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .detail-content.dimmed-background {
|
|
3810
|
-
background-color: #
|
|
3823
|
+
background-color: #1F2428;
|
|
3811
3824
|
}
|
|
3812
3825
|
.compact.outline.breadcrumb > .tree-data > .tree-node > .form > .root-group-box > .group-box-body {
|
|
3813
3826
|
padding-left: 6px;
|
|
@@ -3838,7 +3851,7 @@ iframe {
|
|
|
3838
3851
|
display: none;
|
|
3839
3852
|
}
|
|
3840
3853
|
.compact.outline.breadcrumb > .tree-data.detail-content-visible > .tree-node > .detail-menubar {
|
|
3841
|
-
border-bottom: 1px solid #
|
|
3854
|
+
border-bottom: 1px solid #3B494F;
|
|
3842
3855
|
}
|
|
3843
3856
|
.compact.outline.breadcrumb > .tree-data > .tree-node.selected.has-tile-overview {
|
|
3844
3857
|
background-color: transparent;
|
|
@@ -3873,7 +3886,7 @@ iframe {
|
|
|
3873
3886
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3874
3887
|
}
|
|
3875
3888
|
100% {
|
|
3876
|
-
background-color: #
|
|
3889
|
+
background-color: #252F34;
|
|
3877
3890
|
}
|
|
3878
3891
|
}
|
|
3879
3892
|
/* NOSONAR */
|
|
@@ -3882,7 +3895,7 @@ iframe {
|
|
|
3882
3895
|
background-color: rgba(255, 255, 255, 0.12);
|
|
3883
3896
|
}
|
|
3884
3897
|
100% {
|
|
3885
|
-
background-color: #
|
|
3898
|
+
background-color: #252F34;
|
|
3886
3899
|
}
|
|
3887
3900
|
}
|
|
3888
3901
|
/* NOSONAR */
|
|
@@ -3944,7 +3957,7 @@ iframe {
|
|
|
3944
3957
|
margin-left: 0;
|
|
3945
3958
|
margin-right: 0;
|
|
3946
3959
|
margin-bottom: 0;
|
|
3947
|
-
border-bottom-color: #
|
|
3960
|
+
border-bottom-color: #3B494F;
|
|
3948
3961
|
}
|
|
3949
3962
|
.outline.breadcrumb > .search-outline-panel > .search-outline-status {
|
|
3950
3963
|
text-align: left;
|
|
@@ -3997,7 +4010,7 @@ iframe {
|
|
|
3997
4010
|
display: table;
|
|
3998
4011
|
}
|
|
3999
4012
|
.outline-overview-content {
|
|
4000
|
-
color: #
|
|
4013
|
+
color: #3B494F;
|
|
4001
4014
|
text-align: center;
|
|
4002
4015
|
display: table-cell;
|
|
4003
4016
|
vertical-align: middle;
|
|
@@ -4089,7 +4102,7 @@ iframe {
|
|
|
4089
4102
|
bottom: 6px;
|
|
4090
4103
|
}
|
|
4091
4104
|
/*
|
|
4092
|
-
* Copyright (c)
|
|
4105
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4093
4106
|
* All rights reserved. This program and the accompanying materials
|
|
4094
4107
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4095
4108
|
* which accompanies this distribution, and is available at
|
|
@@ -4121,23 +4134,26 @@ iframe {
|
|
|
4121
4134
|
border-radius: 12px 12px 0 0;
|
|
4122
4135
|
}
|
|
4123
4136
|
.view-tab.selected:not(.in-background) > .edge {
|
|
4124
|
-
--color: #
|
|
4137
|
+
--color: #252F34;
|
|
4125
4138
|
position: absolute;
|
|
4126
4139
|
pointer-events: none;
|
|
4127
4140
|
background-color: transparent;
|
|
4128
|
-
bottom:
|
|
4129
|
-
height:
|
|
4130
|
-
width:
|
|
4131
|
-
box-
|
|
4132
|
-
|
|
4141
|
+
bottom: -5px;
|
|
4142
|
+
height: 12px;
|
|
4143
|
+
width: 12px;
|
|
4144
|
+
box-sizing: content-box;
|
|
4145
|
+
border: 5px solid var(--color);
|
|
4146
|
+
border-top: none;
|
|
4133
4147
|
}
|
|
4134
4148
|
.view-tab.selected:not(.in-background) > .edge.left {
|
|
4135
|
-
left: -
|
|
4136
|
-
border-bottom-right-radius:
|
|
4149
|
+
left: -12px;
|
|
4150
|
+
border-bottom-right-radius: 17px;
|
|
4151
|
+
border-left: none;
|
|
4137
4152
|
}
|
|
4138
4153
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4139
|
-
right: -
|
|
4140
|
-
border-bottom-left-radius:
|
|
4154
|
+
right: -12px;
|
|
4155
|
+
border-bottom-left-radius: 17px;
|
|
4156
|
+
border-right: none;
|
|
4141
4157
|
}
|
|
4142
4158
|
.view-tab.selected:not(.in-background) > .edge.right {
|
|
4143
4159
|
z-index: 1;
|
|
@@ -4153,14 +4169,12 @@ iframe {
|
|
|
4153
4169
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.left,
|
|
4154
4170
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.left {
|
|
4155
4171
|
visibility: hidden;
|
|
4156
|
-
|
|
4157
|
-
animation: show-view-tab-left-edge 200ms ease-out 0s forwards;
|
|
4172
|
+
animation: show-view-tab-left-edge 40ms ease-out 160ms forwards;
|
|
4158
4173
|
}
|
|
4159
4174
|
.view-tab.animate-bring-to-front:not(.in-background) > .edge.right,
|
|
4160
4175
|
.view-tab.animate-bring-to-back:not(.in-background) > .edge.right {
|
|
4161
4176
|
visibility: hidden;
|
|
4162
|
-
|
|
4163
|
-
animation: show-view-tab-right-edge 200ms ease-out 0s forwards;
|
|
4177
|
+
animation: show-view-tab-right-edge 40ms ease-out 160ms forwards;
|
|
4164
4178
|
}
|
|
4165
4179
|
.view-button-tab {
|
|
4166
4180
|
display: flex;
|
|
@@ -4174,11 +4188,11 @@ iframe {
|
|
|
4174
4188
|
background-color: rgba(255, 255, 255, 0.12);
|
|
4175
4189
|
}
|
|
4176
4190
|
.view-button-tab.selected {
|
|
4177
|
-
background-color: #
|
|
4191
|
+
background-color: #252F34;
|
|
4178
4192
|
color: #71b0e8;
|
|
4179
4193
|
}
|
|
4180
4194
|
.view-button-tab.selected.in-background {
|
|
4181
|
-
background-color: #
|
|
4195
|
+
background-color: #1F2428;
|
|
4182
4196
|
}
|
|
4183
4197
|
.view-button-tab.selected:not(.in-background) {
|
|
4184
4198
|
width: 100%;
|
|
@@ -4201,15 +4215,21 @@ iframe {
|
|
|
4201
4215
|
font-size: 20px;
|
|
4202
4216
|
}
|
|
4203
4217
|
@keyframes show-view-tab-left-edge {
|
|
4204
|
-
|
|
4218
|
+
0% {
|
|
4205
4219
|
visibility: visible;
|
|
4206
|
-
|
|
4220
|
+
left: -5px;
|
|
4221
|
+
}
|
|
4222
|
+
100% {
|
|
4223
|
+
left: -12px;
|
|
4207
4224
|
}
|
|
4208
4225
|
}
|
|
4209
4226
|
@keyframes show-view-tab-right-edge {
|
|
4210
|
-
|
|
4227
|
+
0% {
|
|
4211
4228
|
visibility: visible;
|
|
4212
|
-
|
|
4229
|
+
right: -5px;
|
|
4230
|
+
}
|
|
4231
|
+
100% {
|
|
4232
|
+
right: -12px;
|
|
4213
4233
|
}
|
|
4214
4234
|
}
|
|
4215
4235
|
/*
|
|
@@ -4234,11 +4254,11 @@ iframe {
|
|
|
4234
4254
|
/* necessary if it is in the header to make rounded corner overlap into tab area */
|
|
4235
4255
|
position: relative;
|
|
4236
4256
|
/* if covered by glass pane */
|
|
4237
|
-
background-color: #
|
|
4257
|
+
background-color: #0E1316;
|
|
4238
4258
|
color: #E9EBEB;
|
|
4239
4259
|
}
|
|
4240
4260
|
/*
|
|
4241
|
-
* Copyright (c)
|
|
4261
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
4242
4262
|
* All rights reserved. This program and the accompanying materials
|
|
4243
4263
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
4244
4264
|
* which accompanies this distribution, and is available at
|
|
@@ -4258,12 +4278,12 @@ iframe {
|
|
|
4258
4278
|
align-items: center;
|
|
4259
4279
|
justify-content: center;
|
|
4260
4280
|
background-color: transparent;
|
|
4281
|
+
cursor: pointer;
|
|
4261
4282
|
}
|
|
4262
4283
|
.view-menu-tab > .view-button:hover,
|
|
4263
4284
|
.view-menu-tab > .view-menu:hover {
|
|
4264
4285
|
background-color: rgba(0, 0, 0, 0.1);
|
|
4265
4286
|
color: inherit;
|
|
4266
|
-
cursor: pointer;
|
|
4267
4287
|
}
|
|
4268
4288
|
.view-menu-tab > .view-button.disabled,
|
|
4269
4289
|
.view-menu-tab > .view-menu.disabled {
|
|
@@ -4301,7 +4321,7 @@ iframe {
|
|
|
4301
4321
|
content: '';
|
|
4302
4322
|
position: absolute;
|
|
4303
4323
|
height: 100%;
|
|
4304
|
-
border-left: 1px solid #
|
|
4324
|
+
border-left: 1px solid #0E1316;
|
|
4305
4325
|
left: 0;
|
|
4306
4326
|
}
|
|
4307
4327
|
.selected-button-invisible.view-menu-tab > .view-menu::before {
|
|
@@ -4323,7 +4343,7 @@ iframe {
|
|
|
4323
4343
|
}
|
|
4324
4344
|
.view-menu-tab.selected {
|
|
4325
4345
|
color: #71b0e8;
|
|
4326
|
-
background-color: #
|
|
4346
|
+
background-color: #252F34;
|
|
4327
4347
|
}
|
|
4328
4348
|
.view-menu-tab.selected > .view-button.selected,
|
|
4329
4349
|
.view-menu-tab.selected > .view-menu.selected,
|
|
@@ -4358,7 +4378,7 @@ iframe {
|
|
|
4358
4378
|
border-color: rgba(255, 255, 255, 0.12);
|
|
4359
4379
|
}
|
|
4360
4380
|
.view-menu-tab.selected.in-background {
|
|
4361
|
-
background-color: #
|
|
4381
|
+
background-color: #1F2428;
|
|
4362
4382
|
}
|
|
4363
4383
|
.view-menu-tab.selected.in-background > .view-menu > .icon {
|
|
4364
4384
|
padding-top: 2px;
|
|
@@ -4372,6 +4392,7 @@ iframe {
|
|
|
4372
4392
|
.view-menu-tab.selected:not(.in-background) > .view-button {
|
|
4373
4393
|
padding-left: 6px;
|
|
4374
4394
|
width: 56px;
|
|
4395
|
+
cursor: default;
|
|
4375
4396
|
}
|
|
4376
4397
|
.selected-button-invisible.view-menu-tab.selected:not(.in-background) > .view-menu {
|
|
4377
4398
|
width: 50px;
|
|
@@ -4406,7 +4427,7 @@ iframe {
|
|
|
4406
4427
|
align-items: center;
|
|
4407
4428
|
text-align: center;
|
|
4408
4429
|
color: #71b0e8;
|
|
4409
|
-
background-color: #
|
|
4430
|
+
background-color: #252F34;
|
|
4410
4431
|
border-radius: 12px;
|
|
4411
4432
|
border: 2px solid transparent;
|
|
4412
4433
|
padding: 12px 6px 0 6px;
|
|
@@ -4445,7 +4466,7 @@ iframe {
|
|
|
4445
4466
|
cursor: default;
|
|
4446
4467
|
}
|
|
4447
4468
|
.view-menu-tile.disabled:hover {
|
|
4448
|
-
background-color: #
|
|
4469
|
+
background-color: #252F34;
|
|
4449
4470
|
}
|
|
4450
4471
|
/*
|
|
4451
4472
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -4462,7 +4483,7 @@ iframe {
|
|
|
4462
4483
|
top: 25%;
|
|
4463
4484
|
left: 50%;
|
|
4464
4485
|
width: 473px;
|
|
4465
|
-
background-color: #
|
|
4486
|
+
background-color: #3B494F;
|
|
4466
4487
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
4467
4488
|
border-radius: 8px;
|
|
4468
4489
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -4486,7 +4507,7 @@ iframe {
|
|
|
4486
4507
|
border-color: rgba(255, 255, 255, 0.12);
|
|
4487
4508
|
}
|
|
4488
4509
|
.file-chooser > .box-buttons > .box-button.default {
|
|
4489
|
-
color: #
|
|
4510
|
+
color: #0E1316;
|
|
4490
4511
|
background-color: #71b0e8;
|
|
4491
4512
|
}
|
|
4492
4513
|
.file-chooser > .box-buttons > .box-button.default:hover {
|
|
@@ -4649,7 +4670,7 @@ iframe {
|
|
|
4649
4670
|
padding-bottom: 0;
|
|
4650
4671
|
}
|
|
4651
4672
|
.file-input.has-error:not(.disabled):not(.alternative):active {
|
|
4652
|
-
background-color: #
|
|
4673
|
+
background-color: #252F34;
|
|
4653
4674
|
}
|
|
4654
4675
|
.file-input.has-error.alternative:not(.disabled):active {
|
|
4655
4676
|
border-bottom-color: #FF8888;
|
|
@@ -4681,7 +4702,7 @@ iframe {
|
|
|
4681
4702
|
position: relative;
|
|
4682
4703
|
}
|
|
4683
4704
|
.form.dimmed-background {
|
|
4684
|
-
background-color: #
|
|
4705
|
+
background-color: #1F2428;
|
|
4685
4706
|
}
|
|
4686
4707
|
.form.dimmed-background > .root-group-box > .menubar {
|
|
4687
4708
|
background-color: inherit;
|
|
@@ -4694,7 +4715,7 @@ iframe {
|
|
|
4694
4715
|
}
|
|
4695
4716
|
.dialog {
|
|
4696
4717
|
position: absolute;
|
|
4697
|
-
background-color: #
|
|
4718
|
+
background-color: #2E3C41;
|
|
4698
4719
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
4699
4720
|
border-radius: 12px;
|
|
4700
4721
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -4801,6 +4822,7 @@ iframe {
|
|
|
4801
4822
|
white-space: nowrap;
|
|
4802
4823
|
font-size: 16px;
|
|
4803
4824
|
color: #E9EBEB;
|
|
4825
|
+
margin-top: 1px;
|
|
4804
4826
|
}
|
|
4805
4827
|
.form > .header > .sub-title {
|
|
4806
4828
|
overflow: hidden;
|
|
@@ -5866,7 +5888,7 @@ iframe {
|
|
|
5866
5888
|
background-color: transparent;
|
|
5867
5889
|
}
|
|
5868
5890
|
.date-field > .field > .predict.has-error {
|
|
5869
|
-
background-color: #
|
|
5891
|
+
background-color: #252F34;
|
|
5870
5892
|
}
|
|
5871
5893
|
.date-field > .field > .predict + input {
|
|
5872
5894
|
background-color: transparent;
|
|
@@ -6071,6 +6093,7 @@ iframe {
|
|
|
6071
6093
|
vertical-align: middle;
|
|
6072
6094
|
padding: 12px 0 12px 0;
|
|
6073
6095
|
max-width: 100%;
|
|
6096
|
+
margin-top: 1px;
|
|
6074
6097
|
}
|
|
6075
6098
|
.group-box.has-sub-label > .group-box-header > .title {
|
|
6076
6099
|
padding-bottom: 7px;
|
|
@@ -6251,7 +6274,6 @@ iframe {
|
|
|
6251
6274
|
}
|
|
6252
6275
|
.html-field > .field {
|
|
6253
6276
|
margin-left: 10px;
|
|
6254
|
-
overflow: hidden;
|
|
6255
6277
|
}
|
|
6256
6278
|
.html-field > .field:focus {
|
|
6257
6279
|
outline: none;
|
|
@@ -6857,7 +6879,7 @@ iframe {
|
|
|
6857
6879
|
.proposal-field-popup {
|
|
6858
6880
|
position: absolute;
|
|
6859
6881
|
overflow: hidden;
|
|
6860
|
-
background-color: #
|
|
6882
|
+
background-color: #3B494F;
|
|
6861
6883
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
6862
6884
|
border-radius: 3px;
|
|
6863
6885
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -6866,7 +6888,7 @@ iframe {
|
|
|
6866
6888
|
.dropdown-field-popup.touch,
|
|
6867
6889
|
.smart-field-popup.touch,
|
|
6868
6890
|
.proposal-field-popup.touch {
|
|
6869
|
-
background-color: #
|
|
6891
|
+
background-color: #1F2428;
|
|
6870
6892
|
}
|
|
6871
6893
|
.proposal-chooser > .active-filter {
|
|
6872
6894
|
position: absolute;
|
|
@@ -6878,7 +6900,7 @@ iframe {
|
|
|
6878
6900
|
.proposal-chooser > .active-filter,
|
|
6879
6901
|
.proposal-chooser > .status {
|
|
6880
6902
|
padding: 0 12px;
|
|
6881
|
-
background-color: #
|
|
6903
|
+
background-color: #1F2428;
|
|
6882
6904
|
border-top: solid 1px rgba(255, 255, 255, 0.12);
|
|
6883
6905
|
height: 30px;
|
|
6884
6906
|
overflow: hidden;
|
|
@@ -7229,7 +7251,7 @@ iframe {
|
|
|
7229
7251
|
.tab-box-header > .menubar {
|
|
7230
7252
|
position: absolute;
|
|
7231
7253
|
background-color: inherit;
|
|
7232
|
-
border-bottom
|
|
7254
|
+
border-bottom: none;
|
|
7233
7255
|
}
|
|
7234
7256
|
.tab-box-header > .status {
|
|
7235
7257
|
position: absolute;
|
|
@@ -7392,6 +7414,7 @@ iframe {
|
|
|
7392
7414
|
display: inline-block;
|
|
7393
7415
|
vertical-align: middle;
|
|
7394
7416
|
padding: 12px 0 12px;
|
|
7417
|
+
margin-top: 1px;
|
|
7395
7418
|
}
|
|
7396
7419
|
.tab-area.has-sub-label > .tab-item > .title {
|
|
7397
7420
|
padding-bottom: 7px;
|
|
@@ -7557,7 +7580,7 @@ iframe {
|
|
|
7557
7580
|
.tag-chooser-popup {
|
|
7558
7581
|
position: absolute;
|
|
7559
7582
|
overflow: hidden;
|
|
7560
|
-
background-color: #
|
|
7583
|
+
background-color: #3B494F;
|
|
7561
7584
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
7562
7585
|
border-radius: 3px;
|
|
7563
7586
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -7566,7 +7589,7 @@ iframe {
|
|
|
7566
7589
|
max-width: 250px;
|
|
7567
7590
|
}
|
|
7568
7591
|
.tag-chooser-popup.touch {
|
|
7569
|
-
background-color: #
|
|
7592
|
+
background-color: #1F2428;
|
|
7570
7593
|
}
|
|
7571
7594
|
.tag-chooser-popup > .table > .table-data {
|
|
7572
7595
|
padding: 8px 12px 5px 12px;
|
|
@@ -7624,7 +7647,7 @@ iframe {
|
|
|
7624
7647
|
}
|
|
7625
7648
|
.tag-field > .field.has-error {
|
|
7626
7649
|
border-color: #FF8888;
|
|
7627
|
-
background-color: #
|
|
7650
|
+
background-color: #252F34;
|
|
7628
7651
|
}
|
|
7629
7652
|
.tag-field > .field.has-error:focus,
|
|
7630
7653
|
.tag-field > .field.has-error.focused {
|
|
@@ -7869,7 +7892,7 @@ iframe {
|
|
|
7869
7892
|
border-color: #8ee0cf;
|
|
7870
7893
|
}
|
|
7871
7894
|
.wizard-step.selected > .icon {
|
|
7872
|
-
color: #
|
|
7895
|
+
color: #0E1316;
|
|
7873
7896
|
background-color: #71b0e8;
|
|
7874
7897
|
border-color: #71b0e8;
|
|
7875
7898
|
font-weight: bold;
|
|
@@ -8121,7 +8144,7 @@ iframe {
|
|
|
8121
8144
|
background-color: rgba(255, 255, 255, 0.18);
|
|
8122
8145
|
}
|
|
8123
8146
|
.menu-item.selected {
|
|
8124
|
-
color: #
|
|
8147
|
+
color: #0E1316;
|
|
8125
8148
|
background-color: #71b0e8;
|
|
8126
8149
|
}
|
|
8127
8150
|
.menu-item.selected:hover {
|
|
@@ -8150,7 +8173,7 @@ iframe {
|
|
|
8150
8173
|
background-color: transparent;
|
|
8151
8174
|
}
|
|
8152
8175
|
.menu-item.disabled.selected {
|
|
8153
|
-
color: #
|
|
8176
|
+
color: #0E1316;
|
|
8154
8177
|
background-color: #7E8588;
|
|
8155
8178
|
}
|
|
8156
8179
|
.menu-item.disabled.selected.has-popup {
|
|
@@ -8164,6 +8187,7 @@ iframe {
|
|
|
8164
8187
|
overflow: hidden;
|
|
8165
8188
|
text-overflow: ellipsis;
|
|
8166
8189
|
white-space: nowrap;
|
|
8190
|
+
margin-top: 1px;
|
|
8167
8191
|
}
|
|
8168
8192
|
.menu-item > .font-icon {
|
|
8169
8193
|
font-size: 16px;
|
|
@@ -8250,6 +8274,7 @@ iframe {
|
|
|
8250
8274
|
overflow: hidden;
|
|
8251
8275
|
text-overflow: ellipsis;
|
|
8252
8276
|
white-space: nowrap;
|
|
8277
|
+
margin-top: 1px;
|
|
8253
8278
|
}
|
|
8254
8279
|
.menu-button > .icon {
|
|
8255
8280
|
/* Padding only relevant for icons larger than the container */
|
|
@@ -8301,7 +8326,7 @@ iframe {
|
|
|
8301
8326
|
background-color: rgba(255, 255, 255, 0.18);
|
|
8302
8327
|
}
|
|
8303
8328
|
.menu-button.selected {
|
|
8304
|
-
color: #
|
|
8329
|
+
color: #0E1316;
|
|
8305
8330
|
background-color: #71b0e8;
|
|
8306
8331
|
border-color: #71b0e8;
|
|
8307
8332
|
}
|
|
@@ -8327,7 +8352,7 @@ iframe {
|
|
|
8327
8352
|
background-color: #71b0e8;
|
|
8328
8353
|
/* border is necessary to align the text with text from buttons with a real border */
|
|
8329
8354
|
border-color: #71b0e8;
|
|
8330
|
-
color: #
|
|
8355
|
+
color: #0E1316;
|
|
8331
8356
|
}
|
|
8332
8357
|
.menu-button.default:hover {
|
|
8333
8358
|
background-color: #94c4ee;
|
|
@@ -8335,12 +8360,12 @@ iframe {
|
|
|
8335
8360
|
}
|
|
8336
8361
|
.menu-button.default:active,
|
|
8337
8362
|
.menu-button.default.active {
|
|
8338
|
-
color: #
|
|
8363
|
+
color: #0E1316;
|
|
8339
8364
|
background-color: #a6cdf1;
|
|
8340
8365
|
border-color: #a6cdf1;
|
|
8341
8366
|
}
|
|
8342
8367
|
.menu-button.default.selected {
|
|
8343
|
-
color: #
|
|
8368
|
+
color: #0E1316;
|
|
8344
8369
|
background-color: #a6cdf1;
|
|
8345
8370
|
border-color: #a6cdf1;
|
|
8346
8371
|
}
|
|
@@ -8370,7 +8395,7 @@ iframe {
|
|
|
8370
8395
|
}
|
|
8371
8396
|
.menu-button:disabled.selected,
|
|
8372
8397
|
.menu-button.disabled.selected {
|
|
8373
|
-
color: #
|
|
8398
|
+
color: #0E1316;
|
|
8374
8399
|
background-color: #7E8588;
|
|
8375
8400
|
border-color: #7E8588;
|
|
8376
8401
|
}
|
|
@@ -8428,7 +8453,7 @@ iframe {
|
|
|
8428
8453
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
8429
8454
|
*/
|
|
8430
8455
|
.context-menu-popup {
|
|
8431
|
-
background-color: #
|
|
8456
|
+
background-color: #3B494F;
|
|
8432
8457
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
8433
8458
|
border-radius: 8px;
|
|
8434
8459
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -8461,7 +8486,7 @@ iframe {
|
|
|
8461
8486
|
.context-menu {
|
|
8462
8487
|
position: absolute;
|
|
8463
8488
|
margin: 6px 0;
|
|
8464
|
-
background-color: #
|
|
8489
|
+
background-color: #3B494F;
|
|
8465
8490
|
}
|
|
8466
8491
|
.context-menu > .menu-item {
|
|
8467
8492
|
display: flex;
|
|
@@ -8487,12 +8512,16 @@ iframe {
|
|
|
8487
8512
|
.context-menu > .menu-item.selected {
|
|
8488
8513
|
background-color: rgba(113, 176, 232, 0.09);
|
|
8489
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
|
+
}
|
|
8490
8522
|
.context-menu > .menu-item.selected > .submenu-icon {
|
|
8491
8523
|
transform: none;
|
|
8492
8524
|
}
|
|
8493
|
-
.context-menu > .menu-item.expanded {
|
|
8494
|
-
color: #71b0e8;
|
|
8495
|
-
}
|
|
8496
8525
|
.context-menu > .menu-item.expanded > .submenu-icon {
|
|
8497
8526
|
-webkit-transform: rotateX(180deg) translateY(-1px);
|
|
8498
8527
|
-ms-transform: rotateX(180deg) translateY(-1px);
|
|
@@ -8580,7 +8609,7 @@ iframe {
|
|
|
8580
8609
|
background-color: #71b0e8;
|
|
8581
8610
|
/* border is necessary to align the text with text from buttons with a real border */
|
|
8582
8611
|
border-color: #71b0e8;
|
|
8583
|
-
color: #
|
|
8612
|
+
color: #0E1316;
|
|
8584
8613
|
}
|
|
8585
8614
|
.combo-menu.menu-button.default > .menu-item:hover {
|
|
8586
8615
|
background-color: #94c4ee;
|
|
@@ -8588,12 +8617,12 @@ iframe {
|
|
|
8588
8617
|
}
|
|
8589
8618
|
.combo-menu.menu-button.default > .menu-item:active,
|
|
8590
8619
|
.combo-menu.menu-button.default > .menu-item.active {
|
|
8591
|
-
color: #
|
|
8620
|
+
color: #0E1316;
|
|
8592
8621
|
background-color: #a6cdf1;
|
|
8593
8622
|
border-color: #a6cdf1;
|
|
8594
8623
|
}
|
|
8595
8624
|
.combo-menu.menu-button.default > .menu-item.selected {
|
|
8596
|
-
color: #
|
|
8625
|
+
color: #0E1316;
|
|
8597
8626
|
background-color: #a6cdf1;
|
|
8598
8627
|
border-color: #a6cdf1;
|
|
8599
8628
|
}
|
|
@@ -8603,7 +8632,7 @@ iframe {
|
|
|
8603
8632
|
border-color: #4598e1;
|
|
8604
8633
|
}
|
|
8605
8634
|
.combo-menu.menu-button.default > .menu-item::before {
|
|
8606
|
-
background-color: #
|
|
8635
|
+
background-color: #0E1316;
|
|
8607
8636
|
}
|
|
8608
8637
|
.combo-menu.menu-button.default > .menu-item.selected {
|
|
8609
8638
|
background-color: #a6cdf1;
|
|
@@ -8665,7 +8694,7 @@ iframe {
|
|
|
8665
8694
|
background: linear-gradient(180deg, #014786 -145%, #9dc8ef 56%);
|
|
8666
8695
|
}
|
|
8667
8696
|
.profile-menu.menu-item > .icon.font-icon {
|
|
8668
|
-
color: #
|
|
8697
|
+
color: #0E1316;
|
|
8669
8698
|
}
|
|
8670
8699
|
.profile-menu.menu-item > .icon.image-icon {
|
|
8671
8700
|
object-fit: cover;
|
|
@@ -8903,7 +8932,7 @@ iframe {
|
|
|
8903
8932
|
left: 0;
|
|
8904
8933
|
min-width: 200px;
|
|
8905
8934
|
max-width: 473px;
|
|
8906
|
-
background-color: #
|
|
8935
|
+
background-color: #3B494F;
|
|
8907
8936
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
8908
8937
|
border-radius: 8px;
|
|
8909
8938
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -8937,7 +8966,7 @@ iframe {
|
|
|
8937
8966
|
border-color: rgba(255, 255, 255, 0.12);
|
|
8938
8967
|
}
|
|
8939
8968
|
.messagebox.info > .box-buttons > .box-button.default {
|
|
8940
|
-
color: #
|
|
8969
|
+
color: #0E1316;
|
|
8941
8970
|
background-color: #71b0e8;
|
|
8942
8971
|
}
|
|
8943
8972
|
.messagebox.info > .box-buttons > .box-button.default:hover {
|
|
@@ -8983,7 +9012,7 @@ iframe {
|
|
|
8983
9012
|
border-color: rgba(255, 255, 255, 0.12);
|
|
8984
9013
|
}
|
|
8985
9014
|
.messagebox.error > .box-buttons > .box-button.default {
|
|
8986
|
-
color: #
|
|
9015
|
+
color: #0E1316;
|
|
8987
9016
|
background-color: #FF8888;
|
|
8988
9017
|
}
|
|
8989
9018
|
.messagebox.error > .box-buttons > .box-button.default:hover {
|
|
@@ -9029,7 +9058,7 @@ iframe {
|
|
|
9029
9058
|
border-color: rgba(255, 255, 255, 0.12);
|
|
9030
9059
|
}
|
|
9031
9060
|
.messagebox.warning > .box-buttons > .box-button.default {
|
|
9032
|
-
color: #
|
|
9061
|
+
color: #0E1316;
|
|
9033
9062
|
background-color: #FFBE6B;
|
|
9034
9063
|
}
|
|
9035
9064
|
.messagebox.warning > .box-buttons > .box-button.default:hover {
|
|
@@ -9075,7 +9104,7 @@ iframe {
|
|
|
9075
9104
|
border-color: rgba(255, 255, 255, 0.12);
|
|
9076
9105
|
}
|
|
9077
9106
|
.messagebox.ok > .box-buttons > .box-button.default {
|
|
9078
|
-
color: #
|
|
9107
|
+
color: #0E1316;
|
|
9079
9108
|
background-color: #62e7ce;
|
|
9080
9109
|
}
|
|
9081
9110
|
.messagebox.ok > .box-buttons > .box-button.default:hover {
|
|
@@ -9166,7 +9195,7 @@ iframe {
|
|
|
9166
9195
|
text-align: center;
|
|
9167
9196
|
}
|
|
9168
9197
|
.messagebox-header > .messagebox-icon {
|
|
9169
|
-
color: #
|
|
9198
|
+
color: #0E1316;
|
|
9170
9199
|
font-size: 14px;
|
|
9171
9200
|
border-radius: 50%;
|
|
9172
9201
|
}
|
|
@@ -9226,7 +9255,7 @@ iframe {
|
|
|
9226
9255
|
}
|
|
9227
9256
|
}
|
|
9228
9257
|
/*
|
|
9229
|
-
* Copyright (c) 2010-
|
|
9258
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9230
9259
|
* All rights reserved. This program and the accompanying materials
|
|
9231
9260
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9232
9261
|
* which accompanies this distribution, and is available at
|
|
@@ -9236,10 +9265,13 @@ iframe {
|
|
|
9236
9265
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
9237
9266
|
*/
|
|
9238
9267
|
.mode {
|
|
9239
|
-
|
|
9268
|
+
--padding-x: 12px;
|
|
9269
|
+
--padding-y: 6px;
|
|
9270
|
+
--border-width: 1px;
|
|
9271
|
+
border: var(--border-width) solid rgba(255, 255, 255, 0.25);
|
|
9240
9272
|
border-radius: 0;
|
|
9241
9273
|
flex: 1 1 0;
|
|
9242
|
-
padding:
|
|
9274
|
+
padding: var(--padding-y) var(--padding-x);
|
|
9243
9275
|
overflow: hidden;
|
|
9244
9276
|
text-overflow: ellipsis;
|
|
9245
9277
|
}
|
|
@@ -9254,16 +9286,16 @@ iframe {
|
|
|
9254
9286
|
}
|
|
9255
9287
|
.mode:not(.last):not(.selected) {
|
|
9256
9288
|
border-right: none;
|
|
9257
|
-
padding-right:
|
|
9289
|
+
padding-right: calc(var(--padding-x) + var(--border-width));
|
|
9258
9290
|
/* account for the missing border, so that text does not jump */
|
|
9259
9291
|
}
|
|
9260
9292
|
.mode.after-selected {
|
|
9261
9293
|
border-left: none;
|
|
9262
|
-
padding-left:
|
|
9294
|
+
padding-left: calc(var(--padding-x) + var(--border-width));
|
|
9263
9295
|
/* account for the missing border, so that text does not jump */
|
|
9264
9296
|
}
|
|
9265
9297
|
.mode.selected {
|
|
9266
|
-
color: #
|
|
9298
|
+
color: #0E1316;
|
|
9267
9299
|
cursor: default;
|
|
9268
9300
|
}
|
|
9269
9301
|
.mode.selected:hover {
|
|
@@ -9284,26 +9316,17 @@ iframe {
|
|
|
9284
9316
|
.mode > .icon.with-label {
|
|
9285
9317
|
margin-right: 8px;
|
|
9286
9318
|
}
|
|
9287
|
-
.mode-selector.alternative {
|
|
9288
|
-
border: 3px solid transparent;
|
|
9289
|
-
}
|
|
9290
9319
|
.mode-selector.alternative > .mode {
|
|
9320
|
+
--border-width: 0px;
|
|
9291
9321
|
color: #E9EBEB;
|
|
9292
|
-
border: none;
|
|
9293
9322
|
background-color: transparent;
|
|
9294
9323
|
border-radius: 3px;
|
|
9295
9324
|
}
|
|
9296
|
-
.mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9297
|
-
padding-right: 12px;
|
|
9298
|
-
}
|
|
9299
|
-
.mode-selector.alternative > .mode.after-selected {
|
|
9300
|
-
padding-left: 12px;
|
|
9301
|
-
}
|
|
9302
9325
|
.mode-selector.alternative > .mode:hover {
|
|
9303
|
-
background-color:
|
|
9326
|
+
background-color: #1F2428;
|
|
9304
9327
|
}
|
|
9305
9328
|
.mode-selector.alternative > .mode:active {
|
|
9306
|
-
background-color:
|
|
9329
|
+
background-color: #3B494F;
|
|
9307
9330
|
}
|
|
9308
9331
|
.mode-selector.alternative > .mode.selected {
|
|
9309
9332
|
color: #71b0e8;
|
|
@@ -9313,7 +9336,7 @@ iframe {
|
|
|
9313
9336
|
background-color: transparent;
|
|
9314
9337
|
}
|
|
9315
9338
|
.mode-selector.alternative > .mode.selected.disabled {
|
|
9316
|
-
background-color: #
|
|
9339
|
+
background-color: #252F34;
|
|
9317
9340
|
}
|
|
9318
9341
|
.mode-selector.alternative > .mode.mode-selector-dragging {
|
|
9319
9342
|
background-color: transparent;
|
|
@@ -9325,24 +9348,11 @@ iframe {
|
|
|
9325
9348
|
cursor: default;
|
|
9326
9349
|
}
|
|
9327
9350
|
.dense .mode-selector > .mode {
|
|
9328
|
-
padding:
|
|
9329
|
-
|
|
9330
|
-
.dense .mode-selector > .mode:not(.last):not(.selected) {
|
|
9331
|
-
padding-right: 6px;
|
|
9332
|
-
/* account for the missing border, so that text does not jump */
|
|
9333
|
-
}
|
|
9334
|
-
.dense .mode-selector > .mode.after-selected {
|
|
9335
|
-
padding-left: 6px;
|
|
9336
|
-
/* account for the missing border, so that text does not jump */
|
|
9337
|
-
}
|
|
9338
|
-
.dense .mode-selector.alternative > .mode:not(.last):not(.selected) {
|
|
9339
|
-
padding-right: 5px;
|
|
9340
|
-
}
|
|
9341
|
-
.dense .mode-selector.alternative > .mode.after-selected {
|
|
9342
|
-
padding-left: 5px;
|
|
9351
|
+
--padding-x: 5px;
|
|
9352
|
+
--padding-y: 3px;
|
|
9343
9353
|
}
|
|
9344
9354
|
/*
|
|
9345
|
-
* Copyright (c) 2010-
|
|
9355
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
9346
9356
|
* All rights reserved. This program and the accompanying materials
|
|
9347
9357
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
9348
9358
|
* which accompanies this distribution, and is available at
|
|
@@ -9362,15 +9372,16 @@ iframe {
|
|
|
9362
9372
|
display: none;
|
|
9363
9373
|
}
|
|
9364
9374
|
.mode-selector.alternative {
|
|
9365
|
-
background-color:
|
|
9375
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
9366
9376
|
border-radius: 3px;
|
|
9377
|
+
border: 3px solid transparent;
|
|
9367
9378
|
}
|
|
9368
9379
|
.mode-selector.alternative:not(.disabled) > .mode-slider {
|
|
9369
9380
|
display: block;
|
|
9370
9381
|
position: absolute;
|
|
9371
9382
|
top: 0;
|
|
9372
9383
|
height: 100%;
|
|
9373
|
-
background-color: #
|
|
9384
|
+
background-color: #2C363A;
|
|
9374
9385
|
border-radius: 3px;
|
|
9375
9386
|
transition: left 500ms ease, width 500ms ease;
|
|
9376
9387
|
}
|
|
@@ -9480,8 +9491,8 @@ iframe {
|
|
|
9480
9491
|
flex-shrink: 0;
|
|
9481
9492
|
}
|
|
9482
9493
|
.notification-icon.font-icon {
|
|
9483
|
-
color: #
|
|
9484
|
-
background-color: #
|
|
9494
|
+
color: #0E1316;
|
|
9495
|
+
background-color: #252F34;
|
|
9485
9496
|
font-size: 14px;
|
|
9486
9497
|
border-radius: 50%;
|
|
9487
9498
|
}
|
|
@@ -9575,7 +9586,7 @@ iframe {
|
|
|
9575
9586
|
}
|
|
9576
9587
|
.planner-scale > .timeline > .timeline-large {
|
|
9577
9588
|
height: 50%;
|
|
9578
|
-
background-color: #
|
|
9589
|
+
background-color: #1F2428;
|
|
9579
9590
|
line-height: 22.5px;
|
|
9580
9591
|
}
|
|
9581
9592
|
.planner-scale > .timeline > .timeline-large > .scale-item > .planner-large-scale-item-line {
|
|
@@ -9641,7 +9652,7 @@ iframe {
|
|
|
9641
9652
|
top: 0;
|
|
9642
9653
|
}
|
|
9643
9654
|
.planner-resource > .resource-cells > .selector > .selector-resize-left {
|
|
9644
|
-
background-color: #
|
|
9655
|
+
background-color: #252F34;
|
|
9645
9656
|
border-left: 2px solid #71b0e8;
|
|
9646
9657
|
border-right: 2px solid #71b0e8;
|
|
9647
9658
|
position: absolute;
|
|
@@ -9652,7 +9663,7 @@ iframe {
|
|
|
9652
9663
|
cursor: col-resize;
|
|
9653
9664
|
}
|
|
9654
9665
|
.planner-resource > .resource-cells > .selector > .selector-resize-right {
|
|
9655
|
-
background-color: #
|
|
9666
|
+
background-color: #252F34;
|
|
9656
9667
|
border-left: 2px solid #71b0e8;
|
|
9657
9668
|
border-right: 2px solid #71b0e8;
|
|
9658
9669
|
position: absolute;
|
|
@@ -9666,7 +9677,7 @@ iframe {
|
|
|
9666
9677
|
position: absolute;
|
|
9667
9678
|
top: 1px;
|
|
9668
9679
|
width: 0;
|
|
9669
|
-
color: #
|
|
9680
|
+
color: #0E1316;
|
|
9670
9681
|
height: 27px;
|
|
9671
9682
|
line-height: 27px;
|
|
9672
9683
|
background-color: #62e7ce;
|
|
@@ -9801,7 +9812,8 @@ iframe {
|
|
|
9801
9812
|
cursor: pointer;
|
|
9802
9813
|
}
|
|
9803
9814
|
.planner-mode {
|
|
9804
|
-
|
|
9815
|
+
padding: 0 8px;
|
|
9816
|
+
min-width: 65px;
|
|
9805
9817
|
text-align: center;
|
|
9806
9818
|
border-top: 1px solid rgba(255, 255, 255, 0.25);
|
|
9807
9819
|
border-bottom: 1px solid rgba(255, 255, 255, 0.25);
|
|
@@ -9975,7 +9987,7 @@ iframe {
|
|
|
9975
9987
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
9976
9988
|
*/
|
|
9977
9989
|
.mobile-popup {
|
|
9978
|
-
background-color: #
|
|
9990
|
+
background-color: #2E3C41;
|
|
9979
9991
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
9980
9992
|
border-top-left-radius: 12px;
|
|
9981
9993
|
border-top-right-radius: 12px;
|
|
@@ -10049,7 +10061,7 @@ iframe {
|
|
|
10049
10061
|
.touch-popup {
|
|
10050
10062
|
position: absolute;
|
|
10051
10063
|
overflow: hidden;
|
|
10052
|
-
background-color: #
|
|
10064
|
+
background-color: #3B494F;
|
|
10053
10065
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
10054
10066
|
border-radius: 8px;
|
|
10055
10067
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -10123,7 +10135,7 @@ iframe {
|
|
|
10123
10135
|
animation-fill-mode: forwards;
|
|
10124
10136
|
}
|
|
10125
10137
|
.widget-popup {
|
|
10126
|
-
background-color: #
|
|
10138
|
+
background-color: #2E3C41;
|
|
10127
10139
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
10128
10140
|
border-radius: 12px;
|
|
10129
10141
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -10319,9 +10331,13 @@ iframe {
|
|
|
10319
10331
|
pointer-events: none;
|
|
10320
10332
|
z-index: 1;
|
|
10321
10333
|
--scroll-shadow-color: rgba(0, 0, 0, 0.7);
|
|
10322
|
-
--scroll-shadow-size:
|
|
10323
|
-
--scroll-shadow-blur:
|
|
10324
|
-
--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;
|
|
10325
10341
|
}
|
|
10326
10342
|
.scroll-shadow.top {
|
|
10327
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;
|
|
@@ -10369,15 +10385,15 @@ iframe {
|
|
|
10369
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;
|
|
10370
10386
|
}
|
|
10371
10387
|
.scroll-shadow.gradient {
|
|
10372
|
-
--scroll-shadow-color: #
|
|
10388
|
+
--scroll-shadow-color: #252F34;
|
|
10373
10389
|
--scroll-shadow-size: 20px;
|
|
10374
10390
|
--scroll-shadow-blur: 15px;
|
|
10375
10391
|
--scroll-shadow-spread: 15px;
|
|
10376
10392
|
}
|
|
10377
10393
|
.scroll-shadow.large {
|
|
10378
|
-
--scroll-shadow-size:
|
|
10379
|
-
--scroll-shadow-blur:
|
|
10380
|
-
--scroll-shadow-spread:
|
|
10394
|
+
--scroll-shadow-size: 14px;
|
|
10395
|
+
--scroll-shadow-blur: 14px;
|
|
10396
|
+
--scroll-shadow-spread: 14px;
|
|
10381
10397
|
}
|
|
10382
10398
|
/*
|
|
10383
10399
|
* Copyright (c) 2014-2017 BSI Business Systems Integration AG.
|
|
@@ -10471,12 +10487,12 @@ iframe {
|
|
|
10471
10487
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
10472
10488
|
border-radius: 8px;
|
|
10473
10489
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
10474
|
-
background-color: #
|
|
10490
|
+
background-color: #3B494F;
|
|
10475
10491
|
/* Helper class used during width calculation - required on very narrow screens (e.g. Word AddIn) */
|
|
10476
10492
|
}
|
|
10477
10493
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
10478
10494
|
.busyindicator {
|
|
10479
|
-
background-color: rgba(
|
|
10495
|
+
background-color: rgba(59, 73, 79, 0.8);
|
|
10480
10496
|
-webkit-backdrop-filter: blur(15px);
|
|
10481
10497
|
backdrop-filter: blur(15px);
|
|
10482
10498
|
}
|
|
@@ -10499,7 +10515,7 @@ iframe {
|
|
|
10499
10515
|
border-color: rgba(255, 255, 255, 0.12);
|
|
10500
10516
|
}
|
|
10501
10517
|
.busyindicator > .box-buttons > .box-button.default {
|
|
10502
|
-
color: #
|
|
10518
|
+
color: #0E1316;
|
|
10503
10519
|
background-color: #71b0e8;
|
|
10504
10520
|
}
|
|
10505
10521
|
.busyindicator > .box-buttons > .box-button.default:hover {
|
|
@@ -10653,7 +10669,7 @@ input[type=range]:not(.ms-edge)::-webkit-slider-runnable-track {
|
|
|
10653
10669
|
}
|
|
10654
10670
|
input[type=range]:not(.ms-edge)::-webkit-slider-thumb {
|
|
10655
10671
|
box-sizing: border-box;
|
|
10656
|
-
border: 1px solid #
|
|
10672
|
+
border: 1px solid #0E1316;
|
|
10657
10673
|
height: 16px;
|
|
10658
10674
|
width: 16px;
|
|
10659
10675
|
border-radius: 8px;
|
|
@@ -10674,7 +10690,7 @@ input[type=range]::-moz-range-track {
|
|
|
10674
10690
|
}
|
|
10675
10691
|
input[type=range]::-moz-range-thumb {
|
|
10676
10692
|
box-sizing: border-box;
|
|
10677
|
-
border: 1.5px solid #
|
|
10693
|
+
border: 1.5px solid #0E1316;
|
|
10678
10694
|
height: 16px;
|
|
10679
10695
|
width: 16px;
|
|
10680
10696
|
border-radius: 8px;
|
|
@@ -10702,7 +10718,7 @@ input[type=range]::-ms-fill-upper {
|
|
|
10702
10718
|
}
|
|
10703
10719
|
input[type=range]::-ms-thumb {
|
|
10704
10720
|
box-sizing: border-box;
|
|
10705
|
-
border: 1px solid #
|
|
10721
|
+
border: 1px solid #0E1316;
|
|
10706
10722
|
height: 16px;
|
|
10707
10723
|
width: 16px;
|
|
10708
10724
|
border-radius: 8px;
|
|
@@ -11683,7 +11699,7 @@ Try these to switch between fonts:
|
|
|
11683
11699
|
/* scoutIcons: custom icons */
|
|
11684
11700
|
/* scoutIcons: awesome icons */
|
|
11685
11701
|
/*
|
|
11686
|
-
* Copyright (c) 2010-
|
|
11702
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
11687
11703
|
* All rights reserved. This program and the accompanying materials
|
|
11688
11704
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
11689
11705
|
* which accompanies this distribution, and is available at
|
|
@@ -11850,17 +11866,17 @@ Try these to switch between fonts:
|
|
|
11850
11866
|
#scout .chooser-popup {
|
|
11851
11867
|
position: absolute;
|
|
11852
11868
|
overflow: hidden;
|
|
11853
|
-
background-color: #
|
|
11869
|
+
background-color: #3B494F;
|
|
11854
11870
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
11855
11871
|
border-radius: 3px;
|
|
11856
11872
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
11857
11873
|
margin: 5px;
|
|
11858
11874
|
}
|
|
11859
11875
|
#scout .chooser-popup.touch {
|
|
11860
|
-
background-color: #
|
|
11876
|
+
background-color: #1F2428;
|
|
11861
11877
|
}
|
|
11862
11878
|
#scout .popup {
|
|
11863
|
-
background-color: #
|
|
11879
|
+
background-color: #2E3C41;
|
|
11864
11880
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
11865
11881
|
border-radius: 12px;
|
|
11866
11882
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -11874,18 +11890,18 @@ Try these to switch between fonts:
|
|
|
11874
11890
|
display: none;
|
|
11875
11891
|
}
|
|
11876
11892
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb > .scrollbar-thumb-handle {
|
|
11877
|
-
background-color: rgba(
|
|
11893
|
+
background-color: rgba(59, 73, 79, 0.3);
|
|
11878
11894
|
}
|
|
11879
11895
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.scrollbar-thumb-move > .scrollbar-thumb-handle,
|
|
11880
11896
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb:hover > .scrollbar-thumb-handle {
|
|
11881
|
-
background-color: rgba(
|
|
11897
|
+
background-color: rgba(59, 73, 79, 0.45);
|
|
11882
11898
|
}
|
|
11883
11899
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.container-too-small-for-thumb > .scrollbar-thumb-handle {
|
|
11884
|
-
background-color: rgba(
|
|
11900
|
+
background-color: rgba(59, 73, 79, 0.15);
|
|
11885
11901
|
}
|
|
11886
11902
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.container-too-small-for-thumb.scrollbar-thumb-move > .scrollbar-thumb-handle,
|
|
11887
11903
|
#scout .inverted-scrollbars > .scrollbar > .scrollbar-thumb.container-too-small-for-thumb.scrollbar-thumb:hover > .scrollbar-thumb-handle {
|
|
11888
|
-
background-color: rgba(
|
|
11904
|
+
background-color: rgba(59, 73, 79, 0.15);
|
|
11889
11905
|
}
|
|
11890
11906
|
/*
|
|
11891
11907
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
@@ -11968,7 +11984,7 @@ Try these to switch between fonts:
|
|
|
11968
11984
|
position: relative;
|
|
11969
11985
|
height: 22px;
|
|
11970
11986
|
border-radius: 11px;
|
|
11971
|
-
background-color:
|
|
11987
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
11972
11988
|
cursor: pointer;
|
|
11973
11989
|
border: solid 1px #7E8588;
|
|
11974
11990
|
--activated-border-color: #71b0e8;
|
|
@@ -11991,8 +12007,8 @@ Try these to switch between fonts:
|
|
|
11991
12007
|
border-color: var(--activated-border-color);
|
|
11992
12008
|
}
|
|
11993
12009
|
.switch-button.activated:before {
|
|
11994
|
-
background-color: #
|
|
11995
|
-
border-color: #
|
|
12010
|
+
background-color: #1F2428;
|
|
12011
|
+
border-color: #1F2428;
|
|
11996
12012
|
left: calc(100% - 18px);
|
|
11997
12013
|
}
|
|
11998
12014
|
.disabled > .switch-button {
|
|
@@ -12009,8 +12025,8 @@ Try these to switch between fonts:
|
|
|
12009
12025
|
border-color: #7E8588;
|
|
12010
12026
|
}
|
|
12011
12027
|
.disabled > .switch-button.activated::before {
|
|
12012
|
-
background-color: #
|
|
12013
|
-
border-color: #
|
|
12028
|
+
background-color: #1F2428;
|
|
12029
|
+
border-color: #1F2428;
|
|
12014
12030
|
}
|
|
12015
12031
|
/*
|
|
12016
12032
|
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
@@ -12062,6 +12078,13 @@ Try these to switch between fonts:
|
|
|
12062
12078
|
.table.table-row-check > .table-data > .table-row.selected::after {
|
|
12063
12079
|
display: none;
|
|
12064
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
|
+
}
|
|
12065
12088
|
.table.table-row-check > .table-data > .table-row.checked,
|
|
12066
12089
|
.table.table-row-check > .table-data > .table-row.checked.selected {
|
|
12067
12090
|
/* Mark checked rows with a background color */
|
|
@@ -12069,7 +12092,17 @@ Try these to switch between fonts:
|
|
|
12069
12092
|
}
|
|
12070
12093
|
.table.table-row-check > .table-data > .table-row.checked > .table-cell,
|
|
12071
12094
|
.table.table-row-check > .table-data > .table-row.checked.selected > .table-cell {
|
|
12072
|
-
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;
|
|
12073
12106
|
}
|
|
12074
12107
|
.table.table-row-check.keyboard-navigation:focus > .table-data > .table-row.selected,
|
|
12075
12108
|
.table.table-row-check.keyboard-navigation.focused > .table-data > .table-row.selected {
|
|
@@ -12080,7 +12113,7 @@ Try these to switch between fonts:
|
|
|
12080
12113
|
background-color: #94c4ee;
|
|
12081
12114
|
}
|
|
12082
12115
|
.table.structured .table-row:not(.leaf) {
|
|
12083
|
-
background-color: #
|
|
12116
|
+
background-color: #1F2428;
|
|
12084
12117
|
font-weight: bold;
|
|
12085
12118
|
}
|
|
12086
12119
|
.table > .tile-accordion {
|
|
@@ -12099,7 +12132,7 @@ Try these to switch between fonts:
|
|
|
12099
12132
|
padding-bottom: 6px;
|
|
12100
12133
|
}
|
|
12101
12134
|
.table.dimmed-background {
|
|
12102
|
-
background-color: #
|
|
12135
|
+
background-color: #1F2428;
|
|
12103
12136
|
}
|
|
12104
12137
|
.table.dimmed-background > .menubar {
|
|
12105
12138
|
background-color: inherit;
|
|
@@ -12287,7 +12320,7 @@ Try these to switch between fonts:
|
|
|
12287
12320
|
color: #E9EBEB;
|
|
12288
12321
|
}
|
|
12289
12322
|
.table-row.checked > .table-cell {
|
|
12290
|
-
color: #
|
|
12323
|
+
color: #0E1316;
|
|
12291
12324
|
}
|
|
12292
12325
|
.table-cell.empty,
|
|
12293
12326
|
.table-cell.icon-only {
|
|
@@ -12414,7 +12447,7 @@ Try these to switch between fonts:
|
|
|
12414
12447
|
margin-right: 8px;
|
|
12415
12448
|
}
|
|
12416
12449
|
.table-row.checked > .table-cell > .table-cell-icon {
|
|
12417
|
-
color: #
|
|
12450
|
+
color: #0E1316;
|
|
12418
12451
|
}
|
|
12419
12452
|
.table-aggregate {
|
|
12420
12453
|
overflow: hidden;
|
|
@@ -12430,7 +12463,7 @@ Try these to switch between fonts:
|
|
|
12430
12463
|
margin-top: 1px;
|
|
12431
12464
|
}
|
|
12432
12465
|
.table-aggregate-row {
|
|
12433
|
-
background-color: #
|
|
12466
|
+
background-color: #1F2428;
|
|
12434
12467
|
min-width: 100%;
|
|
12435
12468
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
12436
12469
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
@@ -12483,16 +12516,16 @@ Try these to switch between fonts:
|
|
|
12483
12516
|
background-color: rgba(21, 97, 167, 0.4);
|
|
12484
12517
|
}
|
|
12485
12518
|
.column-background-effect-gradient1-start {
|
|
12486
|
-
background-color: #
|
|
12519
|
+
background-color: #5a3437;
|
|
12487
12520
|
}
|
|
12488
12521
|
.column-background-effect-gradient1-end {
|
|
12489
|
-
background-color: #
|
|
12522
|
+
background-color: #1e544e;
|
|
12490
12523
|
}
|
|
12491
12524
|
.column-background-effect-gradient2-start {
|
|
12492
|
-
background-color: #
|
|
12525
|
+
background-color: #1e544e;
|
|
12493
12526
|
}
|
|
12494
12527
|
.column-background-effect-gradient2-end {
|
|
12495
|
-
background-color: #
|
|
12528
|
+
background-color: #5a3437;
|
|
12496
12529
|
}
|
|
12497
12530
|
/* key box */
|
|
12498
12531
|
.table-row > .key-box {
|
|
@@ -12619,7 +12652,7 @@ Try these to switch between fonts:
|
|
|
12619
12652
|
width: 100%;
|
|
12620
12653
|
white-space: nowrap;
|
|
12621
12654
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
12622
|
-
background-color: #
|
|
12655
|
+
background-color: #252F34;
|
|
12623
12656
|
}
|
|
12624
12657
|
.table-control-resize {
|
|
12625
12658
|
position: absolute;
|
|
@@ -12634,7 +12667,7 @@ Try these to switch between fonts:
|
|
|
12634
12667
|
position: absolute;
|
|
12635
12668
|
overflow: hidden;
|
|
12636
12669
|
outline: none;
|
|
12637
|
-
background-color: #
|
|
12670
|
+
background-color: #252F34;
|
|
12638
12671
|
bottom: 64px;
|
|
12639
12672
|
width: 100%;
|
|
12640
12673
|
/* Default value for TableControl.js */
|
|
@@ -12655,7 +12688,7 @@ Try these to switch between fonts:
|
|
|
12655
12688
|
width: 100%;
|
|
12656
12689
|
}
|
|
12657
12690
|
.table-control-content > .form {
|
|
12658
|
-
background-color: #
|
|
12691
|
+
background-color: #252F34;
|
|
12659
12692
|
}
|
|
12660
12693
|
.table-control-content > .form > .root-group-box > .group-box-body {
|
|
12661
12694
|
/* to make sure fields are not drawn over the menubar when making table control container very small */
|
|
@@ -12828,7 +12861,7 @@ Try these to switch between fonts:
|
|
|
12828
12861
|
position: relative;
|
|
12829
12862
|
white-space: nowrap;
|
|
12830
12863
|
overflow: hidden;
|
|
12831
|
-
background-color: #
|
|
12864
|
+
background-color: #1F2428;
|
|
12832
12865
|
border-bottom: 2px solid rgba(255, 255, 255, 0.12);
|
|
12833
12866
|
z-index: 0;
|
|
12834
12867
|
/* begin new stacking context */
|
|
@@ -12973,6 +13006,7 @@ Try these to switch between fonts:
|
|
|
12973
13006
|
overflow: hidden;
|
|
12974
13007
|
text-overflow: ellipsis;
|
|
12975
13008
|
white-space: nowrap;
|
|
13009
|
+
margin-top: 1px;
|
|
12976
13010
|
}
|
|
12977
13011
|
.table-header-item-state {
|
|
12978
13012
|
position: absolute;
|
|
@@ -13049,7 +13083,7 @@ Try these to switch between fonts:
|
|
|
13049
13083
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
13050
13084
|
*/
|
|
13051
13085
|
.table-header-menu {
|
|
13052
|
-
background-color: #
|
|
13086
|
+
background-color: #3B494F;
|
|
13053
13087
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13054
13088
|
border-radius: 8px;
|
|
13055
13089
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -13091,6 +13125,9 @@ Try these to switch between fonts:
|
|
|
13091
13125
|
vertical-align: top;
|
|
13092
13126
|
padding: 16px;
|
|
13093
13127
|
}
|
|
13128
|
+
.table-header-menu-actions > .table-header-menu-group > .table-header-menu-group-text {
|
|
13129
|
+
width: calc(100% + 12px);
|
|
13130
|
+
}
|
|
13094
13131
|
.table-header-menu-filters {
|
|
13095
13132
|
display: inline-block;
|
|
13096
13133
|
vertical-align: top;
|
|
@@ -13232,10 +13269,10 @@ Try these to switch between fonts:
|
|
|
13232
13269
|
content: '\E038';
|
|
13233
13270
|
}
|
|
13234
13271
|
.table-header-menu-command.color-gradient1 {
|
|
13235
|
-
background-image: linear-gradient(to right, #
|
|
13272
|
+
background-image: linear-gradient(to right, #5a3437, #1e544e);
|
|
13236
13273
|
}
|
|
13237
13274
|
.table-header-menu-command.color-gradient2 {
|
|
13238
|
-
background-image: linear-gradient(to right, #
|
|
13275
|
+
background-image: linear-gradient(to right, #1e544e, #5a3437);
|
|
13239
13276
|
}
|
|
13240
13277
|
.table-header-menu-command.color-bar-chart {
|
|
13241
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%);
|
|
@@ -13262,11 +13299,11 @@ Try these to switch between fonts:
|
|
|
13262
13299
|
}
|
|
13263
13300
|
.table-header-menu-filter-table.table-row-check > .table-data {
|
|
13264
13301
|
margin-top: 0;
|
|
13265
|
-
padding: 3px
|
|
13302
|
+
padding: 3px;
|
|
13266
13303
|
}
|
|
13267
13304
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row {
|
|
13268
13305
|
border-radius: 3px;
|
|
13269
|
-
margin-bottom:
|
|
13306
|
+
margin-bottom: 2px;
|
|
13270
13307
|
}
|
|
13271
13308
|
.table-header-menu-filter-table.table-row-check > .table-data > .table-row.last {
|
|
13272
13309
|
margin-bottom: 0;
|
|
@@ -13603,7 +13640,7 @@ Try these to switch between fonts:
|
|
|
13603
13640
|
padding: 5px 4px 8px 8px;
|
|
13604
13641
|
max-width: 250px;
|
|
13605
13642
|
overflow: hidden;
|
|
13606
|
-
background-color: #
|
|
13643
|
+
background-color: #3B494F;
|
|
13607
13644
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13608
13645
|
border-radius: 3px;
|
|
13609
13646
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -13648,7 +13685,7 @@ Try these to switch between fonts:
|
|
|
13648
13685
|
*/
|
|
13649
13686
|
.time-picker-popup {
|
|
13650
13687
|
position: absolute;
|
|
13651
|
-
background-color: #
|
|
13688
|
+
background-color: #3B494F;
|
|
13652
13689
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13653
13690
|
border-radius: 3px;
|
|
13654
13691
|
box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
|
|
@@ -13765,11 +13802,11 @@ Try these to switch between fonts:
|
|
|
13765
13802
|
background-color: rgba(255, 255, 255, 0.18);
|
|
13766
13803
|
}
|
|
13767
13804
|
.day-table > .hour-row > .minutes.selected {
|
|
13768
|
-
color: #
|
|
13805
|
+
color: #0E1316;
|
|
13769
13806
|
background-color: #71b0e8;
|
|
13770
13807
|
}
|
|
13771
13808
|
.day-table > .hour-row > .minutes.selected.now > .text {
|
|
13772
|
-
border-color: #
|
|
13809
|
+
border-color: #0E1316;
|
|
13773
13810
|
}
|
|
13774
13811
|
/*
|
|
13775
13812
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
@@ -13783,7 +13820,7 @@ Try these to switch between fonts:
|
|
|
13783
13820
|
*/
|
|
13784
13821
|
.tooltip {
|
|
13785
13822
|
position: absolute;
|
|
13786
|
-
background-color: #
|
|
13823
|
+
background-color: #3B494F;
|
|
13787
13824
|
border-radius: 3px;
|
|
13788
13825
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
13789
13826
|
color: #BFC2C3;
|
|
@@ -13837,16 +13874,16 @@ Try these to switch between fonts:
|
|
|
13837
13874
|
padding-left: 5px;
|
|
13838
13875
|
}
|
|
13839
13876
|
.ok > .tooltip-menus > .menu-item {
|
|
13840
|
-
color: #
|
|
13877
|
+
color: #0E1316;
|
|
13841
13878
|
}
|
|
13842
13879
|
.info > .tooltip-menus > .menu-item {
|
|
13843
13880
|
color: #E9EBEB;
|
|
13844
13881
|
}
|
|
13845
13882
|
.warning > .tooltip-menus > .menu-item {
|
|
13846
|
-
color: #
|
|
13883
|
+
color: #0E1316;
|
|
13847
13884
|
}
|
|
13848
13885
|
.error > .tooltip-menus > .menu-item {
|
|
13849
|
-
color: #
|
|
13886
|
+
color: #0E1316;
|
|
13850
13887
|
}
|
|
13851
13888
|
.tooltip-arrow {
|
|
13852
13889
|
position: absolute;
|
|
@@ -13866,7 +13903,7 @@ Try these to switch between fonts:
|
|
|
13866
13903
|
.tooltip.error {
|
|
13867
13904
|
background-color: #FF8888;
|
|
13868
13905
|
border-width: 0;
|
|
13869
|
-
color: #
|
|
13906
|
+
color: #0E1316;
|
|
13870
13907
|
}
|
|
13871
13908
|
.tooltip.error > .tooltip-arrow {
|
|
13872
13909
|
background-color: #FF8888;
|
|
@@ -13874,7 +13911,7 @@ Try these to switch between fonts:
|
|
|
13874
13911
|
.tooltip.warning {
|
|
13875
13912
|
background-color: #FFBE6B;
|
|
13876
13913
|
border-width: 0;
|
|
13877
|
-
color: #
|
|
13914
|
+
color: #0E1316;
|
|
13878
13915
|
}
|
|
13879
13916
|
.tooltip.warning > .tooltip-arrow {
|
|
13880
13917
|
background-color: #FFBE6B;
|
|
@@ -13882,7 +13919,7 @@ Try these to switch between fonts:
|
|
|
13882
13919
|
.tooltip.ok {
|
|
13883
13920
|
background-color: #62e7ce;
|
|
13884
13921
|
border-width: 0;
|
|
13885
|
-
color: #
|
|
13922
|
+
color: #0E1316;
|
|
13886
13923
|
}
|
|
13887
13924
|
.tooltip.ok > .tooltip-arrow {
|
|
13888
13925
|
background-color: #62e7ce;
|
|
@@ -14060,7 +14097,7 @@ Try these to switch between fonts:
|
|
|
14060
14097
|
width: 10px;
|
|
14061
14098
|
border-radius: 1px;
|
|
14062
14099
|
height: 2px;
|
|
14063
|
-
background-color: #
|
|
14100
|
+
background-color: #0E1316;
|
|
14064
14101
|
}
|
|
14065
14102
|
.tree-node-checkbox > .check-box:not(.checked).children-checked.disabled {
|
|
14066
14103
|
border-color: rgba(255, 255, 255, 0.12);
|
|
@@ -14123,13 +14160,12 @@ Try these to switch between fonts:
|
|
|
14123
14160
|
}
|
|
14124
14161
|
.tree-node.lazy > .tree-node-control::before {
|
|
14125
14162
|
font-family: Arial, sans-serif;
|
|
14126
|
-
font-size: 13px;
|
|
14127
14163
|
content: '+';
|
|
14128
14164
|
/* Move to left because '+' sign is not as wide as 'arrow-down' */
|
|
14129
14165
|
margin-left: -2px;
|
|
14130
14166
|
}
|
|
14131
14167
|
.tree-node.expanded > .tree-node-control::before {
|
|
14132
|
-
/* 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. */
|
|
14133
14169
|
/* See https://bugzilla.mozilla.org/show_bug.cgi?id=739176 */
|
|
14134
14170
|
-webkit-transform: rotate(89.99deg);
|
|
14135
14171
|
-ms-transform: rotate(89.99deg);
|
|
@@ -14308,7 +14344,7 @@ Try these to switch between fonts:
|
|
|
14308
14344
|
}
|
|
14309
14345
|
/* The default class is added if displayStyle is set to DEFAULT. If it is set to PLAIN no class will be added. */
|
|
14310
14346
|
.default-tile {
|
|
14311
|
-
background-color: #
|
|
14347
|
+
background-color: #252F34;
|
|
14312
14348
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
14313
14349
|
padding: 6px 8px;
|
|
14314
14350
|
}
|
|
@@ -14409,7 +14445,7 @@ Try these to switch between fonts:
|
|
|
14409
14445
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
14410
14446
|
*/
|
|
14411
14447
|
.tile-overview {
|
|
14412
|
-
background-color: #
|
|
14448
|
+
background-color: #1F2428;
|
|
14413
14449
|
position: relative;
|
|
14414
14450
|
height: 100%;
|
|
14415
14451
|
width: 100%;
|
|
@@ -14492,16 +14528,16 @@ Try these to switch between fonts:
|
|
|
14492
14528
|
border: none;
|
|
14493
14529
|
border-radius: 12px;
|
|
14494
14530
|
color: #BFC2C3;
|
|
14495
|
-
--tile-background-color: #
|
|
14531
|
+
--tile-background-color: #252F34;
|
|
14496
14532
|
background-color: var(--tile-background-color);
|
|
14497
14533
|
overflow: hidden;
|
|
14498
14534
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14499
14535
|
}
|
|
14500
14536
|
.tile.dashboard.inverted {
|
|
14501
|
-
box-shadow: 0 0 0 1px #
|
|
14537
|
+
box-shadow: 0 0 0 1px #252F34, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14502
14538
|
}
|
|
14503
14539
|
.tile.dashboard.inverted.color-alternative {
|
|
14504
|
-
box-shadow: 0 0 0 1px #
|
|
14540
|
+
box-shadow: 0 0 0 1px #252F34, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14505
14541
|
}
|
|
14506
14542
|
.dimmed-background .tile.dashboard {
|
|
14507
14543
|
box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.05);
|
|
@@ -14645,7 +14681,7 @@ Try these to switch between fonts:
|
|
|
14645
14681
|
animation: fade-out-from-current 0.15s;
|
|
14646
14682
|
}
|
|
14647
14683
|
.tile.dashboard.inverted {
|
|
14648
|
-
--tile-background-color: #
|
|
14684
|
+
--tile-background-color: #252F34;
|
|
14649
14685
|
color: #BFC2C3;
|
|
14650
14686
|
}
|
|
14651
14687
|
.tile.dashboard.inverted.disabled:not(.read-only) {
|
|
@@ -14683,7 +14719,12 @@ Try these to switch between fonts:
|
|
|
14683
14719
|
background-color: rgba(255, 255, 255, 0.18);
|
|
14684
14720
|
}
|
|
14685
14721
|
.tile.dashboard.inverted > .form-field.has-error > .status::before {
|
|
14686
|
-
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;
|
|
14687
14728
|
}
|
|
14688
14729
|
.tile.dashboard.inverted > .form-field .scrollbar-thumb-handle {
|
|
14689
14730
|
background-color: rgba(255, 255, 255, 0.3);
|
|
@@ -14701,7 +14742,7 @@ Try these to switch between fonts:
|
|
|
14701
14742
|
background-color: rgba(255, 255, 255, 0.15);
|
|
14702
14743
|
}
|
|
14703
14744
|
.tile.dashboard.color-alternative {
|
|
14704
|
-
--tile-background-color: #
|
|
14745
|
+
--tile-background-color: #252F34;
|
|
14705
14746
|
color: #BFC2C3;
|
|
14706
14747
|
}
|
|
14707
14748
|
.tile.dashboard.color-alternative.disabled:not(.read-only) {
|
|
@@ -14723,7 +14764,7 @@ Try these to switch between fonts:
|
|
|
14723
14764
|
color: #b3d5f3;
|
|
14724
14765
|
}
|
|
14725
14766
|
.tile.dashboard.inverted.color-alternative {
|
|
14726
|
-
--tile-background-color: #
|
|
14767
|
+
--tile-background-color: #252F34;
|
|
14727
14768
|
color: #BFC2C3;
|
|
14728
14769
|
}
|
|
14729
14770
|
.tile.dashboard.inverted.color-alternative.disabled:not(.read-only) {
|
|
@@ -14755,14 +14796,14 @@ Try these to switch between fonts:
|
|
|
14755
14796
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14756
14797
|
}
|
|
14757
14798
|
.tile.dashboard.selected.inverted {
|
|
14758
|
-
--tile-background-color: #
|
|
14799
|
+
--tile-background-color: #252f34;
|
|
14759
14800
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14760
14801
|
}
|
|
14761
14802
|
.tile.dashboard.selected.color-alternative {
|
|
14762
14803
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14763
14804
|
}
|
|
14764
14805
|
.tile.dashboard.selected.inverted.color-alternative {
|
|
14765
|
-
--tile-background-color: #
|
|
14806
|
+
--tile-background-color: #252f34;
|
|
14766
14807
|
box-shadow: 0 0 0 2px #71b0e8, 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
|
|
14767
14808
|
}
|
|
14768
14809
|
.dimmed-background .tile.dashboard.selected {
|
|
@@ -14855,7 +14896,7 @@ Try these to switch between fonts:
|
|
|
14855
14896
|
background-color: inherit;
|
|
14856
14897
|
}
|
|
14857
14898
|
.button-tile.dashboard > .tile-button {
|
|
14858
|
-
background-color: #
|
|
14899
|
+
background-color: #252F34;
|
|
14859
14900
|
}
|
|
14860
14901
|
.button-tile.dashboard > .tile-button > .field > .label {
|
|
14861
14902
|
color: #71b0e8;
|
|
@@ -14871,7 +14912,7 @@ Try these to switch between fonts:
|
|
|
14871
14912
|
background-color: rgba(255, 255, 255, 0.18);
|
|
14872
14913
|
}
|
|
14873
14914
|
.button-tile.dashboard.inverted > .tile-button {
|
|
14874
|
-
background-color: #
|
|
14915
|
+
background-color: #252F34;
|
|
14875
14916
|
}
|
|
14876
14917
|
.button-tile.dashboard.inverted > .tile-button > .field > .label {
|
|
14877
14918
|
color: #71b0e8;
|
|
@@ -14889,7 +14930,7 @@ Try these to switch between fonts:
|
|
|
14889
14930
|
border-color: rgba(255, 255, 255, 0.18);
|
|
14890
14931
|
}
|
|
14891
14932
|
.button-tile.dashboard.color-alternative.inverted > .tile-button {
|
|
14892
|
-
background-color: #
|
|
14933
|
+
background-color: #252F34;
|
|
14893
14934
|
}
|
|
14894
14935
|
.button-tile.dashboard.color-alternative.inverted > .tile-button > .field > .label {
|
|
14895
14936
|
color: #71b0e8;
|
|
@@ -15006,7 +15047,7 @@ Try these to switch between fonts:
|
|
|
15006
15047
|
--scroll-shadow-size: 20px;
|
|
15007
15048
|
--scroll-shadow-blur: 15px;
|
|
15008
15049
|
--scroll-shadow-spread: 15px;
|
|
15009
|
-
--scroll-shadow-color: #
|
|
15050
|
+
--scroll-shadow-color: #252F34;
|
|
15010
15051
|
}
|
|
15011
15052
|
.tile.dashboard > .table-field > .table > .table-data > .table-row > .table-cell,
|
|
15012
15053
|
.tile.dashboard > .table-field > .table > .table-data > .table-row > .table-cell > .font-icon {
|
|
@@ -15043,7 +15084,7 @@ Try these to switch between fonts:
|
|
|
15043
15084
|
color: #BFC2C3;
|
|
15044
15085
|
}
|
|
15045
15086
|
.tile.dashboard.inverted > .table-field > .table > .table-data + .scroll-shadow {
|
|
15046
|
-
--scroll-shadow-color: #
|
|
15087
|
+
--scroll-shadow-color: #252F34;
|
|
15047
15088
|
}
|
|
15048
15089
|
.tile.dashboard.inverted > .table-field > .table > .menubar {
|
|
15049
15090
|
border-top-color: rgba(255, 255, 255, 0.25);
|
|
@@ -15079,7 +15120,7 @@ Try these to switch between fonts:
|
|
|
15079
15120
|
color: #BFC2C3;
|
|
15080
15121
|
}
|
|
15081
15122
|
.tile.dashboard.color-alternative.inverted > .table-field > .table > .table-data + .scroll-shadow {
|
|
15082
|
-
--scroll-shadow-color: #
|
|
15123
|
+
--scroll-shadow-color: #252F34;
|
|
15083
15124
|
}
|
|
15084
15125
|
.tile.dashboard.color-alternative.inverted > .table-field > .table > .menubar {
|
|
15085
15126
|
border-top-color: rgba(255, 255, 255, 0.25);
|
|
@@ -15279,8 +15320,8 @@ Try these to switch between fonts:
|
|
|
15279
15320
|
/* Improve Chrome's auto-fill style by overriding the forced yellow background and black text color. */
|
|
15280
15321
|
/* (Requires some hacks, see http://webagility.com/posts/remove-forced-yellow-input-background-in-chrome) */
|
|
15281
15322
|
border-top-width: 0;
|
|
15282
|
-
padding-top:
|
|
15283
|
-
-webkit-box-shadow: inset 0 0 0 1000px #
|
|
15323
|
+
padding-top: 3px;
|
|
15324
|
+
-webkit-box-shadow: inset 0 0 0 1000px #252F34;
|
|
15284
15325
|
-webkit-text-fill-color: #E9EBEB !important;
|
|
15285
15326
|
/* NOSONAR (!important is okay here) */
|
|
15286
15327
|
}
|
|
@@ -15293,7 +15334,7 @@ Try these to switch between fonts:
|
|
|
15293
15334
|
/* NOSONAR (!important is okay here) */
|
|
15294
15335
|
}
|
|
15295
15336
|
.login-box-content > form > input.alternative:-webkit-autofill::selection {
|
|
15296
|
-
-webkit-text-fill-color: #
|
|
15337
|
+
-webkit-text-fill-color: #0E1316 !important;
|
|
15297
15338
|
/* NOSONAR (!important is okay here) */
|
|
15298
15339
|
}
|
|
15299
15340
|
/*
|
|
@@ -15316,7 +15357,7 @@ Try these to switch between fonts:
|
|
|
15316
15357
|
border-color: #9f5555;
|
|
15317
15358
|
}
|
|
15318
15359
|
.login-button.default.disabled {
|
|
15319
|
-
color: #
|
|
15360
|
+
color: #0E1316;
|
|
15320
15361
|
border-color: #71b0e8;
|
|
15321
15362
|
background-color: #71b0e8;
|
|
15322
15363
|
}
|
|
@@ -15327,7 +15368,7 @@ Try these to switch between fonts:
|
|
|
15327
15368
|
animation: pulsate 2s cubic-bezier(0.5, 0.1, 0.1, 0.5) infinite;
|
|
15328
15369
|
display: inline-block;
|
|
15329
15370
|
border-radius: 50%;
|
|
15330
|
-
border: 1px rgba(
|
|
15371
|
+
border: 1px rgba(14, 19, 22, 0.8) solid;
|
|
15331
15372
|
width: 18px;
|
|
15332
15373
|
height: 18px;
|
|
15333
15374
|
vertical-align: middle;
|
|
@@ -15339,6 +15380,20 @@ Try these to switch between fonts:
|
|
|
15339
15380
|
-o-animation: nop 0.05s;
|
|
15340
15381
|
animation: nop 0.05s;
|
|
15341
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
|
+
}
|
|
15342
15397
|
/*
|
|
15343
15398
|
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
|
|
15344
15399
|
* All rights reserved. This program and the accompanying materials
|