@sapui5/sap.gantt 1.123.0 → 1.125.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/src/sap/gantt/.library +11 -5
  5. package/src/sap/gantt/AdhocLine.js +1 -1
  6. package/src/sap/gantt/GanttChart.js +1 -1
  7. package/src/sap/gantt/GanttChartBase.js +4 -4
  8. package/src/sap/gantt/GanttChartContainer.js +1 -1
  9. package/src/sap/gantt/GanttChartWithTable.js +1 -1
  10. package/src/sap/gantt/axistime/AxisTimeStrategyBase.js +1 -3
  11. package/src/sap/gantt/axistime/FullScreenStrategy.js +1 -1
  12. package/src/sap/gantt/axistime/ProportionZoomStrategy.js +1 -1
  13. package/src/sap/gantt/axistime/StepwiseZoomStrategy.js +1 -1
  14. package/src/sap/gantt/changeHandlers/simple/AdhocLine.js +1 -1
  15. package/src/sap/gantt/changeHandlers/simple/DeltaLine.js +1 -1
  16. package/src/sap/gantt/changeHandlers/simple/GanttChartContainer.js +1 -1
  17. package/src/sap/gantt/changeHandlers/simple/GanttChartWithTable.js +1 -1
  18. package/src/sap/gantt/config/BirdEyeGroup.js +2 -2
  19. package/src/sap/gantt/config/ChartScheme.js +2 -2
  20. package/src/sap/gantt/config/ColumnAttribute.js +2 -2
  21. package/src/sap/gantt/config/ContainerLayout.js +2 -2
  22. package/src/sap/gantt/config/ExpandChart.js +2 -2
  23. package/src/sap/gantt/config/ExpandChartGroup.js +2 -2
  24. package/src/sap/gantt/config/GanttChartLayout.js +2 -2
  25. package/src/sap/gantt/config/Hierarchy.js +2 -2
  26. package/src/sap/gantt/config/HierarchyColumn.js +2 -2
  27. package/src/sap/gantt/config/LayoutGroup.js +3 -3
  28. package/src/sap/gantt/config/Locale.js +9 -11
  29. package/src/sap/gantt/config/Mode.js +2 -2
  30. package/src/sap/gantt/config/ModeGroup.js +2 -2
  31. package/src/sap/gantt/config/ObjectType.js +2 -2
  32. package/src/sap/gantt/config/SettingGroup.js +2 -2
  33. package/src/sap/gantt/config/SettingItem.js +1 -1
  34. package/src/sap/gantt/config/Shape.js +2 -2
  35. package/src/sap/gantt/config/TimeAxis.js +1 -1
  36. package/src/sap/gantt/config/TimeHorizon.js +1 -1
  37. package/src/sap/gantt/config/TimeZoomGroup.js +2 -2
  38. package/src/sap/gantt/config/ToolbarGroup.js +2 -2
  39. package/src/sap/gantt/config/ToolbarScheme.js +2 -2
  40. package/src/sap/gantt/control/Cell.js +2 -2
  41. package/src/sap/gantt/control/Toolbar.js +1 -1
  42. package/src/sap/gantt/def/DefBase.js +1 -1
  43. package/src/sap/gantt/def/SvgDefs.js +1 -1
  44. package/src/sap/gantt/def/cal/Calendar.js +1 -1
  45. package/src/sap/gantt/def/cal/CalendarDefs.js +1 -1
  46. package/src/sap/gantt/def/cal/TimeInterval.js +1 -1
  47. package/src/sap/gantt/def/filter/MorphologyFilter.js +1 -1
  48. package/src/sap/gantt/def/gradient/LinearGradient.js +1 -1
  49. package/src/sap/gantt/def/gradient/RadialGradient.js +1 -1
  50. package/src/sap/gantt/def/gradient/Stop.js +1 -1
  51. package/src/sap/gantt/def/pattern/BackSlashPattern.js +1 -1
  52. package/src/sap/gantt/def/pattern/PatternBase.js +1 -1
  53. package/src/sap/gantt/def/pattern/SlashPattern.js +1 -1
  54. package/src/sap/gantt/drawer/Drawer.js +1 -1
  55. package/src/sap/gantt/eventHandler/AutoScrollHandler.js +1 -1
  56. package/src/sap/gantt/eventHandler/BirdEyeHandler.js +1 -1
  57. package/src/sap/gantt/eventHandler/MouseWheelHandler.js +1 -1
  58. package/src/sap/gantt/eventHandler/ShapeHoverHandler.js +1 -1
  59. package/src/sap/gantt/eventHandler/ShapeResizeHandler.js +1 -1
  60. package/src/sap/gantt/eventHandler/TimePeriodZoomHandler.js +1 -1
  61. package/src/sap/gantt/eventHandler/TimePopoverHandler.js +1 -1
  62. package/src/sap/gantt/flexibility/simple/GanttTableColumn.flexibility.js +1 -4
  63. package/src/sap/gantt/layouts/SidePanel.js +197 -0
  64. package/src/sap/gantt/layouts/SidePanelRenderer.js +28 -0
  65. package/src/sap/gantt/legend/DimensionLegend.js +2 -2
  66. package/src/sap/gantt/legend/LegendBase.js +2 -2
  67. package/src/sap/gantt/legend/LegendContainer.js +2 -2
  68. package/src/sap/gantt/legend/ListLegend.js +3 -3
  69. package/src/sap/gantt/library.js +4 -4
  70. package/src/sap/gantt/messagebundle_ar.properties +5 -2
  71. package/src/sap/gantt/messagebundle_bg.properties +5 -2
  72. package/src/sap/gantt/messagebundle_ca.properties +5 -2
  73. package/src/sap/gantt/messagebundle_cnr.properties +5 -2
  74. package/src/sap/gantt/messagebundle_cs.properties +5 -2
  75. package/src/sap/gantt/messagebundle_cy.properties +5 -2
  76. package/src/sap/gantt/messagebundle_da.properties +5 -2
  77. package/src/sap/gantt/messagebundle_de.properties +5 -2
  78. package/src/sap/gantt/messagebundle_el.properties +5 -2
  79. package/src/sap/gantt/messagebundle_en.properties +5 -2
  80. package/src/sap/gantt/messagebundle_en_GB.properties +5 -2
  81. package/src/sap/gantt/messagebundle_es.properties +5 -2
  82. package/src/sap/gantt/messagebundle_es_MX.properties +5 -2
  83. package/src/sap/gantt/messagebundle_et.properties +5 -2
  84. package/src/sap/gantt/messagebundle_fi.properties +5 -2
  85. package/src/sap/gantt/messagebundle_fr.properties +5 -2
  86. package/src/sap/gantt/messagebundle_fr_CA.properties +5 -2
  87. package/src/sap/gantt/messagebundle_hi.properties +5 -2
  88. package/src/sap/gantt/messagebundle_hr.properties +5 -2
  89. package/src/sap/gantt/messagebundle_hu.properties +5 -2
  90. package/src/sap/gantt/messagebundle_id.properties +5 -2
  91. package/src/sap/gantt/messagebundle_it.properties +5 -2
  92. package/src/sap/gantt/messagebundle_iw.properties +5 -2
  93. package/src/sap/gantt/messagebundle_ja.properties +5 -2
  94. package/src/sap/gantt/messagebundle_kk.properties +5 -2
  95. package/src/sap/gantt/messagebundle_ko.properties +5 -2
  96. package/src/sap/gantt/messagebundle_lt.properties +5 -2
  97. package/src/sap/gantt/messagebundle_lv.properties +5 -2
  98. package/src/sap/gantt/messagebundle_mk.properties +6 -3
  99. package/src/sap/gantt/messagebundle_ms.properties +5 -2
  100. package/src/sap/gantt/messagebundle_nl.properties +5 -2
  101. package/src/sap/gantt/messagebundle_no.properties +5 -2
  102. package/src/sap/gantt/messagebundle_pl.properties +5 -2
  103. package/src/sap/gantt/messagebundle_pt.properties +5 -2
  104. package/src/sap/gantt/messagebundle_pt_PT.properties +5 -2
  105. package/src/sap/gantt/messagebundle_ro.properties +5 -2
  106. package/src/sap/gantt/messagebundle_ru.properties +5 -2
  107. package/src/sap/gantt/messagebundle_sh.properties +5 -2
  108. package/src/sap/gantt/messagebundle_sk.properties +5 -2
  109. package/src/sap/gantt/messagebundle_sl.properties +5 -2
  110. package/src/sap/gantt/messagebundle_sr.properties +5 -2
  111. package/src/sap/gantt/messagebundle_sv.properties +10 -7
  112. package/src/sap/gantt/messagebundle_th.properties +5 -2
  113. package/src/sap/gantt/messagebundle_tr.properties +5 -2
  114. package/src/sap/gantt/messagebundle_uk.properties +5 -2
  115. package/src/sap/gantt/messagebundle_vi.properties +5 -2
  116. package/src/sap/gantt/messagebundle_zh_CN.properties +5 -2
  117. package/src/sap/gantt/messagebundle_zh_TW.properties +5 -2
  118. package/src/sap/gantt/misc/AxisTime.js +4 -4
  119. package/src/sap/gantt/misc/Memoizer.js +1 -1
  120. package/src/sap/gantt/misc/RelativeTimeFormatter.js +1 -1
  121. package/src/sap/gantt/misc/ShapeManager.js +1 -1
  122. package/src/sap/gantt/misc/Utility.js +3 -3
  123. package/src/sap/gantt/overlays/GanttRowOverlay.js +1 -1
  124. package/src/sap/gantt/overlays/Overlay.js +1 -1
  125. package/src/sap/gantt/shape/Circle.js +2 -2
  126. package/src/sap/gantt/shape/ClipPath.js +2 -2
  127. package/src/sap/gantt/shape/Definitions.js +2 -2
  128. package/src/sap/gantt/shape/Group.js +2 -2
  129. package/src/sap/gantt/shape/Image.js +2 -2
  130. package/src/sap/gantt/shape/Line.js +2 -2
  131. package/src/sap/gantt/shape/Path.js +2 -2
  132. package/src/sap/gantt/shape/Polygon.js +2 -2
  133. package/src/sap/gantt/shape/Polyline.js +2 -2
  134. package/src/sap/gantt/shape/Rectangle.js +2 -2
  135. package/src/sap/gantt/shape/ResizeShadowShape.js +2 -2
  136. package/src/sap/gantt/shape/SelectedShape.js +2 -2
  137. package/src/sap/gantt/shape/Shape.js +2 -2
  138. package/src/sap/gantt/shape/Text.js +2 -2
  139. package/src/sap/gantt/shape/cal/Calendar.js +2 -2
  140. package/src/sap/gantt/shape/ext/Chevron.js +2 -2
  141. package/src/sap/gantt/shape/ext/Cursor.js +2 -2
  142. package/src/sap/gantt/shape/ext/Diamond.js +2 -2
  143. package/src/sap/gantt/shape/ext/Iconfont.js +2 -2
  144. package/src/sap/gantt/shape/ext/Pentangle.js +2 -2
  145. package/src/sap/gantt/shape/ext/TextRepeat.js +2 -2
  146. package/src/sap/gantt/shape/ext/Triangle.js +2 -2
  147. package/src/sap/gantt/shape/ext/rls/Relationship.js +2 -2
  148. package/src/sap/gantt/shape/ext/rls/SelectedRelationship.js +3 -3
  149. package/src/sap/gantt/shape/ext/ubc/UbcBorderPath.js +2 -2
  150. package/src/sap/gantt/shape/ext/ubc/UbcOverCapacityZonePolygon.js +2 -2
  151. package/src/sap/gantt/shape/ext/ubc/UbcPolygon.js +2 -2
  152. package/src/sap/gantt/shape/ext/ubc/UbcShortageCapacityPolygon.js +2 -2
  153. package/src/sap/gantt/shape/ext/ubc/UbcTooltipRectangle.js +2 -2
  154. package/src/sap/gantt/shape/ext/ubc/UbcUnderCapacityZonePolygon.js +2 -2
  155. package/src/sap/gantt/shape/ext/ubc/UbcUsedPolygon.js +2 -2
  156. package/src/sap/gantt/shape/ext/ubc/UtilizationBarChart.js +2 -2
  157. package/src/sap/gantt/shape/ext/ulc/UlcBorderPath.js +2 -2
  158. package/src/sap/gantt/shape/ext/ulc/UlcClipPath.js +2 -2
  159. package/src/sap/gantt/shape/ext/ulc/UlcClipingPath.js +2 -2
  160. package/src/sap/gantt/shape/ext/ulc/UlcDimension.js +2 -2
  161. package/src/sap/gantt/shape/ext/ulc/UlcMiddleLine.js +2 -2
  162. package/src/sap/gantt/shape/ext/ulc/UlcOverCapacityZoneRectangle.js +2 -2
  163. package/src/sap/gantt/shape/ext/ulc/UlcOverClipRectangle.js +2 -2
  164. package/src/sap/gantt/shape/ext/ulc/UlcRectangle.js +2 -2
  165. package/src/sap/gantt/shape/ext/ulc/UlcTooltipRectangle.js +2 -2
  166. package/src/sap/gantt/shape/ext/ulc/UlcUnderClipRectangle.js +2 -2
  167. package/src/sap/gantt/shape/ext/ulc/UtilizationLineChart.js +2 -2
  168. package/src/sap/gantt/simple/AdhocDiamond.js +1 -1
  169. package/src/sap/gantt/simple/AdhocLine.js +1 -1
  170. package/src/sap/gantt/simple/BaseCalendar.js +1 -1
  171. package/src/sap/gantt/simple/BaseChevron.js +1 -1
  172. package/src/sap/gantt/simple/BaseConditionalShape.js +1 -1
  173. package/src/sap/gantt/simple/BaseCursor.js +1 -1
  174. package/src/sap/gantt/simple/BaseDeltaRectangle.js +1 -1
  175. package/src/sap/gantt/simple/BaseDiamond.js +1 -1
  176. package/src/sap/gantt/simple/BaseGroup.js +1 -1
  177. package/src/sap/gantt/simple/BaseImage.js +1 -1
  178. package/src/sap/gantt/simple/BaseLine.js +1 -1
  179. package/src/sap/gantt/simple/BasePath.js +1 -1
  180. package/src/sap/gantt/simple/BasePseudoShape.js +1 -1
  181. package/src/sap/gantt/simple/BaseRectangle.js +1 -1
  182. package/src/sap/gantt/simple/BaseShape.js +1 -1
  183. package/src/sap/gantt/simple/BaseText.js +1 -1
  184. package/src/sap/gantt/simple/BaseTriangle.js +1 -1
  185. package/src/sap/gantt/simple/ContainerToolbar.js +3 -3
  186. package/src/sap/gantt/simple/ContainerToolbarPlaceholder.js +1 -1
  187. package/src/sap/gantt/simple/CoordinateUtils.js +1 -1
  188. package/src/sap/gantt/simple/CustomVariantHandler.js +1 -1
  189. package/src/sap/gantt/simple/DeltaLine.js +1 -1
  190. package/src/sap/gantt/simple/DimensionLegendRenderer.js +1 -1
  191. package/src/sap/gantt/simple/ExpandModel.js +1 -1
  192. package/src/sap/gantt/simple/FindAndSelectUtils.js +1 -1
  193. package/src/sap/gantt/simple/GanttAdaptationData.js +1 -1
  194. package/src/sap/gantt/simple/GanttChartContainer.js +31 -2
  195. package/src/sap/gantt/simple/GanttChartContainerRenderer.js +29 -12
  196. package/src/sap/gantt/simple/GanttChartWithTable.js +44 -17
  197. package/src/sap/gantt/simple/GanttDragDropExtension.js +4 -2
  198. package/src/sap/gantt/simple/GanttExtension.js +1 -1
  199. package/src/sap/gantt/simple/GanttHeader.js +2 -2
  200. package/src/sap/gantt/simple/GanttPointerExtension.js +1 -3
  201. package/src/sap/gantt/simple/GanttPopoverExtension.js +1 -1
  202. package/src/sap/gantt/simple/GanttPrinting.js +97 -25
  203. package/src/sap/gantt/simple/GanttRowAction.js +1 -1
  204. package/src/sap/gantt/simple/GanttRowSettings.js +1 -1
  205. package/src/sap/gantt/simple/GanttUtils.js +12 -4
  206. package/src/sap/gantt/simple/InnerGanttChart.js +11 -2
  207. package/src/sap/gantt/simple/InnerGanttChartRenderer.js +1 -1
  208. package/src/sap/gantt/simple/LegendContainer.js +1 -1
  209. package/src/sap/gantt/simple/LegendShapeGroup.js +1 -1
  210. package/src/sap/gantt/simple/MultiActivityGroup.js +1 -1
  211. package/src/sap/gantt/simple/MultiActivityRowSettings.js +1 -1
  212. package/src/sap/gantt/simple/Relationship.js +1 -1
  213. package/src/sap/gantt/simple/RenderUtils.js +5 -9
  214. package/src/sap/gantt/simple/SelectionModel.js +17 -12
  215. package/src/sap/gantt/simple/ShapeScheme.js +1 -1
  216. package/src/sap/gantt/simple/StockChart.js +1 -1
  217. package/src/sap/gantt/simple/StockChartDimension.js +1 -1
  218. package/src/sap/gantt/simple/StockChartPeriod.js +1 -1
  219. package/src/sap/gantt/simple/UtilizationBarChart.js +1 -1
  220. package/src/sap/gantt/simple/UtilizationChart.js +1 -1
  221. package/src/sap/gantt/simple/UtilizationDimension.js +1 -1
  222. package/src/sap/gantt/simple/UtilizationLineChart.js +1 -1
  223. package/src/sap/gantt/simple/UtilizationPeriod.js +1 -1
  224. package/src/sap/gantt/simple/shapes/Shape.js +5 -23
  225. package/src/sap/gantt/simple/shapes/Task.js +1 -1
  226. package/src/sap/gantt/themes/base/Gantt.less +9 -5
  227. package/src/sap/gantt/themes/sap_belize/library.source.less +10 -1
  228. package/src/sap/gantt/themes/sap_belize_base/Gantt.less +895 -0
  229. package/src/sap/gantt/themes/sap_belize_base/GanttPrinting.less +101 -0
  230. package/src/sap/gantt/themes/sap_belize_base/GanttSyncedControl.less +96 -0
  231. package/src/sap/gantt/themes/sap_belize_base/library.source.less +13 -0
  232. package/src/sap/gantt/themes/sap_belize_hcb/library.source.less +10 -1
  233. package/src/sap/gantt/themes/sap_belize_hcw/library.source.less +10 -1
  234. package/src/sap/gantt/themes/sap_bluecrystal/library.source.less +10 -1
  235. package/src/sap/gantt/themes/sap_bluecrystal_base/Gantt.less +899 -0
  236. package/src/sap/gantt/themes/sap_bluecrystal_base/GanttPrinting.less +101 -0
  237. package/src/sap/gantt/themes/sap_bluecrystal_base/GanttSyncedControl.less +96 -0
  238. package/src/sap/gantt/themes/sap_bluecrystal_base/library.source.less +13 -0
  239. package/src/sap/gantt/utils/GanttChartConfigurationUtils.js +4 -1
@@ -0,0 +1,895 @@
1
+ /*!
2
+ * SAP UI development toolkit for HTML5 (SAPUI5)
3
+
4
+ (c) Copyright 2009-2015 SAP SE. All rights reserved
5
+
6
+ */
7
+
8
+ /**Disable text selection on text */
9
+ svg {
10
+ cursor: default;
11
+ -webkit-user-select: none;
12
+ -moz-user-select: none;
13
+ -ms-user-select: none;
14
+ user-select: none;
15
+ }
16
+
17
+ .sapGanttContainer {
18
+ display: flex;
19
+ flex-flow: column;
20
+ height: 100%;
21
+ width: 100%;
22
+
23
+ .sapGanttContainerTbl {
24
+ flex: 0 1 auto;
25
+ }
26
+ .sapGanttContainerStatusBar{
27
+ flex: 0 1 auto;
28
+ display: table-row;
29
+ }
30
+ }
31
+ .sapGanttContainerCnt {
32
+ flex: 1 1 auto;
33
+ height: calc(100% - 32px);
34
+ }
35
+ .sapGanttContainerCntWithStatusBar{
36
+ flex: 1 1 auto;
37
+ height: calc(100% - 64px);
38
+ }
39
+ .sapUiSizeCompact {
40
+ .sapGanttContainerCnt {
41
+ flex: 1 1 auto;
42
+ height: calc(100% - 32px);
43
+ }
44
+ .sapGanttContainerCntWithStatusBar {
45
+ flex: 1 1 auto;
46
+ height: calc(100% - 64px);
47
+ }
48
+
49
+ }
50
+
51
+ .sapGanttPseudoShapeColor {
52
+ fill: @sapChart_OrderedColor_1;
53
+ }
54
+
55
+ .sapGanttPseudoShapeOverlapIndicatorStyle {
56
+ fill: @sapChart_OrderedColor_11;
57
+ height: 0.25rem;
58
+ }
59
+ .sapUiGanttSearchSidePanel{
60
+ width: 30%;
61
+ float: right;
62
+ }
63
+
64
+ @media (mn-width: 320px) and (max-width: 599px) {
65
+ .sapGanttContainerWithSidePanel {
66
+ display: table;
67
+ }
68
+ .sapGanttContainerCntWithSidePanel {
69
+ height: 96% !important;
70
+ width: 80%;
71
+ float: left;
72
+ }
73
+ .sapUiGanttSearchSidePanel{
74
+ width: 20%;
75
+ float: right;
76
+ }
77
+ }
78
+
79
+ @media (min-width: 600px) and (max-width: 1439px) {
80
+ .sapGanttContainerWithSidePanel {
81
+ display: table;
82
+ }
83
+ .sapGanttContainerCntWithSidePanel {
84
+ height: 96% !important;
85
+ width: 70%;
86
+ float: left;
87
+ }
88
+ .sapUiGanttSearchSidePanel{
89
+ width: 30%;
90
+ float: right;
91
+ }
92
+ }
93
+
94
+
95
+ @media (min-width: 1440px) {
96
+ .sapGanttContainerWithSidePanel {
97
+ display: table;
98
+ }
99
+ .sapGanttContainerCntWithSidePanel {
100
+ height: 96% !important;
101
+ width: 80%;
102
+ float: left;
103
+ }
104
+ .sapUiGanttSearchSidePanel{
105
+ width: 20%;
106
+ float: right;
107
+ }
108
+ }
109
+
110
+ .sapUiTableHidden.sapGanttTableVerticalScrollBarContainer {
111
+ display: block;
112
+ }
113
+
114
+ .sapUiTableVSb.sapGanttTableVerticalScrollBar {
115
+ height: 0px;
116
+ }
117
+
118
+ .sapUiSizeCompact .sapGanttContainerTbl .sapMIBar {
119
+ height: 2.1rem;
120
+ }
121
+ .sapGanttContainerStatusBar .sapMFlexBox {
122
+ height: 2rem;
123
+ border-top: 1px solid @sapUiGroupTitleBorderColor;
124
+ }
125
+
126
+ .sapGanttStatusBarText {
127
+ padding-left: 0.5rem;
128
+ }
129
+
130
+ path.sapGanttSelectedPath {
131
+ pointer-events: none;
132
+ }
133
+
134
+ .resizeTrigger.lineTrigger, .resizeTrigger.rectTrigger {
135
+ stroke-width: 3;
136
+ transition: opacity 0.5s;
137
+ opacity: 0;
138
+ }
139
+
140
+ .resizeTrigger.lineTrigger:hover, .resizeTrigger.lineTrigger:hover {
141
+ transition: opacity 0.3s;
142
+ opacity: 0.3;
143
+ }
144
+
145
+ .sapGanttChartShapeConnect .shapeConnectContainer .shapeConnectIndicator {
146
+ stroke-width: 0;
147
+ fill: @sapUiChartPaletteSemanticNeutralLight2;
148
+ }
149
+
150
+ .sapGanttChartShapeConnect .shapeConnectContainer .hoverOnShapeConnectIndicator {
151
+ stroke: black;
152
+ stroke-width: 1;
153
+ width: 10px;
154
+ height: 10px;
155
+ fill: @sapUiChartPaletteSemanticGoodLight1;
156
+ }
157
+
158
+ .resizeContainer .indicator {
159
+ opacity: 0;
160
+ }
161
+
162
+ .resizeContainer .shapeConnectTrigger {
163
+ cursor: pointer;
164
+ fill: white;
165
+ opacity: 1;
166
+ }
167
+
168
+ .resizeContainer .shapeConnectTrigger:hover {
169
+ fill: @sapUiChartPaletteSemanticGoodLight1;
170
+ }
171
+
172
+ .sapGanttChartShapeConnect .shapeConnectGhost {
173
+ stroke: #000000;
174
+ stroke-width: 1;
175
+ fill: #FFFFFF;
176
+ pointer-events: none;
177
+ }
178
+
179
+ .sapGanttChartShapeConnect .shapeConnectGhost.hideShapeConnectGhost {
180
+ display: none;
181
+ }
182
+
183
+ .sapGanttChartShapeConnect .shapeConnectLine {
184
+ stroke-width: 1;
185
+ stroke-dasharray: 3;
186
+ stroke: #898989;
187
+ pointer-events: none;
188
+ }
189
+
190
+
191
+
192
+
193
+ tr.sapUiTableColHdrTr td[data-sap-gantt-column] {
194
+ padding: 0;
195
+ }
196
+ html[dir=rtl] tr.sapUiTableColHdrTr td[data-sap-gantt-column] {
197
+ padding-top: 0px;
198
+ padding-bottom: 0px;
199
+ padding-left: 1px;
200
+ padding-right: 1px;
201
+ }
202
+
203
+ tr.sapUiTableColHdrTr td[data-sap-gantt-column] > .sapUiTableColCell {
204
+ padding: 0;
205
+ }
206
+
207
+ .sapGanttUtilizationMiddleLine, .sapGanttStockMiddleLine{
208
+ stroke-width: 1;
209
+ stroke: #CAC7BA;
210
+ fill: none;
211
+ fill-opacity: 1;
212
+ stroke-dasharray: 5,5;
213
+ shape-rendering: crispEdges;
214
+ }
215
+
216
+ .sapGanttTextNoPointerEvents {
217
+ pointer-events: none;
218
+ }
219
+
220
+ /* =================================== */
221
+ /* CSS for control sap.gantt/GanttChart */
222
+ /* Base theme */
223
+ /* =================================== */
224
+
225
+ /*******************************************************************************
226
+ * GANTT PARAMETERS
227
+ ******************************************************************************/
228
+ @_sap_gantt_Gantt_HeaderHeight: 101px;
229
+ @_sap_gantt_Gantt_CompactHeaderHeight: @_sap_gantt_Gantt_HeaderHeight - 30px;
230
+
231
+ @_sap_gantt_Gantt_CursorLineStroke: @sapUiAccent6;
232
+ @_sap_gantt_Gantt_NowLineStroke: @sapUiCalendarColorToday;
233
+
234
+ @_sap_gantt_Gantt_VerticalLineStroke: @sapUiListVerticalBorderColor;
235
+
236
+ @_sap_gantt_Gantt_ExpandChartBG: #F6F6F6;
237
+ @_sap_gantt_Gantt_ExpandChartLine: #ddd;
238
+ @_sap_gantt_Gantt_ExpandChartText: #848f94;
239
+
240
+ @_sap_gantt_Gantt_TimelineZoomColor: #40b0f0;
241
+
242
+ .sapGanttTimeHeaderSvgText0 {
243
+ font-size: @sapMFontHeader6Size;
244
+ font-family: @sapUiFontFamily;
245
+ font-weight: @sapUiFontHeaderWeight;
246
+ fill: @sapUiListTableGroupHeaderTextColor;
247
+ }
248
+
249
+ .sapGanttTimeHeaderSvgText1 {
250
+ font-size: @sapMFontMediumSize;
251
+ font-family: @sapUiFontFamily;
252
+ font-weight: normal;
253
+ fill: @sapUiListHeaderTextColor;
254
+ }
255
+
256
+ .sapGanttTimeHeaderSvgText {
257
+ font-size: @sapMFontSmallSize;
258
+ font-family: @sapUiFontFamily;
259
+ font-weight: @sapUiFontHeaderWeight;
260
+ color: @sapUiContentLabelColor;
261
+ fill: @sapUiContentMarkerTextColor;
262
+ }
263
+
264
+ .sapGanttTimeHeaderSvgTextMedium {
265
+ font-family: @sapUiFontFamily;
266
+ font-size: @sapMFontMediumSize;
267
+ color: @sapUiBaseText;
268
+ font-size: @sapMFontSmallSize;
269
+ font-weight: @sapUiFontHeaderWeight;
270
+ fill: @sapUiListHeaderTextColor;
271
+ }
272
+
273
+ .sapGanttChart {
274
+ position: relative;
275
+ display: flex;
276
+ flex-direction: column;
277
+ width: 100%;
278
+ overflow: hidden;
279
+ }
280
+
281
+ .sapGanttCntScroll {
282
+ position: relative;
283
+ margin: 0;
284
+ overflow: hidden
285
+ }
286
+
287
+ .sapGanttChartContentBody {
288
+ // position: absolute;
289
+ display: block;
290
+ // flex-direction: column;
291
+ width: 100%;
292
+ height: 100%;
293
+ overflow: hidden;
294
+ // left: 0;
295
+ // top: 0;
296
+ }
297
+
298
+ .sapGanttFixedCntScroll {
299
+ position: relative;
300
+ overflow: hidden;
301
+ float: left;
302
+ }
303
+
304
+ .sapGanttChartScrFixed {
305
+ position: absolute;
306
+ display: block;
307
+ pointer-events: none;
308
+ flex-direction: column;
309
+ width: 100%;
310
+ height: 100%;
311
+ overflow: hidden;
312
+ left: 0;
313
+ top: 0;
314
+ margin-left: calc(2rem~" + " 6px);
315
+ }
316
+
317
+
318
+ .sapGanttTimeHeaderSvgPath {
319
+ stroke: @sapUiLightBG;
320
+ stroke-width: 1px;
321
+ stroke-dasharray: none;
322
+ }
323
+
324
+ .sapGanttTimeHeaderVerticalPath {
325
+ background-color: @sapUiLightBG;
326
+ width: 1px;
327
+ }
328
+
329
+ .sapGanttTimeHeaderHorizontalPath {
330
+ background-color: @sapUiLightBG;
331
+ height: 1px;
332
+ }
333
+
334
+ .sapGanttTimeHeaderLargeIntervalSvgPath {
335
+ stroke: @sapUiListTableGroupHeaderTextColor;
336
+ stroke-width: 1px;
337
+ opacity: 0.8;
338
+ }
339
+
340
+ .sapGanttShapeSvgText {
341
+ fill: @sapUiDeepText;
342
+ }
343
+
344
+ .sapGanttChartHeader {
345
+ min-height: @_sap_gantt_Gantt_HeaderHeight;
346
+ height: @_sap_gantt_Gantt_HeaderHeight;
347
+ width: 100%;
348
+ background-color: @sapUiListHeaderBackground;
349
+ overflow: hidden;
350
+ }
351
+ .sapGanttChartHeaderSvg {}
352
+
353
+ .sapGanttChartWithTableHeader {
354
+ width: 100%;
355
+ background-color: @sapUiListHeaderBackground;
356
+ overflow: hidden;
357
+ box-sizing: border-box;
358
+ border-bottom: 1px solid @sapUiListBorderColor;
359
+ }
360
+
361
+ .sapGanttChartWithTableHeaderMarkerArea {
362
+ width: 100%;
363
+ background-color: @sapUiListHeaderBackground;
364
+ overflow: hidden;
365
+ box-sizing: border-box;
366
+ border-top: 1px solid @sapUiListBorderColor;
367
+ }
368
+
369
+ .sapGanttChartSvgCtn {
370
+ position: absolute;
371
+ overflow: hidden;
372
+ top: 0;
373
+ left: 0;
374
+ z-index: 2;
375
+ width: 100%;
376
+ }
377
+
378
+ .sapGanttChartTT {
379
+ position: relative;
380
+ width: 100%;
381
+ }
382
+
383
+ .sapGanttChartSPMSvgCtn {
384
+ position:absolute;
385
+ top:0;
386
+ left:0;
387
+ overflow: hidden;
388
+ height: 100%;
389
+ width: 100%;
390
+ pointer-events: none;
391
+ }
392
+
393
+ a.sapGanttExpandClose {
394
+ cursor: pointer;
395
+ }
396
+
397
+ .sapGanttExpandChartCloseButton {
398
+ cursor:pointer;
399
+ pointer-events: auto;
400
+ stroke: black;
401
+ stroke-width: 0.5;
402
+ fill: white;
403
+ }
404
+
405
+ .sapGanttExpandChartCntBG {
406
+ pointer-events: none;
407
+ fill: @_sap_gantt_Gantt_ExpandChartBG;
408
+ opacity: 1;
409
+ }
410
+
411
+ .sapGanttExpandedRowBackground {
412
+ pointer-events: none;
413
+ fill: transparent;
414
+ opacity: 1;
415
+ }
416
+
417
+ .sapGanttExpandChartHeaderBG {
418
+ pointer-events: auto;
419
+ fill: @_sap_gantt_Gantt_ExpandChartBG;
420
+ opacity: 1;
421
+ }
422
+
423
+ .sapGanttExpandChartLine {
424
+ pointer-events: auto;
425
+ fill: @_sap_gantt_Gantt_ExpandChartLine;
426
+ stroke-width: 1;
427
+ stroke: @_sap_gantt_Gantt_ExpandChartLine;
428
+ shape-rendering: crispEdges
429
+ }
430
+ .sapGanttExpandChartContent text{
431
+ pointer-events: auto;
432
+ fill: @_sap_gantt_Gantt_ExpandChartText;
433
+ }
434
+
435
+ .sapGanttExpandChartCloseButton{
436
+ stroke: @_sap_gantt_Gantt_ExpandChartText;
437
+ }
438
+
439
+ .sapGanttSPMaskSvg{
440
+ width:100%;
441
+ height:100%;
442
+ top:0;
443
+ left:0;
444
+ }
445
+
446
+ .sapGanttExpandedRow > td {
447
+ vertical-align: top !important;
448
+ // padding-top: 15px !important;
449
+ }
450
+ .sapGanttExpandedRow > td div.sapUiTableCell > span,
451
+ .sapGanttExpandedRow > td div.sapUiTableCellInner{
452
+ padding-top: 5px;
453
+ }
454
+
455
+ .sapGanttChartLayoutBG{
456
+ background-color: transparent;
457
+ }
458
+
459
+ .sapUiSettingBox{
460
+ padding-right: 10px;
461
+ }
462
+
463
+ .sapUiSettingBoxItem {
464
+ max-width: 100%;
465
+ }
466
+
467
+ // Since UI5 1.37, tree table changes the z-index value of vertical scrollbar from 2 to 0, the vertical scrollbar is fully overlayed by gantt svg chart
468
+ // So change the z-index of vertical scroll bar to 2
469
+ .sapGanttChartTT .sapUiTableVSb,
470
+ .sapGanttChartWithTable .sapUiTableVSb {
471
+ z-index: 2;
472
+ }
473
+
474
+ .sapGanttChartTT .sapUiTable,
475
+ .sapGanttChartWithTable .sapUiTable {
476
+ z-index: auto;
477
+ }
478
+ //Since the z-index of all content elements inside the splitter container are the same, the expanded chart content is rendered above the splitter bar according to the DOM order
479
+ //The splitter bar would be overlapped by the expanded chart content when the selection panel is really narrow, less than the min-width of the tree table
480
+ //So, set the z-index of the elements inside the splitter container to distinguish the rendering order
481
+ .sapGanttViewSplitterH >.sapUiLoSplitterContent {
482
+ position: relative;
483
+ overflow: hidden;
484
+ z-index: 0;
485
+ }
486
+
487
+ .sapGanttViewSplitterH >.sapUiLoSplitterBar {
488
+ position: relative;
489
+ z-index: 2;
490
+ }
491
+
492
+ .sapGanttChartTT .sapUiTable > div.sapUiTableCnt {
493
+ margin-right: -1px;
494
+ }
495
+
496
+ .sapGanttInvisiblePaintServer {
497
+ float: left;
498
+ height: 0;
499
+ width: 0;
500
+ }
501
+ .sapGanttViewContainer {
502
+ clear: left;
503
+ float: left;
504
+ }
505
+
506
+ .sapGanttChartLegend {
507
+ line-height: normal;
508
+ }
509
+
510
+ .sapGanttLLSvg, .sapGanttDLSvg,
511
+ .sapGanttLLItem .sapMCb {
512
+ height: 100%;
513
+ }
514
+
515
+ .sapGanttLL {
516
+ width: 100%;
517
+ }
518
+
519
+ .sapGanttLLItem, .sapGanttDLItem {
520
+ display: flex;
521
+ }
522
+
523
+ .sapGanttLLItem .sapMCbBg {
524
+ margin: auto;
525
+ top: 0;
526
+ left: 0;
527
+ bottom: 0;
528
+ right: 0;
529
+ }
530
+
531
+ .sapGanttLLItemSectionTitle {
532
+ font-family: @sapFontBoldFamily;
533
+ font-size: @sapFontHeader6Size;
534
+ color: @sapTextColor;
535
+ }
536
+
537
+ .sapGanttLLItemTxt {
538
+ overflow: hidden;
539
+ height: 100%;
540
+ text-overflow: ellipsis;
541
+ white-space: nowrap;
542
+ vertical-align: middle;
543
+ flex: 1;
544
+ padding-left: 0.5rem;
545
+ padding-right: 0.5rem;
546
+ color: @sapUiContentLabelColor;
547
+ }
548
+
549
+ .sapGanttLLSvgDefs {
550
+ height: 0;
551
+ width: 0;
552
+ float: left;
553
+ }
554
+
555
+ .sapGanttDLItemTxt {
556
+ overflow: hidden;
557
+ text-overflow: ellipsis;
558
+ white-space: nowrap;
559
+ vertical-align: middle;
560
+ flex: 1;
561
+ padding: 0 0.5rem;
562
+ color: @sapUiContentLabelColor;
563
+
564
+ text {
565
+ fill: @sapUiContentLabelColor;
566
+ }
567
+ }
568
+
569
+ .sapGanttDimensionLegendPath {
570
+ stroke: #b7b6b6;
571
+ stroke-width: 1;
572
+ }
573
+
574
+ .noShowCheckBox {
575
+ visibility: hidden;
576
+ }
577
+
578
+ .sapGanttLLSvg.NoCheckBox {
579
+ padding-left: 0.5rem;
580
+ }
581
+
582
+ .sapGanttCursorLineHeader {
583
+ height: 30px;
584
+ fill: @sapUiListBackground;
585
+ font-size: @sapUiFontSmallSize;
586
+ stroke: @_sap_gantt_Gantt_CursorLineStroke;
587
+ stroke-width: 1;
588
+ pointer-events: none;
589
+ }
590
+
591
+ text.sapGanttCursorLineLabel {
592
+ fill: @sapUiLink;
593
+ font-size: @sapUiFontSmallSize;
594
+ text-anchor: middle;
595
+ alignment-baseline: baseline;
596
+ dominant-baseline: central;
597
+ }
598
+
599
+ .sapGanttCursorLineBody {
600
+ shape-rendering: crispEdges;
601
+ stroke: @_sap_gantt_Gantt_CursorLineStroke;
602
+ stroke-width: 1;
603
+ stroke-dasharray: none;
604
+ pointer-events: none;
605
+ }
606
+
607
+ .sapGanttChartVerticalLine {
608
+ stroke: @_sap_gantt_Gantt_VerticalLineStroke;
609
+ stroke-width: 1;
610
+ stroke-dasharray: none;
611
+ }
612
+
613
+ .sapGanttNowLine {
614
+ stroke: @_sap_gantt_Gantt_NowLineStroke;
615
+ stroke-width: 1;
616
+ shape-rendering: crispEdges
617
+ }
618
+
619
+ .sapGanttNowLineHeaderSvgPath {
620
+ .sapGanttNowLine();
621
+ fill: @_sap_gantt_Gantt_NowLineStroke;
622
+ }
623
+ .sapGanttNowLineBodySvgLine {
624
+ .sapGanttNowLine();
625
+ stroke-dasharray: 10, 5;
626
+ }
627
+
628
+ .sapGanttSkipToolbar {
629
+ height: 0;
630
+ }
631
+ .sapGanttToolbar .sapMSlider {
632
+ width: 200px !important;
633
+ }
634
+ .sapGanttChartWithTable .sapUiTable>.sapUiTableExt {
635
+ background-color: @sapUiWhiteBG;
636
+ border-bottom: 2px solid @sapUiWhiteBG;
637
+ }
638
+
639
+ .sapGanttDraggingCursor {
640
+ cursor: move;
641
+ }
642
+
643
+ .sapGanttDraggingOverflow {
644
+ overflow: hidden;
645
+ }
646
+
647
+ .sapGanttDraggingShadow {
648
+ position : absolute;
649
+ z-index : 999;
650
+ pointer-events: none;
651
+ }
652
+
653
+ #sapGanttDragGhostWrapper{
654
+ position: absolute;
655
+ display: block;
656
+ pointer-events: none;
657
+ z-index: 999;
658
+ }
659
+
660
+ .sapGanttDragGhost {
661
+ position: relative;
662
+ }
663
+
664
+ .sapGanttDragGhostImg {
665
+ opacity: 0.5;
666
+ }
667
+
668
+ .sapGanttDragTextOverlay {
669
+ position: absolute;
670
+ top: 0;
671
+ width: auto;
672
+ height: 100%;
673
+ background-color:transparent;
674
+ color: @sapUiListHeaderTextColor;
675
+ font-size: 12px;
676
+ vertical-align: middle;
677
+ white-space: nowrap;
678
+ padding-left: 12px;
679
+ line-height: var(--sapShapeDragTextOverlay-lineHeight, 0);
680
+ left: var(--sapShapeDragTextOverlay-left-val, 0);
681
+ right: var(--sapShapeDragTextOverlay-right-val, 0);
682
+ }
683
+
684
+ .sapGanttDragGhostLabel {
685
+ position: absolute;
686
+ width: max-content;
687
+ height: 100%;
688
+ background-color:transparent;
689
+ font-size: 13px;
690
+ font-family: Arial;
691
+ color: #000000;
692
+ top: 0px;
693
+ left: 0px;
694
+ right: 0px;
695
+ }
696
+
697
+ .sapFullScreenGanttDialog {
698
+ top: 0px !important;
699
+ left: 0px !important;
700
+ max-width: 100% !important;
701
+ max-height: 100% !important;
702
+ border-radius: 0rem !important;
703
+ }
704
+
705
+ .sapToolbarContentHidden {
706
+ display: none !important;
707
+ }
708
+
709
+ #sapGanttPopoverAnchor {
710
+ position: absolute;
711
+ display: block;
712
+ pointer-events: none;
713
+ z-index: 999;
714
+ }
715
+
716
+ #sapGanttPopoverWrapper {
717
+ position: absolute;
718
+ background-color: @sapUiShellContainerBackground;
719
+ overflow: hidden;
720
+ min-width: 6.25rem;
721
+ box-sizing: border-box;
722
+ outline: none;
723
+ overflow: hidden;
724
+ background: @sapUiShellContainerBackground;
725
+ border: none;
726
+ box-shadow: @sapUiShadowLevel2, @sapUiShadowLevel2;
727
+ border-radius: 0.25rem;
728
+ min-height: 2rem;
729
+ white-space: nowrap;
730
+ }
731
+
732
+ .sapGanttPopoverObjectCount {
733
+ margin-bottom: -1px;
734
+ }
735
+
736
+ .sapGanttPopoverCountText {
737
+ text-align: center;
738
+ }
739
+
740
+ .sapGanttDragElementHidden {
741
+ visibility: hidden;
742
+ }
743
+
744
+ .sapGanttDragTextOverlayGhostAlignEnd {
745
+ right: 12px;
746
+ text-align: right;
747
+ }
748
+
749
+ html[dir=rtl] .sapGanttDragTextOverlayGhostAlignEnd {
750
+ right: 12px;
751
+ text-align: left;
752
+ }
753
+
754
+
755
+
756
+ .sapGanttChartTimePeriodZoomRectangle {
757
+ fill: @_sap_gantt_Gantt_TimelineZoomColor;
758
+ stroke: @_sap_gantt_Gantt_TimelineZoomColor;
759
+ stroke-width: 2px;
760
+ fill-opacity: 0.4;
761
+ }
762
+
763
+
764
+ .sapUiSizeCozy {
765
+ /* Gantt Chart Eapanded Row Checkbox */
766
+ .sapUiTableRowHdr.sapGanttExpandedRow::after {
767
+ margin-top: 12px !important;
768
+ }
769
+ }
770
+
771
+ .sapUiFindHeader div.sapMFlexItem:nth-child(1) {
772
+ position: absolute;
773
+ left: 0;
774
+ margin-left: 15px;
775
+ top: 25%;
776
+ }
777
+
778
+ .sapUiFindSidePanelButton {
779
+ margin-left: 5%;
780
+ }
781
+
782
+ .sapUiFindResults div.sapMFlexItem:nth-child(1) {
783
+ padding-left: 15px;
784
+ }
785
+
786
+ .sapUiEmptyListInfo {
787
+ text-align: center;
788
+ }
789
+
790
+ .sapGanttChartContainer .sapUiLocalBusyIndicator,
791
+ .sapGanttChartWithTable .sapUiLocalBusyIndicator,
792
+ .sapGanttChart .sapUiLocalBusyIndicator {
793
+ z-index: 999;
794
+ }
795
+
796
+ tspan.sapGanttTooltipLine:nth-child(2n) {
797
+ display: block;
798
+ }
799
+
800
+ .sapGanttChartWithTableShowOnlyChart {
801
+ .sapGanttChartLayoutBG {
802
+ visibility: hidden;
803
+ }
804
+ .sapUiLoSplitterNoResize.sapUiLoSplitterBar {
805
+ display: none;
806
+ }
807
+ }
808
+
809
+ .sapGanttChartWithTableShowOnlyTable {
810
+ .sapUiLoSplitterNoResize.sapUiLoSplitterBar {
811
+ display: none;
812
+ }
813
+ }
814
+
815
+ .sapGanttCellTransparent {
816
+ opacity: 0;
817
+ }
818
+
819
+ /* ------------------------------------------------ */
820
+ /* Compact size */
821
+ /* ------------------------------------------------ */
822
+
823
+
824
+ .sapUiSizeCompact {
825
+
826
+ .sapGanttChartHeader {
827
+ min-height: @_sap_gantt_Gantt_CompactHeaderHeight;
828
+ height: @_sap_gantt_Gantt_CompactHeaderHeight;
829
+ }
830
+
831
+ .sapGanttChartSvgCtn{
832
+ top: 0;
833
+ }
834
+
835
+ .sapGanttCursorLineHeader {
836
+ height: 25px;
837
+ }
838
+ text.sapGanttCursorLineLabel {
839
+ font-size: @sapUiFontSmallSize;
840
+ }
841
+
842
+ /* Gantt Chart Eapanded Row Checkbox */
843
+ .sapUiTableRowSelectionCell.sapGanttExpandedRow::after {
844
+ margin-top: 6px !important;
845
+ }
846
+ }
847
+
848
+ /* ------------------------------------------------ */
849
+ /* Shape resize */
850
+ /* ------------------------------------------------ */
851
+ .sapUiShapeResizingCursor {
852
+ cursor: ew-resize;
853
+ }
854
+
855
+ /* ------------------------------------------------ */
856
+ /* simple/ContainerToolbarPlaceholder */
857
+ /* ------------------------------------------------ */
858
+ .sapGanttSimpleContainerToolbarPlaceholderInPopover {
859
+ .sapMBtn {
860
+ width: 100%;
861
+ max-width: 100%;
862
+ }
863
+ .sapMBtnInner {
864
+ text-align: left;
865
+ }
866
+ }
867
+
868
+ /* ------------------------------------------------ */
869
+ /* Overlapping */
870
+ /* ------------------------------------------------ */
871
+ .sapGanttShapeOverlappingBorder {
872
+ fill: white;
873
+ pointer-events: none;
874
+ }
875
+
876
+
877
+ /* ------------------------------------------------ */
878
+ /* Marker Cursor pointer */
879
+ /* ------------------------------------------------ */
880
+ .sapGanntChartMarkerCursorPointer{
881
+ cursor: pointer;
882
+ outline: none;
883
+ shape-rendering: auto;
884
+ }
885
+
886
+ /* ------------------------------------------------ */
887
+ /* Marker Tooltip */
888
+ /* ------------------------------------------------ */
889
+ .sapGanntChartMarkerTooltip{
890
+ padding: 0.5rem;
891
+ }
892
+
893
+ .sapGanttHeaderOverflowToolbar {
894
+ max-width: 100%;
895
+ }