@sapui5/sap.me 1.99.1 → 1.102.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.
- package/package.json +1 -1
- package/src/sap/me/.library +1 -1
- package/src/sap/me/CalendarLegendRenderer.js +2 -2
- package/src/sap/me/CalendarRenderer.js +2 -2
- package/src/sap/me/OverlapCalendarRenderer.js +2 -2
- package/src/sap/me/ProgressIndicatorRenderer.js +2 -2
- package/src/sap/me/TabContainerRenderer.js +2 -2
- package/src/sap/me/library.js +7 -10
- package/src/sap/me/themes/sap_horizon_dark/Calendar.less +291 -0
- package/src/sap/me/themes/sap_horizon_dark/CalendarLegend.less +98 -0
- package/src/sap/me/themes/sap_horizon_dark/OverlapCalendar.less +171 -0
- package/src/sap/me/themes/sap_horizon_dark/ProgressIndicator.less +83 -0
- package/src/sap/me/themes/sap_horizon_dark/TabContainer.less +162 -0
- package/src/sap/me/themes/sap_horizon_dark/img/bg_white_transparent.png +0 -0
- package/src/sap/me/themes/sap_horizon_dark/img-RTL/bg_white_transparent.png +0 -0
- package/src/sap/me/themes/sap_horizon_dark/library.source.less +13 -0
- package/src/sap/me/themes/sap_horizon_hcb/Calendar.less +177 -0
- package/src/sap/me/themes/sap_horizon_hcb/CalendarLegend.less +42 -0
- package/src/sap/me/themes/sap_horizon_hcb/OverlapCalendar.less +150 -0
- package/src/sap/me/themes/sap_horizon_hcb/img/bg_white_transparent.png +0 -0
- package/src/sap/me/themes/sap_horizon_hcb/img-RTL/bg_white_transparent.png +0 -0
- package/src/sap/me/themes/sap_horizon_hcb/library.source.less +12 -0
- package/src/sap/me/themes/sap_horizon_hcw/Calendar.less +177 -0
- package/src/sap/me/themes/sap_horizon_hcw/CalendarLegend.less +42 -0
- package/src/sap/me/themes/sap_horizon_hcw/OverlapCalendar.less +150 -0
- package/src/sap/me/themes/sap_horizon_hcw/img/bg_white_transparent.png +0 -0
- package/src/sap/me/themes/sap_horizon_hcw/img-RTL/bg_white_transparent.png +0 -0
- package/src/sap/me/themes/sap_horizon_hcw/library.source.less +12 -0
package/package.json
CHANGED
package/src/sap/me/.library
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
* (c) Copyright 2009-2022 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.
|
|
8
|
+
<version>1.102.0</version>
|
|
9
9
|
|
|
10
10
|
<documentation>SAPUI5 library with controls specialized for mobile devices (extension).</documentation>
|
|
11
11
|
|
package/src/sap/me/library.js
CHANGED
|
@@ -14,16 +14,13 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
|
|
|
14
14
|
* SAPUI5 library with controls specialized for mobile devices (extension).
|
|
15
15
|
*
|
|
16
16
|
* @namespace
|
|
17
|
-
* @
|
|
17
|
+
* @alias sap.me
|
|
18
18
|
* @public
|
|
19
19
|
* @deprecated as of version 1.34
|
|
20
20
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
// delegate further initialization of this library to the Core
|
|
24
|
-
sap.ui.getCore().initLibrary({
|
|
21
|
+
var thisLib = sap.ui.getCore().initLibrary({
|
|
25
22
|
name : "sap.me",
|
|
26
|
-
version: "1.
|
|
23
|
+
version: "1.102.0",
|
|
27
24
|
dependencies : ["sap.ui.core"],
|
|
28
25
|
types: [
|
|
29
26
|
"sap.me.CalendarDesign",
|
|
@@ -53,7 +50,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
|
|
|
53
50
|
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
54
51
|
* @deprecated as of version 1.34
|
|
55
52
|
*/
|
|
56
|
-
|
|
53
|
+
thisLib.CalendarDesign = {
|
|
57
54
|
|
|
58
55
|
/**
|
|
59
56
|
* Colors match calendar design for Action
|
|
@@ -79,7 +76,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
|
|
|
79
76
|
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
80
77
|
* @deprecated as of version 1.34
|
|
81
78
|
*/
|
|
82
|
-
|
|
79
|
+
thisLib.CalendarEventType = {
|
|
83
80
|
|
|
84
81
|
/**
|
|
85
82
|
* Type 00 (non-working day (e.g. weekend))
|
|
@@ -129,7 +126,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
|
|
|
129
126
|
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
130
127
|
* @deprecated as of version 1.34
|
|
131
128
|
*/
|
|
132
|
-
|
|
129
|
+
thisLib.CalendarSelectionMode = {
|
|
133
130
|
|
|
134
131
|
/**
|
|
135
132
|
* Can only select one date
|
|
@@ -151,6 +148,6 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'],
|
|
|
151
148
|
|
|
152
149
|
};
|
|
153
150
|
|
|
154
|
-
return
|
|
151
|
+
return thisLib;
|
|
155
152
|
|
|
156
153
|
}, /* bExport= */ true);
|
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
/* ================================ */
|
|
2
|
+
/* CSS for control sap.me/Calendar */
|
|
3
|
+
/* Evening 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
|
+
/* Evening 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
|
+
}
|