@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,101 @@
1
+ .sapGanttPrintingDialog.sapUiPopupWithPadding .sapMDialogScrollCont {
2
+ padding: 0;
3
+ }
4
+
5
+ .sapGanttPrintingDialog.sapUiPopupWithPadding .sapMDialogScrollCont.sapMDialogStretchContent {
6
+ height: 100%;
7
+ }
8
+
9
+ .sapGanttPrintingPreviewContent {
10
+ padding-left: 2rem;
11
+ }
12
+
13
+ .sapGanttPrintingDialogSettings {
14
+ padding-top: 1rem;
15
+ padding-right: 2rem;
16
+ }
17
+
18
+ .sapGanttPrintingPageRangeInput {
19
+ padding-left: 3px;
20
+ }
21
+
22
+ .sapGanttPrintingTopMargin {
23
+ margin-top: 1rem;
24
+ }
25
+
26
+ .sapGanttPrintingLeftMargin {
27
+ margin-left: 1rem;
28
+ }
29
+
30
+ .sapGanttPrintingBottomMargin {
31
+ margin-bottom: 1rem;
32
+ }
33
+
34
+ .sapGanttPrintingSmallRightMargin {
35
+ margin-right: 0.5rem;
36
+ }
37
+
38
+ .sapGanttPrintingSmallLeftMargin {
39
+ margin-left: 0.5rem;
40
+ }
41
+
42
+ .sapGanttPrintingSinglePageMessage {
43
+ margin-top: -0.5rem;
44
+ margin-bottom: 1rem;
45
+ line-height: 1.25;
46
+ }
47
+
48
+ .sapGanttPrintingSwitchPadding {
49
+ padding-left: 0.5rem;
50
+ }
51
+
52
+ .sapGanttPrintingPreviewContentDiv {
53
+ flex: 1 1 auto;
54
+ display: flex;
55
+ align-items: center;
56
+ justify-content: center;
57
+ }
58
+
59
+ .sapGanttPrintingPreviewPageDiv {
60
+ display: flex;
61
+ align-items: center;
62
+ justify-content: center;
63
+ }
64
+
65
+ .sapGanttPrintingPreviewPageDivBorder {
66
+ border: 1px solid @sapUiContentLabelColor;
67
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
68
+ -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
69
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
70
+ box-sizing: border-box;
71
+ }
72
+
73
+ .sapGanttPrintingPreviewFooter {
74
+ padding-top: 1.5rem;
75
+ padding-bottom: 2.5rem;
76
+ }
77
+
78
+ .sapGanttPrintingProgressBox {
79
+ padding-top: 1.5rem;
80
+ padding-bottom: 1.5rem;
81
+ padding-left: 1.5rem;
82
+ padding-right: 1.5rem;
83
+ }
84
+
85
+ .sapGanttPrintingProgressText {
86
+ padding-bottom: 1rem;
87
+ }
88
+
89
+ .sapGanttPrintingPreviewIconMarginRight {
90
+ margin-right: 1rem;
91
+ }
92
+
93
+ .sapGanttPrintingPreviewText {
94
+ font-family: @sapUiFontFamily;
95
+ font-size: @sapMFontMediumSize;
96
+ color: @sapUiBaseText;
97
+ }
98
+
99
+ .sapGanttPrintingLockButton {
100
+ margin-top: 10px;
101
+ }
@@ -0,0 +1,96 @@
1
+ .sapGanttBackground {
2
+ // height: 0; // Enables auto table height
3
+ height: 100%;
4
+ overflow-y: hidden;
5
+ }
6
+
7
+ .sapGanttBackground .sapGanttBackgroundFlexContainer {
8
+ display: flex;
9
+ }
10
+
11
+ .sapGanttBackground .sapGanttBackgroundSVG {
12
+ display: block;
13
+ width: 100%;
14
+ height: 100%;
15
+ }
16
+
17
+ .sapGanttBackground .sapGanttBackgroundContainer {
18
+ width: 100%;
19
+ overflow: hidden;
20
+ border-right: 1px solid @sapUiListBorderColor;
21
+
22
+ .sapGanttBackgroundTable {
23
+ border-top: 1px solid @sapUiListBorderColor;
24
+ background-color: @sapUiListBackground;
25
+ position: relative;
26
+
27
+
28
+ .sapGanttBackgroundTableHeader {
29
+ box-sizing: border-box;
30
+ border-bottom: 1px solid @sapUiListBorderColor;
31
+ background-color: @sapUiListHeaderBackground;
32
+ }
33
+
34
+ .sapGanttBackgroundTableContent {
35
+ box-sizing: border-box;
36
+ border-bottom: 1px solid @sapUiListBorderColor;
37
+ overflow: hidden;
38
+
39
+ .sapGanttBackgroundSVGRow {
40
+ fill: transparent;
41
+ }
42
+
43
+ .sapGanttBackgroundSVGRowSelected {
44
+ fill: @sapUiListSelectionBackgroundColor;
45
+ }
46
+
47
+ .sapGanttBackgroundSVGRowHovered {
48
+ fill: @sapUiListHoverBackground;
49
+ }
50
+
51
+ .sapGanttBackgroundSVGRowSelected.sapGanttBackgroundSVGRowHovered {
52
+ fill: @sapUiListSelectionHoverBackground;
53
+ }
54
+
55
+ .sapGanttBackgroundSVGRowBorder {
56
+ stroke: @sapUiListBorderColor;
57
+ stroke-width: 1px;
58
+ shape-rendering: crispEdges
59
+ }
60
+ .sapGanttBackgroundSVGRowHovered.sapGanttBackgroundSVGRowHighlighted{
61
+ fill: var(--sapGanttBackgroundSVGRowHighlighted-sapGanttBackgroundSVGRowHovered-fill, @sapContent_DragAndDropActiveColor);
62
+ }
63
+
64
+ .sapGanttBackgroundSVGRowHighlighted {
65
+ fill: var(--sapGanttBackgroundSVGRowHighlighted-fill, @sapContent_SearchHighlightColor);
66
+ }
67
+ }
68
+ }
69
+
70
+ .sapUiTableHSb, .sapUiTableHSbBg {
71
+ display: block;
72
+ }
73
+
74
+ .sapUiTableHSb:focus {
75
+ outline: none;
76
+ }
77
+
78
+ .sapGanttHSbHidden {
79
+ visibility: hidden;
80
+ }
81
+ }
82
+
83
+ .sapGanttBackground .sapGanttBackgroundVScrollContainer {
84
+ border-top: 1px solid @sapUiListBorderColor;
85
+ border-right: 1px solid @sapUiListBorderColor;
86
+ background-color: @sapUiListHeaderBackground;
87
+
88
+ .sapGanttBackgroundVScrollHeaderArea {
89
+ box-sizing: border-box;
90
+ border-bottom: 1px solid @sapUiListBorderColor;
91
+ }
92
+
93
+ .sapGanttBackgroundScrollbar {
94
+ overflow: auto;
95
+ }
96
+ }
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * SAP UI development toolkit for HTML5 (SAPUI5)
3
+
4
+ (c) Copyright 2009-2015 SAP SE. All rights reserved
5
+
6
+ */
7
+
8
+ @import "../../../../sap/ui/core/themes/base/base.less";
9
+ @import "../../../../sap/ui/core/themes/base/global.less";
10
+
11
+ @import "Gantt.less";
12
+ @import "GanttSyncedControl.less";
13
+ @import "GanttPrinting.less";
@@ -5,7 +5,16 @@
5
5
 
6
6
  */
7
7
 
8
- @import "../base/library.source.less";
8
+ /***********************************************************************************
9
+ /* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the
10
+ /* inheritance of the base theme is now updated to an inheritance of a static
11
+ /* copy of the base theme named sap_belize_base. The respective
12
+ /* control css files of base are copied to the sap_belize_base theme folder.
13
+ /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
14
+ ***********************************************************************************/
15
+
16
+
17
+ @import "../sap_belize_base/library.source.less";
9
18
  @import "../../../../sap/ui/core/themes/sap_belize_hcb/base.less";
10
19
  @import "../../../../sap/ui/core/themes/sap_belize_hcb/global.less";
11
20
 
@@ -5,7 +5,16 @@
5
5
 
6
6
  */
7
7
 
8
- @import "../base/library.source.less";
8
+ /***********************************************************************************
9
+ /* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the
10
+ /* inheritance of the base theme is now updated to an inheritance of a static
11
+ /* copy of the base theme named sap_belize_base. The respective
12
+ /* control css files of base are copied to the sap_belize_base theme folder.
13
+ /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
14
+ ***********************************************************************************/
15
+
16
+
17
+ @import "../sap_belize_base/library.source.less";
9
18
  @import "../../../../sap/ui/core/themes/sap_belize_hcw/base.less";
10
19
  @import "../../../../sap/ui/core/themes/sap_belize_hcw/global.less";
11
20
 
@@ -4,7 +4,16 @@
4
4
  (c) Copyright 2009-2015 SAP SE. All rights reserved
5
5
 
6
6
  */
7
- @import "../base/library.source.less";
7
+ /***********************************************************************************
8
+ /* Due to deprecation of sap_bluecrystal with SAPUI5 version 1.44 the
9
+ /* inheritance of the base theme is now updated to an inheritance of a static
10
+ /* copy of the base theme named sap_bluecrystal_base. The respective
11
+ /* control css files of base are copied to the sap_bluecrystal_base theme folder.
12
+ /* This decoupling of the base theme is introduced with SAPUI5 version 1.124.
13
+ ***********************************************************************************/
14
+
15
+
16
+ @import "../sap_bluecrystal_base/library.source.less";
8
17
  @import "../../../../sap/ui/core/themes/sap_bluecrystal/base.less";
9
18
  @import "../../../../sap/ui/core/themes/sap_bluecrystal/global.less";
10
19