@sapui5/sap.me 1.91.0 → 1.93.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.me",
3
- "version": "1.91.0",
3
+ "version": "1.93.2",
4
4
  "description": "SAPUI5 Library sap.me",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -7,7 +7,7 @@
7
7
 
8
8
  (c) Copyright 2009-2021 SAP SE. All rights reserved
9
9
  </copyright>
10
- <version>1.91.0</version>
10
+ <version>1.93.2</version>
11
11
 
12
12
  <documentation>SAPUI5 library with controls specialized for mobile devices (extension).</documentation>
13
13
 
@@ -640,13 +640,13 @@ sap.ui.define([
640
640
  if (typeof oDateStart == "string") {
641
641
  // this will change the type of oDateStart from String to Date.
642
642
  oUniversalDateStart = CalendarDate.parseFromToDateString(oDateStart);
643
- }else if ( oDateStart instanceof Date){
643
+ } else if ( oDateStart instanceof Date){
644
644
  oUniversalDateStart = new UniversalDate( oDateStart.getTime() );
645
645
  }
646
646
  if (typeof oDateEnd == "string") {
647
647
  // this will change the type of oDateEnd from String to Date.
648
648
  oUniversalDateEnd = CalendarDate.parseFromToDateString(oDateEnd);
649
- }else if ( oDateEnd instanceof Date){
649
+ } else if ( oDateEnd instanceof Date){
650
650
  oUniversalDateEnd = new UniversalDate( oDateEnd.getTime() );
651
651
  }
652
652
 
@@ -660,6 +660,7 @@ sap.ui.define([
660
660
  var aDates = [];
661
661
  var oDateStartCopy = new UniversalDate(oUniversalDateStart.getTime());
662
662
  var oDate;
663
+ // eslint-disable-next-line no-unmodified-loop-condition
663
664
  while (oUniversalDateEnd - oDateStartCopy >= 0) {
664
665
  oDate = new Date(oDateStartCopy.getTime());
665
666
  aDates.push(oDate.toDateString());
@@ -676,7 +677,7 @@ sap.ui.define([
676
677
  if (typeof oDate == "string") {
677
678
  // Type change String to Date
678
679
  oDate = CalendarDate.parseFromToDateString(oDate);
679
- }else if ( oDate instanceof Date){
680
+ } else if ( oDate instanceof Date){
680
681
  oDate = new UniversalDate( oDate.getTime() );
681
682
  }
682
683
  oDate = new Date(oDate.getTime());
@@ -791,7 +792,7 @@ sap.ui.define([
791
792
 
792
793
  /**
793
794
  * Sets the current date of the calendar.
794
- * @param {String} strDate The Date to set, the format being identical to a date string produced by "toDateString".
795
+ * @param {string} strDate The Date to set, the format being identical to a date string produced by "toDateString".
795
796
  *
796
797
  * @return {this} <code>this</code> to allow method chaining.
797
798
  * @public
@@ -803,7 +804,7 @@ sap.ui.define([
803
804
 
804
805
  /**
805
806
  * Sets the current date of the calendar.
806
- * @param {String} strDate The Date to set, the format being identical to a date string produced by "toDateString".
807
+ * @param {string} strDate The Date to set, the format being identical to a date string produced by "toDateString".
807
808
  * @param {boolean} bSuppressInvalidate Set to true to prevent invalidation of the control
808
809
  * @private
809
810
  */
@@ -818,7 +819,7 @@ sap.ui.define([
818
819
  * <B>IMPORTANT:</B> The only valid values for the created Date are: year, month, day.
819
820
  * Disregard any other value: hours, minutes, seconds, milliseconds...
820
821
  *
821
- * @param {String} strDate The date, produced by a former call to Date.toDateString.
822
+ * @param {string} strDate The date, produced by a former call to Date.toDateString.
822
823
  * @throws {Error} If the string provided does not match a toDateString produced string.
823
824
  * @public
824
825
  * @static
@@ -88,7 +88,7 @@ sap.ui.define(['sap/ui/base/Object', 'sap/ui/core/date/UniversalDate', "sap/base
88
88
  /**
89
89
  * Returns the 0 based month index of the month contained in the given string.
90
90
  * @private
91
- * @param {String} strMonth The 3 first letters of the month, in American English.
91
+ * @param {string} strMonth The 3 first letters of the month, in American English.
92
92
  * This string should not contain unicode characters. It must also match the months 'created' by a call to Date.toDateString.
93
93
  * @return {number} A value between 0 and 11, matching the given month or -1 in case of error.
94
94
  */
@@ -103,7 +103,7 @@ sap.ui.define(['sap/ui/base/Object', 'sap/ui/core/date/UniversalDate', "sap/base
103
103
  * If the function detects that something is not right, then it will just call the Date constructor
104
104
  * and provide the string to it, as is. In that case, there will also be a warning log in the console.
105
105
  *
106
- * @param {String} fromToDateString The String to parse to create a Date.
106
+ * @param {string} fromToDateString The String to parse to create a Date.
107
107
  * @param {boolean} bThrowOnParseError (Optional) Throws an error if the parsing. Default value is false.
108
108
  * @return {UniversalDate} The Date created from the string.
109
109
  * @throws {Error} If the string provided does not match a toDateString produced string.
@@ -50,7 +50,7 @@ sap.ui.define(['./CalendarDate', 'sap/ui/core/LocaleData', 'sap/ui/core/format/D
50
50
  var i;
51
51
  if (iMonths === 1) {
52
52
  this._renderMonth(oRm, oControl, oControl._oInternalDate.getDateObject(), sNow);
53
- }else {
53
+ } else {
54
54
  var currentDate = oControl._oInternalDate.getCopyDateObject();
55
55
  var iMonthToGoBack = Math.floor(iMonths / 2);
56
56
  for (i = 0; i < iMonthToGoBack; i++) { // we go first back in time
@@ -23,7 +23,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
23
23
  // delegate further initialization of this library to the Core
24
24
  sap.ui.getCore().initLibrary({
25
25
  name : "sap.me",
26
- version: "1.91.0",
26
+ version: "1.93.2",
27
27
  dependencies : ["sap.ui.core"],
28
28
  types: [
29
29
  "sap.me.CalendarDesign",
@@ -0,0 +1,291 @@
1
+ /* ================================ */
2
+ /* CSS for control sap.me/Calendar */
3
+ /* Horizon theme */
4
+ /* ================================ */
5
+
6
+ .sapMeCalendar {
7
+ background-color: @sapUiBaseBG;
8
+ }
9
+
10
+ .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthName {
11
+ height: 3rem;
12
+ line-height: 3rem;
13
+ padding: 0;
14
+ font-family: @sapUiFontFamily;
15
+ font-size: 1rem;
16
+ color: @sapUiLink;
17
+ }
18
+
19
+ .sapMeCalendar > .sapMBtn > .sapMBtnContent {
20
+ font-size: 0;
21
+ }
22
+
23
+ .sapMeCalendar > .sapMeCalendarMonthNotSingle > div.sapMeCalendarMonthDayNames,
24
+ .sapMeCalendar > .sapMeCalendarMonthNotSingle > div.sapMeCalendarMonthDays {
25
+ margin-left: 0.5rem;
26
+ margin-right: 0.5rem;
27
+ }
28
+
29
+ .sapMeCalendar > .sapMeCalendarPrevious {
30
+ font-size: 1.375rem;
31
+ color: @sapUiContentIconColor;
32
+ width: 3rem;
33
+ height: 3rem;
34
+ line-height: 3rem;
35
+ }
36
+
37
+ .sapMeCalendar > .sapMeCalendarNext {
38
+ font-size: 1.375rem;
39
+ color: @sapUiContentIconColor;
40
+ width: 3rem;
41
+ height: 3rem;
42
+ line-height: 3rem;
43
+ }
44
+
45
+ .sapMeCalendar > .sapMeCalendarPrevious:active {
46
+ background: @sapUiHighlight;
47
+ color: @sapUiContentContrastTextColor;
48
+ }
49
+
50
+ .sapMeCalendar > .sapMeCalendarNext:active {
51
+ background: @sapUiHighlight;
52
+ color: @sapUiContentContrastTextColor;
53
+ }
54
+
55
+ .sapMeCalendar > .sapMeCalendarMonth > div > .sapMeCalendarMonthDay {
56
+ font-family: @sapUiFontFamily;
57
+ font-size: 0.625rem;
58
+ color: @sapUiBaseText;
59
+ text-transform: uppercase;
60
+ }
61
+
62
+ .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDayNames {
63
+ font-size: 0;
64
+ height: 15px;
65
+ }
66
+
67
+ .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDayNames {
68
+ margin-top: 1rem;
69
+ }
70
+
71
+ .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDays {
72
+ margin-bottom: 1rem;
73
+ }
74
+
75
+ .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth).sapMeCalendarDayNow:before {
76
+ content: "";
77
+ position: absolute;
78
+ top: -0.063rem;
79
+ right: 0;
80
+ bottom: 0;
81
+ left: -0.063rem;
82
+ }
83
+
84
+ .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay {
85
+ border: none;
86
+ font-family: @sapUiFontFamily;
87
+ font-size: 1.125rem;
88
+ padding: 0.688rem 0;
89
+ position: relative;
90
+ }
91
+
92
+ .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNow:before {
93
+ content: "";
94
+ position: absolute;
95
+ top: -0.063rem;
96
+ right: 0;
97
+ bottom: 0;
98
+ left: -0.063rem;
99
+ }
100
+
101
+ /*
102
+ Design specific
103
+
104
+ */
105
+ /*
106
+ Approval colors
107
+ */
108
+ /* Normal day */
109
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay {
110
+ border-bottom: 0.063rem solid @sapUiGroupContentBackground;
111
+ border-left: 0.063rem solid @sapUiGroupContentBackground;
112
+ color: @sapUiBaseText;
113
+ background: lighten(@sapUiContentForegroundColor,5);
114
+ vertical-align: top;
115
+ }
116
+
117
+
118
+
119
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay:hover {
120
+ background: darken(@sapUiContentForegroundColor,5);
121
+ }
122
+
123
+ /* Not In Month */
124
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNotInCurrentMonth {
125
+ background: none;
126
+ }
127
+ /* Today */
128
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNow:not(.sapMeCalendarDayNotInCurrentMonth) {
129
+ color: @sapUiBaseText;
130
+ }
131
+
132
+ /* Today */
133
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNow:before {
134
+ border: 0.125rem solid @sapUiAccent4;
135
+ }
136
+
137
+ /* Today not in month*/
138
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNow:before.sapMeCalendarDayNotInCurrentMonth {
139
+ border: none;
140
+ }
141
+
142
+ /* Weekend (00) */
143
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekendDay {
144
+ background: @sapUiContentForegroundColor;
145
+ }
146
+
147
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekendDay:hover {
148
+ background: darken(@sapUiContentForegroundColor,10);
149
+ }
150
+
151
+ /* Weekend (00) not in current month */
152
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNotInCurrentMonth,
153
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekendDay.sapMeCalendarDayNotInCurrentMonth {
154
+ color: @sapUiGroupContentBorderColor;
155
+ background: none;
156
+ }
157
+
158
+
159
+ /* Selected */
160
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth) {
161
+ background: @sapUiSelected;
162
+ color: @sapUiContentContrastTextColor;
163
+ }
164
+
165
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth):hover {
166
+ background: darken(@sapUiSelected,10);
167
+ }
168
+
169
+ /* 00 Selected */
170
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekDay6.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth,.sapMeCalendarType10),
171
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekDay0.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth,.sapMeCalendarType10) {
172
+ background: @sapUiSelected;
173
+ }
174
+
175
+ /* Types */
176
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType00 {
177
+ background: @sapUiListTableGroupHeaderBorderColor;
178
+ }
179
+
180
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth).sapMeCalendarType00 {
181
+ background: @sapUiGroupTitleBorderColor;
182
+ }
183
+
184
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType01 {
185
+ background-color: mix(@sapUiHighlight, #fff, 15);
186
+ }
187
+
188
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType04 {
189
+ background-color: mix(@sapUiHighlight, #fff, 15);
190
+ background-image: url(img/bg_white_transparent.png);
191
+ }
192
+
193
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType06 {
194
+ background-color: mix(@sapUiAccent1, #fff, 35);
195
+ }
196
+
197
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType07 {
198
+ background-color: mix(@sapUiAccent3, #fff, 10);
199
+ background-image: url(img/bg_white_transparent.png);
200
+ }
201
+
202
+ /* Type 10 to force to be displayed as working day */
203
+ .sapMeCalendarApproval > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType10 {
204
+ background: lighten(@sapUiContentForegroundColor,5);
205
+ }
206
+
207
+ /*
208
+ Action colors
209
+ */
210
+ /* Normal day */
211
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay {
212
+ border-bottom: 0.063rem solid @sapUiGroupContentBackground;
213
+ border-left: 0.063rem solid @sapUiGroupContentBackground;
214
+ color: @sapUiBaseText;
215
+ background: lighten(@sapUiContentForegroundColor,5);
216
+ vertical-align: top;
217
+ }
218
+
219
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay:hover {
220
+ background: darken(@sapUiContentForegroundColor,5);
221
+ }
222
+
223
+ /* Not In Month */
224
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNotInCurrentMonth {
225
+ background: none;
226
+ }
227
+
228
+ /* Today */
229
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNow:not(.sapMeCalendarDayNotInCurrentMonth) {
230
+ font-weight: bolder;
231
+ font-size: 1.25rem;
232
+ color: @sapUiHighlight;
233
+ }
234
+
235
+ /* Today not in month*/
236
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNow:before.sapMeCalendarDayNotInCurrentMonth {
237
+ border: none;
238
+ }
239
+
240
+ /* Weekend (00) */
241
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekendDay {
242
+ background: @sapUiContentForegroundColor;
243
+ }
244
+
245
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekendDay {
246
+ background: darken(@sapUiContentForegroundColor,10);
247
+ }
248
+
249
+ /* Weekend (00) not in current month */
250
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarDayNotInCurrentMonth,
251
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekendDay.sapMeCalendarDayNotInCurrentMonth {
252
+ color: @sapUiGroupContentBorderColor;
253
+ background: none;
254
+ }
255
+
256
+ /* Selected */
257
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth) {
258
+ border: .125rem solid @sapUiHighlight;
259
+ }
260
+
261
+ /* Types */
262
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType00 {
263
+ background: @sapUiListTableGroupHeaderBorderColor;
264
+ }
265
+
266
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarSelected:not(.sapMeCalendarDayNotInCurrentMonth).sapMeCalendarType00 {
267
+ background: @sapUiSelected;
268
+ }
269
+
270
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType01 {
271
+ background-color: mix(@sapUiAccent6, #fff, 20);
272
+ }
273
+
274
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType04 {
275
+ background-color: mix(@sapUiAccent6, #fff, 20);
276
+ background-image: url(img/bg_white_transparent.png);
277
+ }
278
+
279
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType06 {
280
+ background-color: mix(@sapUiAccent1, #fff, 35);
281
+ }
282
+
283
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType07 {
284
+ background-color: mix(@sapUiAccent3, #fff, 20);
285
+ background-image: url(img/bg_white_transparent.png);
286
+ }
287
+
288
+ /* Type 10 to force to be displayed as working day */
289
+ .sapMeCalendarAction > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarType10 {
290
+ background: lighten(@sapUiContentForegroundColor,5);
291
+ }
@@ -0,0 +1,98 @@
1
+ /* ====================================== */
2
+ /* CSS for control sap.me/CalendarLegend */
3
+ /* Horizon theme */
4
+ /* ====================================== */
5
+
6
+ .sapUIMeLegendOuterContainer {
7
+ background-color: @sapUiGlobalBackgroundColor;
8
+ }
9
+
10
+ /* Approval Design*/
11
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForType00 {
12
+ background-color: @sapUiListTableGroupHeaderBorderColor;
13
+ }
14
+
15
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForType01 {
16
+ background-color: mix(@sapUiAccent6, #fff, 20);
17
+ }
18
+
19
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForType04 {
20
+ background-color: mix(@sapUiHighlight, #fff, 15);
21
+ background-image: url(img/bg_white_transparent.png);
22
+ }
23
+
24
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForType06 {
25
+ background-color: mix(@sapUiAccent1, #fff, 35);
26
+ }
27
+
28
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForType07 {
29
+ background-color: mix(@sapUiAccent3, #fff, 10);
30
+ background-image: url(img/bg_white_transparent.png);
31
+ }
32
+
33
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForToday {
34
+ border: .125rem solid @sapUiAccent4;
35
+ width: 0.875rem;
36
+ height: 0.875rem;
37
+ }
38
+
39
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForSelected {
40
+ background-color: @sapUiHighlight;
41
+ }
42
+
43
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForSelected00 {
44
+ background-color: @sapUiGroupTitleBorderColor;
45
+ }
46
+
47
+ .sapMeCalendarLegendApproval .sapUIMeLegendColorForNormal {
48
+ background-color: @sapUiListTableGroupHeaderBackground;
49
+ }
50
+
51
+ /* Action Design*/
52
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForType00 {
53
+ background-color: @sapUiListTableGroupHeaderBorderColor;
54
+ }
55
+
56
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForType01 {
57
+ background-color: mix(@sapUiAccent6, #fff, 20);
58
+ }
59
+
60
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForType04 {
61
+ background-color: mix(@sapUiAccent6, #fff, 20);
62
+ background-image: url(img/bg_white_transparent.png);
63
+ }
64
+
65
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForType06 {
66
+ background-color: mix(@sapUiAccent1, #fff, 35);
67
+ }
68
+
69
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForType07 {
70
+ background-color: mix(@sapUiAccent3, #fff, 20);
71
+ background-image: url(img/bg_white_transparent.png);
72
+ }
73
+
74
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForToday {
75
+ border: .125rem solid @sapUiAccent4;
76
+ width: 0.875rem;
77
+ height: 0.875rem;
78
+ }
79
+
80
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForSelected {
81
+ background-color: @sapUiHighlight;
82
+ }
83
+
84
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForSelected00 {
85
+ background-color: @sapUiGroupTitleBorderColor;
86
+ }
87
+
88
+ .sapMeCalendarLegendAction .sapUIMeLegendColorForNormal {
89
+ background-color: @sapUiListTableGroupHeaderBackground;
90
+ }
91
+
92
+ .sapUIMeLegendIcon {
93
+ background-color: none;
94
+ }
95
+
96
+ .sapUIMeLegendArrow {
97
+ font-color: @sapUiBaseText;
98
+ }
@@ -0,0 +1,171 @@
1
+ /* ======================================= */
2
+ /* CSS for control sap.me/OverlapCalendar */
3
+ /* Horizon theme */
4
+ /* ======================================= */
5
+
6
+ .sapMeOverlapCalendar {
7
+ background: @sapUiBaseBG;
8
+ }
9
+ /*
10
+ .sapMeOverlapCalendarCalendar > .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay.sapMeCalendarWeekendDay.sapMeCalendarDayNotInCurrentMonth,
11
+ .sapMeOverlapCalendarCalendar > .sapMeCalendar > .sapMeCalendarMonth > div.sapMeCalendarMonthDays > .sapMeCalendarMonthDay {
12
+ background: @sapUiListTableGroupHeaderBackground;
13
+ color: @sapUiBaseText;
14
+ }
15
+ */
16
+ /* Overlap Calendar Grid */
17
+ .sapMeOverlapCalendarGrid {
18
+ border-bottom-color: @sapUiContentForegroundBorderColor;
19
+ }
20
+
21
+ .sapMeOverlapCalendarOverlapIndicator {
22
+ border-top-color: @sapUiContentForegroundBorderColor;
23
+ border-bottom-color: @sapUiContentForegroundBorderColor;
24
+ }
25
+
26
+ .sapMeOverlapCalendarDay {
27
+ border-bottom: 0.063rem solid @sapUiGroupContentBackground;
28
+ border-left: 0.063rem solid @sapUiGroupContentBackground;
29
+ color: @sapUiBaseText;
30
+ background: lighten(@sapUiContentForegroundColor, 5);
31
+ }
32
+
33
+ .sapMeOverlapCalendarHalfDay {
34
+ border-bottom-color: @sapUiGroupContentBackground;
35
+ border-left-color: @sapUiGroupContentBackground;
36
+ }
37
+
38
+ .sapMeOverlapCalendarTypeHalfDayEnd {
39
+ z-index: 2;
40
+ background: -webkit-gradient(linear, left top, right bottom, color-stop(53%, rgba(255, 255, 255, 0)), color-stop(50%, lighten(@sapUiContentForegroundColor,5)));
41
+ background: -webkit-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, lighten(@sapUiContentForegroundColor,5) 50%);
42
+ background: -moz-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, lighten(@sapUiContentForegroundColor,5) 50%);
43
+ background: -o-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, lighten(@sapUiContentForegroundColor,5)50%);
44
+ background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 53%, lighten(@sapUiContentForegroundColor,5) 50%);
45
+ }
46
+
47
+ .sapMeOverlapCalendarType00 {
48
+ background-color: @sapUiContentForegroundColor;
49
+ z-index: -2;
50
+ }
51
+
52
+ .sapMeOverlapCalendarType00HalfDayStart {
53
+ z-index: 2;
54
+ background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, @sapUiContentForegroundColor), color-stop(50%, rgba(255, 255, 255, 0)));
55
+ background: -webkit-linear-gradient(top left, @sapUiContentForegroundColor 50%, rgba(255, 255, 255, 0) 50%);
56
+ background: -moz-linear-gradient(top left, @sapUiContentForegroundColor 50%, rgba(255, 255, 255, 0) 50%);
57
+ background: -o-linear-gradient(top left, @sapUiContentForegroundColor 50%, rgba(255, 255, 255, 0) 50%);
58
+ background: linear-gradient(to bottom right, @sapUiContentForegroundColor 50%, rgba(255, 255, 255, 0) 50%);
59
+ }
60
+
61
+ .sapMeOverlapCalendarType00HalfDayEnd {
62
+ z-index: 2;
63
+ background: -webkit-gradient(linear, left top, right bottom, color-stop(53%, rgba(255, 255, 255, 0)), color-stop(50%, @sapUiContentForegroundColor));
64
+ background: -webkit-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, @sapUiContentForegroundColor 50%);
65
+ background: -moz-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, @sapUiContentForegroundColor 50%);
66
+ background: -o-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, @sapUiContentForegroundColor 50%);
67
+ background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 53%, @sapUiContentForegroundColor 50%);
68
+ }
69
+
70
+ .sapMeOverlapCalendarType01 {
71
+ background-color: mix(@sapUiHighlight, #fff, 15);
72
+ }
73
+
74
+ .sapMeOverlapCalendarType01HalfDayStart {
75
+ z-index: 2;
76
+ background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, mix(@sapUiHighlight, #fff, 15)), color-stop(50%, rgba(255, 255, 255, 0)));
77
+ background: -webkit-linear-gradient(top left, mix(@sapUiHighlight, #fff, 15)50%, rgba(255, 255, 255, 0) 50%);
78
+ background: -moz-linear-gradient(top left, mix(@sapUiHighlight, #fff, 15)50%, rgba(255, 255, 255, 0) 50%);
79
+ background: -o-linear-gradient(top left, mix(@sapUiHighlight, #fff, 15)50%, rgba(255, 255, 255, 0) 50%);
80
+ background: linear-gradient(to bottom right, mix(@sapUiHighlight, #fff, 15)50%, rgba(255, 255, 255, 0) 50%);
81
+ }
82
+
83
+ .sapMeOverlapCalendarType01HalfDayEnd {
84
+ z-index: 2;
85
+ background: -webkit-gradient(linear, left top, right bottom, color-stop(53%, rgba(255, 255, 255, 0)), color-stop(50%, mix(@sapUiHighlight,@sapUiWhite,15)));
86
+ background: -webkit-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
87
+ background: -moz-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
88
+ background: -o-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
89
+ background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
90
+ }
91
+
92
+ .sapMeOverlapCalendarType04 {
93
+ background-color: mix(@sapUiHighlight, #fff, 15);
94
+ background-image: url(img/bg_white_transparent.png);
95
+ }
96
+
97
+ .sapMeOverlapCalendarType04HalfDayStart {
98
+ z-index: 1;
99
+ background-image: url(img/bg_white_transparent.png);
100
+ background: url(img/bg_white_transparent.png), -webkit-gradient(linear, left top, right bottom, color-stop(50%, mix(@sapUiHighlight, #fff, 15)), color-stop(50%, rgba(255, 255, 255, 0)));
101
+ background: url(img/bg_white_transparent.png), -webkit-linear-gradient(top left, mix(@sapUiHighlight, #fff,15) 50%, rgba(255, 255, 255, 0) 50%);
102
+ background: url(img/bg_white_transparent.png), -moz-linear-gradient(top left, mix(@sapUiHighlight, #fff, 15) 50%, rgba(255, 255, 255, 0) 50%);
103
+ background: url(img/bg_white_transparent.png), -o-linear-gradient(top left, mix(@sapUiHighlight, #fff, 15) 50%, rgba(255, 255, 255, 0) 50%);
104
+ background: url(img/bg_white_transparent.png), linear-gradient(to bottom right, mix(@sapUiHighlight, #fff, 15) 50%, rgba(255, 255, 255, 0) 50%);
105
+ }
106
+
107
+ .sapMeOverlapCalendarType04HalfDayEnd {
108
+ z-index: 1;
109
+ background-image: url(img/bg_white_transparent.png);
110
+ background: url(img/bg_white_transparent.png), -webkit-gradient(linear, left top, right bottom, color-stop(53%, rgba(255, 255, 255, 0)), color-stop(50%, mix(@sapUiHighlight, #fff, 15)));
111
+ background: url(img/bg_white_transparent.png), -webkit-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
112
+ background: url(img/bg_white_transparent.png), -moz-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
113
+ background: url(img/bg_white_transparent.png), -o-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
114
+ background: url(img/bg_white_transparent.png), linear-gradient(to bottom right, rgba(255, 255, 255, 0) 53%, mix(@sapUiHighlight, #fff, 15) 50%);
115
+ }
116
+
117
+ .sapMeOverlapCalendarType06 {
118
+ background-color: mix(@sapUiAccent1, #fff, 35);
119
+ z-index: -1;
120
+ }
121
+
122
+ .sapMeOverlapCalendarType06HalfDayStart {
123
+ z-index: 2;
124
+ background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, mix(@sapUiAccent1, #fff, 35)), color-stop(50%, rgba(255, 255, 255, 0)));
125
+ background: -webkit-linear-gradient(top left, mix(@sapUiAccent1, #fff, 35) 50%, rgba(255, 255, 255, 0) 50%);
126
+ background: -moz-linear-gradient(top left, mix(@sapUiAccent1, #fff, 35) 50%, rgba(255, 255, 255, 0) 50%);
127
+ background: -o-linear-gradient(top left, mix(@sapUiAccent1, #fff, 35) 50%, rgba(255, 255, 255, 0) 50%);
128
+ background: linear-gradient(to bottom right, mix(@sapUiAccent1, #fff, 35) 50%, rgba(255, 255, 255, 0) 50%);
129
+ }
130
+
131
+ .sapMeOverlapCalendarType06HalfDayEnd {
132
+ z-index: 2;
133
+ background: -webkit-gradient(linear, left top, right bottom, color-stop(53%, rgba(255, 255, 255, 0)), color-stop(50%, mix(@sapUiAccent1, #fff, 35)));
134
+ background: -webkit-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent1, #fff, 35) 50%);
135
+ background: -moz-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent1, #fff, 35) 50%);
136
+ background: -o-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent1, #fff, 35) 50%);
137
+ background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent1, #fff, 35) 50%);
138
+ }
139
+
140
+ .sapMeOverlapCalendarType07 {
141
+ background-color: mix(@sapUiAccent3, #fff, 10);
142
+ background-image: url(img/bg_white_transparent.png);
143
+ }
144
+
145
+ .sapMeOverlapCalendarType07HalfDayStart {
146
+ z-index: 1;
147
+ background-image: url(img/bg_white_transparent.png);
148
+ background: url(img/bg_white_transparent.png), -webkit-gradient(linear, left top, right bottom, color-stop(50%, mix(@sapUiAccent3, #fff, 10)), color-stop(50%, rgba(255, 255, 255, 0)));
149
+ background: url(img/bg_white_transparent.png), -webkit-linear-gradient(top left, mix(@sapUiAccent3, #fff, 10) 50%, rgba(255, 255, 255, 0) 50%);
150
+ background: url(img/bg_white_transparent.png), -moz-linear-gradient(top left, mix(@sapUiAccent3, #fff, 10) 50%, rgba(255, 255, 255, 0) 50%);
151
+ background: url(img/bg_white_transparent.png), -o-linear-gradient(top left, mix(@sapUiAccent3, #fff, 10) 50%, rgba(255, 255, 255, 0) 50%);
152
+ background: url(img/bg_white_transparent.png), linear-gradient(to bottom right, mix(@sapUiAccent3, #fff, 10) 50%, rgba(255, 255, 255, 0) 50%);
153
+ }
154
+
155
+ .sapMeOverlapCalendarType07HalfDayEnd {
156
+ z-index: 1;
157
+ background-image: url(img/bg_white_transparent.png);
158
+ background: url(img/bg_white_transparent.png), -webkit-gradient(linear, left top, right bottom, color-stop(53%, rgba(255, 255, 255, 0)), color-stop(50%, mix(@sapUiAccent3, #fff, 10)));
159
+ background: url(img/bg_white_transparent.png), -webkit-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent3, #fff, 10) 50%);
160
+ background: url(img/bg_white_transparent.png), -moz-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent3, #fff, 10) 50%);
161
+ background: url(img/bg_white_transparent.png), -o-linear-gradient(top left, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent3, #fff, 10) 50%);
162
+ background: url(img/bg_white_transparent.png), linear-gradient(to bottom right, rgba(255, 255, 255, 0) 53%, mix(@sapUiAccent3, #fff, 10) 50%);
163
+ }
164
+
165
+ .sapMeOverlapCalendarNameLbl {
166
+ color: @sapUiBaseText;
167
+ }
168
+
169
+ .sapMeOverlapCalendarTypeLbl {
170
+ color: @sapUiGroupTitleTextColor;
171
+ }
@@ -0,0 +1,83 @@
1
+ /* ========================================= */
2
+ /* CSS for control sap.me/ProgressIndicator */
3
+ /* Horizon theme */
4
+ /* ========================================= */
5
+
6
+ .sapUIMeProgInd {
7
+ display: inline-block;
8
+ background: -moz-linear-gradient(top, #cecece 0%, #e3e3e3 100%); /* FF3.6+ */
9
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cecece), color-stop(100%, #e3e3e3)); /* Chrome,Safari4+ */
10
+ background: -webkit-linear-gradient(top, #cecece 0%, #e3e3e3 100%); /* Chrome10+,Safari5.1+ */
11
+ background: -ms-linear-gradient(top, #cecece 0%, #e3e3e3 100%); /* IE10+ */
12
+ background: linear-gradient(to bottom, #cecece 0%, #e3e3e3 100%); /* W3C */
13
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cecece, endColorstr=#e3e3e3, GradientType=0); /* IE6-9 */
14
+ height: 1rem;
15
+ padding-bottom: 2px;
16
+ }
17
+
18
+ .sapUIMeProgIndBorder {
19
+ display: inline-block;
20
+ }
21
+
22
+ .sapUIMeProgIndBar {
23
+ position: relative;
24
+ background: -moz-linear-gradient(top, #779ECB 0%, #77C8CB 100%); /* FF3.6+ */
25
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #779ECB), color-stop(100%, #77C8CB)); /* Chrome,Safari4+ */
26
+ background: -webkit-linear-gradient(top, #779ECB 0%, #77C8CB 100%); /* Chrome10+,Safari5.1+ */
27
+ background: -ms-linear-gradient(top, #779ECB 0%, #77C8CB 100%); /* IE10+ */
28
+ background: linear-gradient(to bottom, #779ECB 0%, #77C8CB 100%); /* W3C */
29
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#779ECB, endColorstr=#77C8CB, GradientType=0); /* IE6-9 */
30
+ height: 1rem;
31
+ }
32
+
33
+ .sapUIMeProgIndBarPOSITIVE {
34
+ background: -moz-linear-gradient(top, #8fc24d 0%, #406d05 100%); /* FF3.6+ */
35
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8fc24d), color-stop(100%, #406d05)); /* Chrome,Safari4+ */
36
+ background: -webkit-linear-gradient(top, #8fc24d 0%, #406d05 100%); /* Chrome10+,Safari5.1+ */
37
+ background: -ms-linear-gradient(top, #8fc24d 0%, #406d05 100%); /* IE10+ */
38
+ background: linear-gradient(to bottom, #8fc24d 0%, #406d05 100%); /* W3C */
39
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#8fc24d, endColorstr=#406d05, GradientType=0); /* IE6-9 */
40
+ }
41
+
42
+ .sapUIMeProgIndBarNEGATIVE {
43
+ background: -moz-linear-gradient(top, #f7801f 0%, #be6007 100%); /* FF3.6+ */
44
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7801f), color-stop(100%, #be6007)); /* Chrome,Safari4+ */
45
+ background: -webkit-linear-gradient(top, #f7801f 0%, #be6007 100%); /* Chrome10+,Safari5.1+ */
46
+ background: -ms-linear-gradient(top, #f7801f 0%, #be6007 100%); /* IE10+ */
47
+ background: linear-gradient(to bottom, #f7801f 0%, #be6007 100%); /* W3C */
48
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f7801f, endColorstr=#be6007, GradientType=0); /* IE6-9 */
49
+ }
50
+
51
+ .sapUIMeProgIndBarCRITICAL {
52
+ background: -moz-linear-gradient(top, #FF4F00 0%, #FF9E73 100%); /* FF3.6+ */
53
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FF4F00), color-stop(100%, #FF9E73)); /* Chrome,Safari4+ */
54
+ background: -webkit-linear-gradient(top, #FF4F00 0%, #FF9E73 100%); /* Chrome10+,Safari5.1+ */
55
+ background: -ms-linear-gradient(top, #FF4F00 0%, #FF9E73 100%); /* IE10+ */
56
+ background: linear-gradient(to bottom, #FF4F00 0%, #FF9E73 100%); /* W3C */
57
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF4F00, endColorstr=#FF9E73, GradientType=0); /* IE6-9 */
58
+ }
59
+
60
+ .sapUIMeProgIndFont {
61
+ display: inline-block;
62
+ position: absolute;
63
+ left: 0;
64
+ top: 0;
65
+ padding-left: 5px;
66
+ vertical-align: top;
67
+ font-size: 11px;
68
+ white-space: nowrap;
69
+ }
70
+
71
+ .sapUIMeProgIndEndHidden {
72
+ display: inline-block;
73
+ width: 1px;
74
+ visibility: hidden;
75
+ }
76
+
77
+ .sapUIMeProgIndEnd {
78
+ display: inline-block;
79
+ width: 1px;
80
+ visibility: visible;
81
+ height: 1rem;
82
+ background-image: -webkit-linear-gradient(top, #cecece 0%, #e3e3e3 100%);
83
+ }
@@ -0,0 +1,162 @@
1
+ /* ==================================== */
2
+ /* CSS for control sap.me/TabContainer */
3
+ /* Horizon theme */
4
+ /* ==================================== */
5
+
6
+ .sapUIMeTabContainerButtons {
7
+ margin-left: 1rem;
8
+ }
9
+
10
+ .sapUIMeTabContainerTab {
11
+ width: 3.5rem;
12
+ height: 3.5rem;
13
+ margin-left: 1rem;
14
+ display: inline-block;
15
+ }
16
+
17
+ .sapUIMeTabContainerBtn {
18
+ font-size: 1.5rem;
19
+ color: @sapUiGroupContentBackground;
20
+ -moz-border-radius: 2rem;
21
+ border-radius: 2rem;
22
+ width: 3rem;
23
+ height: 3rem;
24
+ border: 0.250rem solid @sapUiGroupContentBackground;
25
+ box-shadow: 0 0.063rem 0.125rem 0 rgba(128, 128, 128, 0.6);
26
+ padding: 0;
27
+ line-height: 3rem;
28
+ position: absolute;
29
+ z-index: 0;
30
+ }
31
+
32
+ .sapUIMeTabContainerBtnInfo.sapUiIconActive {
33
+ border: 0.250rem solid #f27020;
34
+ }
35
+
36
+ .sapUIMeTabContainerBtnAttachments.sapUiIconActive {
37
+ border: 0.250rem solid #007cc0;
38
+ }
39
+
40
+ .sapUIMeTabContainerBtnNotes.sapUiIconActive {
41
+ border: 0.250rem solid #ab218e;
42
+ }
43
+
44
+ .sapUIMeTabContainerBtnPeople.sapUiIconActive {
45
+ border: 0.250rem solid #004990;
46
+ }
47
+
48
+ .sapUIMeTabContainerBtnInfo {
49
+ background-color: #f27020;
50
+ }
51
+
52
+ .sapUIMeTabContainerBtnAttachments {
53
+ background-color: #007cc0;
54
+ }
55
+
56
+ .sapUIMeTabContainerBtnNotes {
57
+ background-color: #ab218e;
58
+ }
59
+
60
+ .sapUIMeTabContainerBtnPeople {
61
+ background-color: #004990;
62
+ }
63
+
64
+ .sapUIMeTabContainerHiddenBadges {
65
+ visibility: hidden;
66
+ }
67
+
68
+ .sapUIMeTabContainerBadge {
69
+ font-size: 0.75rem;
70
+ color: @sapUiGroupContentBackground;
71
+ -moz-border-radius: 1rem;
72
+ border-radius: 1rem;
73
+ min-width: 0.75rem;
74
+ height: 1rem;
75
+ position: relative;
76
+ padding-left: .125rem;
77
+ padding-right: .125rem;
78
+ line-height: 1rem;
79
+ float: right;
80
+ z-index: 1;
81
+ }
82
+
83
+ .sapUIMeTabContainerBadgeInfo {
84
+ background-color: #f27020;
85
+ }
86
+
87
+ .sapUIMeTabContainerBadgeAttachments {
88
+ background-color: #007cc0;
89
+
90
+ }
91
+
92
+ .sapUIMeTabContainerBadgeNotes {
93
+ background-color: #ab218e;
94
+
95
+ }
96
+
97
+ .sapUIMeTabContainerBadgePeople {
98
+ background-color: #004990;
99
+ }
100
+
101
+ .sapUIMeTabContainerContent {
102
+ position: relative;
103
+ padding: 0.125rem 0;
104
+ margin-top: 0.750rem;
105
+ border-top: 1px solid @sapUiContentForegroundBorderColor;
106
+ border-bottom: 1px solid @sapUiContentForegroundBorderColor;
107
+ background-color: @sapUiGroupContentBackground;
108
+ }
109
+
110
+ .sapUIMeTabContainerTabContentScrollable {
111
+ background-color: @sapUiGroupContentBackground;
112
+ padding: 0;
113
+ overflow-x: auto;
114
+ overflow-x: hidden;
115
+ }
116
+
117
+ .sapUIMeTabContainerTabContent {
118
+ background-color: @sapUiGroupContentBackground ;
119
+ padding: 0;
120
+ overflow: hidden;
121
+ position: relative;
122
+ z-index: 1;
123
+ }
124
+
125
+ .sapUIMeTabContainerContentArrow {
126
+ position: absolute;
127
+ top: -0.45rem;
128
+ left: 4.16rem;
129
+ width: 0.750rem;
130
+ height: 0.750rem;
131
+ -webkit-transform: rotate(45deg);
132
+ -ms-transform: rotate(45deg);
133
+ -moz-transform: rotate(45deg);
134
+ -o-transform: rotate(45deg);
135
+ transform: rotate(45deg);
136
+ background-color: @sapUiGroupContentBackground;
137
+ z-index: 0;
138
+ border-top: 1px solid @sapUiContentForegroundBorderColor;
139
+ border-left: 1px solid @sapUiContentForegroundBorderColor;
140
+ }
141
+
142
+ /* Specific phone */
143
+ .sap-phone {
144
+
145
+ .sapUIMeTabContainerButtons {
146
+ margin-top: 1rem;
147
+ margin-left: 0rem;
148
+ }
149
+
150
+ .sapUIMeTabContainerContentArrow {
151
+ left: 3.16rem;
152
+ }
153
+
154
+ }
155
+
156
+ .sapUIMeTabContainerContentClosed {
157
+ position: relative;
158
+ padding: 0.125rem 0 0 0;
159
+ margin-top: 0.750rem;
160
+ background-color: transparent;
161
+ border-bottom: none;
162
+ }
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * SAPUI5
3
+ * (c) Copyright 2009-2021 SAP SE. All rights reserved.
4
+ */
5
+ @import "../base/library.source.less";
6
+ @import "../../../../sap/ui/core/themes/sap_horizon/base.less";
7
+ @import "../../../../sap/ui/core/themes/sap_horizon/global.less";
8
+
9
+ @import "Calendar.less";
10
+ @import "CalendarLegend.less";
11
+ @import "OverlapCalendar.less";
12
+ @import "ProgressIndicator.less";
13
+ @import "TabContainer.less";
package/ui5.yaml CHANGED
@@ -10,6 +10,8 @@ framework:
10
10
  name: SAPUI5
11
11
  libraries:
12
12
  - name: sap.ui.core
13
+ - name: themelib_sap_horizon
14
+ optional: true
13
15
  - name: themelib_sap_fiori_3
14
16
  optional: true
15
17
  - name: themelib_sap_belize