@sapui5/sap.uiext.inbox 1.124.2 → 1.126.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/main/uilib/sap/uiext/inbox/.library +1 -1
- package/src/main/uilib/sap/uiext/inbox/library.js +1 -1
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize/library.source.less +12 -3
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/Inbox.less +292 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxAddAttachmentTile.less +49 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxAttachmentTile.less +103 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxAttachmentsTileContainer.less +18 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxBusyIndicator.less +13 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxComment.less +89 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxLaunchPad.less +22 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxSplitApp.less +59 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxTaskComments.less +79 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxTaskTitleControl.less +9 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxUploadAttachmentTile.less +58 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/IndexLayout.less +164 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/SubstitutionRulesManager.less +122 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/library.source.less +21 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/shared.less +0 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_hcb/library.source.less +12 -3
- package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_hcw/library.source.less +12 -3
- package/src/main/uilib/sap/uiext/inbox/themes/sap_bluecrystal/library.source.less +7 -7
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_Inbox.less +292 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxAddAttachmentTile.less +49 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxAttachmentTile.less +103 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxAttachmentsTileContainer.less +18 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxBusyIndicator.less +13 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxComment.less +89 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxLaunchPad.less +22 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxSplitApp.less +59 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxTaskComments.less +79 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxTaskTitleControl.less +9 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_InboxUploadAttachmentTile.less +58 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_IndexLayout.less +164 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_SubstitutionRulesManager.less +122 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/base_shared.less +0 -0
- package/src/main/uilib/sap/uiext/inbox/themes/sap_hcb/library.source.less +26 -1
package/package.json
CHANGED
|
@@ -2,10 +2,19 @@
|
|
|
2
2
|
* SAPUI5
|
|
3
3
|
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
4
|
*/
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
|
|
6
|
+
/* ============================================================================ */
|
|
7
|
+
/* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the */
|
|
8
|
+
/* inheritance of the base theme is now updated to an inheritance of a static */
|
|
9
|
+
/* copy of the base theme named sap_belize_base. The respective */
|
|
10
|
+
/* control css files of base are copied to the sap_belize_base theme folder. */
|
|
11
|
+
/* This decoupling of the base theme is introduced with SAPUI5 version 1.125. */
|
|
12
|
+
/* ============================================================================ */
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@import "../sap_belize_base/library.source.less";
|
|
7
16
|
@import "../../../../../sap/ui/core/themes/sap_belize/base.less";
|
|
8
17
|
@import "../../../../../sap/ui/core/themes/sap_belize/global.less";
|
|
9
18
|
|
|
10
19
|
@import "Inbox.less";
|
|
11
|
-
@import "SubstitutionRulesManager.less";
|
|
20
|
+
@import "SubstitutionRulesManager.less";
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
/* ============================================= */
|
|
2
|
+
/* CSS for controlsap.uiext.inbox/Inbox.control */
|
|
3
|
+
/* ============================================= */
|
|
4
|
+
.sapUiExtInboxToolbarRight{
|
|
5
|
+
float:right;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.sapUiExtInboxfontBold{
|
|
9
|
+
font-weight:bold;
|
|
10
|
+
}
|
|
11
|
+
.sapUiExtInboxTaskTitleIcon {
|
|
12
|
+
font-size: 15px;
|
|
13
|
+
padding: 4px;
|
|
14
|
+
text-align: center;
|
|
15
|
+
position: relative;
|
|
16
|
+
vertical-align: middle;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.sapUiExtInboxTaskTitleLink {
|
|
20
|
+
text-align: center;
|
|
21
|
+
vertical-align: middle;
|
|
22
|
+
text-overflow: ellipsis;
|
|
23
|
+
position: relative;
|
|
24
|
+
max-width: 75%;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.sapUiExtInboxRedColor, .sapUiExtInboxRedColor:hover {
|
|
28
|
+
color: #ED6F58;
|
|
29
|
+
font-weight:bold;
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.sapUiExtInboxCustomTable > .sapUiTblCtrlCnt > .sapUiTblCtrl > tbody > tr > td > .sapUiTblCnt > .sapUiTf, .sapUiTblCtrl > tbody > tr > td > .sapUiTblCnt > .sapUiTfCombo {
|
|
34
|
+
font-size:12px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.sapUiExtInboxCustomTable > .sapUiTblCtrlCnt > .sapUiTblCtrl > thead > tr > th > .sapUiTblCnt > .sapUiLbl{
|
|
38
|
+
font-size:13px;
|
|
39
|
+
font-weight:bold;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.sapUiExtInboxCustomTable {
|
|
43
|
+
font-size:12px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.sapUiExtInboxTaskTitle {
|
|
47
|
+
text-overflow:ellipsis;
|
|
48
|
+
position: relative;
|
|
49
|
+
vertical-align: middle;
|
|
50
|
+
max-width: 100%
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
.sapUiExtInboxToolBarContainerHeight{
|
|
55
|
+
/* height: 27px;*/
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.sapUiExtInboxToolBarContainerBorder{
|
|
59
|
+
border-style: solid;
|
|
60
|
+
border-color: #bfbfbf;
|
|
61
|
+
border-width: 1px;
|
|
62
|
+
background-color: white;
|
|
63
|
+
margin-bottom: 5px;
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.sapUiExtInboxNotificationBar {
|
|
68
|
+
z-index: 2;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.sapUiExtInboxMessageText {
|
|
72
|
+
padding-left: 2px;
|
|
73
|
+
padding-top: 5px;
|
|
74
|
+
}
|
|
75
|
+
.sapUiExtInboxMessageIcon {
|
|
76
|
+
padding: 5px;
|
|
77
|
+
}
|
|
78
|
+
.sapUiExtInboxCloseIconStyle {
|
|
79
|
+
float : right;
|
|
80
|
+
margin-top : 5px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.sapUiExtInboxRefreshButtonHeight{
|
|
84
|
+
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.sapUiExtInboxActionButtonsToolbarContainer > .sapUiTbCont > .sapUiTbInner{
|
|
88
|
+
margin-right: 0px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
.sapUiExtInboxSearchField{
|
|
93
|
+
width : 25ex;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.sapUiExtInboxSearchField > .sapUiSearchFieldTf{
|
|
97
|
+
/* height:27px;*/
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
.sapUiExtInboxComboBox {
|
|
102
|
+
width : 25ex;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.sapUiExtInboxLnkDsbl {
|
|
106
|
+
text-decoration: none !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.sapUiExtInboxLnkNoUnderline {
|
|
110
|
+
text-decoration: none !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
.sapUiExtInboxSettingsButton{
|
|
116
|
+
/*background-color: transparent;*/
|
|
117
|
+
height: 24px;
|
|
118
|
+
font-size: 16px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.sapUiExtInboxSettingsButton:focus, .sapUiExtInboxSettingsButton:hover{
|
|
122
|
+
outline: 1px solid;
|
|
123
|
+
background-color: transparent;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.sapUiExtInboxBackgroundColour{
|
|
127
|
+
background-color: white;
|
|
128
|
+
}
|
|
129
|
+
.sapUiExtInboxBorderFillColor {
|
|
130
|
+
border-style:solid;
|
|
131
|
+
/*border-color:#FFFFFF #FFFFFF #F2F2F2 #FFFFFF;*/
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
.sapUiExtInboxRowRepeaterLayoutBorder {
|
|
136
|
+
border-style:solid;
|
|
137
|
+
/*border-color:lightgrey;*/
|
|
138
|
+
border-width: 1px 1px 0 1px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.sapUiExtInboxRowRepeaterBorder {
|
|
142
|
+
/*border-bottom: 1px solid lightGrey;*/
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.sapUIExtInboxTextGrayColor {
|
|
146
|
+
/*color: DarkGray;*/
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.sapUIExtInboxCustomAttributesBorder{
|
|
150
|
+
border-collapse: initial;
|
|
151
|
+
padding: 5px 0 5px 0;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.sapUIExtInboxCATaskDetailsPadRight{
|
|
155
|
+
padding-right: 60px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.sapUIExtInboxDotSeperatorStyle{
|
|
159
|
+
/*color: #555;*/
|
|
160
|
+
font-weight:bold;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.sapUiExtInboxRowRepeaterTaskInitiatorPadLeft{
|
|
164
|
+
padding-left: 20px;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.sapUiExtInboxRowRepeaterTaskDetailsStyle{
|
|
168
|
+
padding-left: 15px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.sapUiExtInboxRRFirstRowStyle{
|
|
172
|
+
padding-top: 10px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.sapUIExtInboxRRTextColourStyle{
|
|
176
|
+
/*color: #555;*/
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.sapUiExtInboxRRPaddingRight{
|
|
180
|
+
padding-right: 10px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.sapUiExtInboxRowRepeaterSortBy{
|
|
184
|
+
background-color: transparent;
|
|
185
|
+
/* border-style:none;
|
|
186
|
+
border-color:transparent;
|
|
187
|
+
border-width: 0px 0px 0 0px;
|
|
188
|
+
*/
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.sapUiExtInboxCustomAttLabel{
|
|
192
|
+
/*color: #8E8E8E;*/
|
|
193
|
+
text-align: right !important;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.sapUiExtInboxColumnTextLeftAlignment{
|
|
197
|
+
text-align: left !important;
|
|
198
|
+
border:none !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.sapUiExtInboxCustomAttValue{
|
|
202
|
+
width: 150px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.sapUiExtInboxRefreshedOnStyle{
|
|
206
|
+
/*color: #A4A4A4;*/
|
|
207
|
+
padding-top: 4px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.sapUiExtInboxPaddingBottom{
|
|
211
|
+
padding-bottom: 1px;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.sapUiExtInboxSegmentedButtonTransparent{
|
|
215
|
+
background-color: transparent !important;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.sapUiExtInboxSegmentedButtonTransparent:hover, .sapUiExtInboxSegmentedButtonTransparent:focus{
|
|
219
|
+
background-color: #666 !important;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.sapUiExtInboxSegmentedButtonTransparentSelected, .sapUiExtInboxSegmentedButtonTransparentSelected:focus {
|
|
223
|
+
background-color: #007CC0 !important;
|
|
224
|
+
font-size: 14px;
|
|
225
|
+
color: white !important;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.sapUiExtInboxSegmentedButtonTransparentSelected:hover {
|
|
229
|
+
background-color: #666 !important;
|
|
230
|
+
color: white !important;
|
|
231
|
+
font-size:14px;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.sapUiExtInboxSegmentedButtonViewSelection:hover, .sapUiExtInboxSegmentedButtonViewSelection:focus {
|
|
235
|
+
background-color: #666 !important;
|
|
236
|
+
color: white !important;
|
|
237
|
+
font-size: 14px;
|
|
238
|
+
|
|
239
|
+
}
|
|
240
|
+
.sapUiExtInboxSegmentedButtonViewSelection {
|
|
241
|
+
background-color: white !important;
|
|
242
|
+
color: black !important;
|
|
243
|
+
font-size: 14px;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.sapUiExtInboxValueHelpTextStyle{
|
|
247
|
+
font-style:italic;
|
|
248
|
+
font-weight:normal;
|
|
249
|
+
/*color: #8E8E8E;*/
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.sapUiExtInboxMarginForTableColumnStyle{
|
|
253
|
+
margin: 4px 3px 0px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.sapUiExtInboxRefreshButtonTransparent{
|
|
257
|
+
background-color: transparent !important;
|
|
258
|
+
border: none !important;
|
|
259
|
+
box-shadow: none !important;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.sapUiExtInboxRefreshButtonTransparent:focus{
|
|
263
|
+
outline: 1px solid;
|
|
264
|
+
/*#00689E;*/
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.sapUiExtInboxSearchFieldMltPad{
|
|
268
|
+
padding-right: 0px !important;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.sapUiExtInboxNextPrevBtnDisabled:focus{
|
|
272
|
+
outline:none;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.sapUiExtInboxCustomActionLinkPadding{
|
|
276
|
+
padding: 0 4px 0 0;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.sapUiExtInboxToggleButtonMarginRight{
|
|
280
|
+
margin-right: 4px !important;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.sapUIExtInboxLastRowPadding{
|
|
284
|
+
padding: 0 4px 0 0;
|
|
285
|
+
border-top: 1px solid lightgray;
|
|
286
|
+
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.sapUIExtInboxCommentsBorder{
|
|
290
|
+
border-collapse: initial;
|
|
291
|
+
padding: 0 0 0 0;
|
|
292
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
|
|
2
|
+
/* ============================================= */
|
|
3
|
+
/* CSS for control sap.uiext.inbox/InboxAddAttachmentTile.control */
|
|
4
|
+
/* ============================================= */
|
|
5
|
+
|
|
6
|
+
.sapUiExtInboxAddAttachmentTileLayout {
|
|
7
|
+
width : 280px;
|
|
8
|
+
height : 45px;
|
|
9
|
+
/*border : 1px solid @sapUiExtraLightBorder;*/
|
|
10
|
+
display : inline-flex;
|
|
11
|
+
margin : 1px;
|
|
12
|
+
padding: 8px 30px 5px 8px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
html[data-sap-ui-browser*="ie"] .sapUiExtInboxAddAttachmentTileLayout {
|
|
16
|
+
width : 280px;
|
|
17
|
+
height : 45px;
|
|
18
|
+
/*border : 1px solid @sapUiExtraLightBorder;*/
|
|
19
|
+
display : inline-block;
|
|
20
|
+
margin : 1px;
|
|
21
|
+
padding: 8px 30px 5px 8px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.sapUiExtInboxAttachmentIcon {
|
|
25
|
+
font-size: 30px;
|
|
26
|
+
color: @sapUiLightText;
|
|
27
|
+
line-height: 40px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.sapUiExtInboxAddAttachmentText {
|
|
31
|
+
width : 230px;
|
|
32
|
+
padding-left : 15px;
|
|
33
|
+
display : inline-block;
|
|
34
|
+
position: absolute;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.sapUiExtInboxAttachmentAddLink {
|
|
38
|
+
font-size:15px;
|
|
39
|
+
color: @sapUiLink;
|
|
40
|
+
display : inline-block;
|
|
41
|
+
text-decoration : none;
|
|
42
|
+
width: 170px;
|
|
43
|
+
vertical-align: middle;
|
|
44
|
+
line-height: 40px;
|
|
45
|
+
text-align: center;
|
|
46
|
+
overflow:hidden;
|
|
47
|
+
text-overflow: ellipsis;
|
|
48
|
+
white-space: nowrap;
|
|
49
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
|
|
2
|
+
/* ============================================= */
|
|
3
|
+
/* CSS for control sap.uiext.inbox/InboxAttachmentTile.control */
|
|
4
|
+
/* ============================================= */
|
|
5
|
+
|
|
6
|
+
.sapUiExtInboxAttachmentTileLayout {
|
|
7
|
+
width : 280px;
|
|
8
|
+
height : 45px;
|
|
9
|
+
/*border : 1px solid @sapUiExtraLightBorder;*/
|
|
10
|
+
display : inline-flex;
|
|
11
|
+
margin : 1px;
|
|
12
|
+
padding: 8px 30px 5px 8px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
html[data-sap-ui-browser*="ie"] .sapUiExtInboxAttachmentTileLayout {
|
|
16
|
+
width : 280px;
|
|
17
|
+
height : 45px;
|
|
18
|
+
/*border : 1px solid @sapUiExtraLightBorder;*/
|
|
19
|
+
display : inline-block;
|
|
20
|
+
margin : 1px;
|
|
21
|
+
padding: 8px 30px 5px 8px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.sapUiExtInboxAttachmentIcon {
|
|
25
|
+
font-size: 30px;
|
|
26
|
+
color: @sapUiLightText;
|
|
27
|
+
line-height: 40px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.sapUiExtInboxAttachmentDetails {
|
|
31
|
+
width : 230px;
|
|
32
|
+
padding-left : 15px;
|
|
33
|
+
display : inline-block;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.sapUiExtInboxAttachmentTitle {
|
|
37
|
+
width : 230px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.sapUiExtInboxAttachmentFileLink {
|
|
41
|
+
white-space:nowrap;
|
|
42
|
+
overflow:hidden;
|
|
43
|
+
max-width:160px;
|
|
44
|
+
color: @sapUiLink;
|
|
45
|
+
display : inline-block;
|
|
46
|
+
text-overflow: ellipsis;
|
|
47
|
+
text-decoration: none;
|
|
48
|
+
font-size: 14px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.sapUiExtInboxAttachmentFileSize {
|
|
52
|
+
white-space:nowrap;
|
|
53
|
+
white-space:nowrap;
|
|
54
|
+
overflow:hidden;
|
|
55
|
+
color: @sapUiLightText;
|
|
56
|
+
display : inline-block;
|
|
57
|
+
padding-left : 10px;
|
|
58
|
+
text-overflow: ellipsis;
|
|
59
|
+
width:60px;
|
|
60
|
+
font-size: 14px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.sapUiExtInboxAttachmentInline {
|
|
64
|
+
display : inline-block;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.sapUiExtInboxInlineFlexRow {
|
|
68
|
+
display : inline-flex;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
html[data-sap-ui-browser*="ie"] .sapUiExtInboxInlineFlexRow {
|
|
72
|
+
display : inline-block;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.sapUiExtInboxAttachmentCreatedBy {
|
|
76
|
+
white-space:nowrap;
|
|
77
|
+
overflow:hidden;
|
|
78
|
+
width:90px;
|
|
79
|
+
display : inline-block;
|
|
80
|
+
text-overflow: ellipsis;
|
|
81
|
+
padding-top: 5px;
|
|
82
|
+
color: @sapUiLightText;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.sapUiExtInboxAttachmentDate {
|
|
86
|
+
width : 80px;
|
|
87
|
+
padding-left : 10px;
|
|
88
|
+
white-space:nowrap;
|
|
89
|
+
overflow:hidden;
|
|
90
|
+
display : inline-block;
|
|
91
|
+
text-overflow: ellipsis;
|
|
92
|
+
padding-top: 5px;
|
|
93
|
+
color: @sapUiLightText;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.sapUiExtInboxAttachmentDeleteBtn{
|
|
97
|
+
padding-left : 5px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.sapUiExtInboxAttachmentDeleteBtn > .sapUiBtn> span.sapUiBtnIco {
|
|
101
|
+
font-size: 14px;
|
|
102
|
+
margin-top: 1px;
|
|
103
|
+
}
|
package/src/main/uilib/sap/uiext/inbox/themes/sap_belize_base/InboxAttachmentsTileContainer.less
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
/* ============================================= */
|
|
3
|
+
/* CSS for control sap.uiext.inbox/InboxAttachmentsTileContainer.control */
|
|
4
|
+
/* ============================================= */
|
|
5
|
+
|
|
6
|
+
.sapUiExtInboxAttachmentHidden{
|
|
7
|
+
visibility: hidden;
|
|
8
|
+
width : 0;
|
|
9
|
+
height : 0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.sapUiExtInboxInlineFlexTiles {
|
|
13
|
+
display : inline-flex;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
html[data-sap-ui-browser*="ie"] .sapUiExtInboxInlineFlexTiles {
|
|
17
|
+
display : inline-block;
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
/* ============================================= */
|
|
3
|
+
/* CSS for control sap.uiext.inbox/InboxBusyIndicator.control */
|
|
4
|
+
/* ============================================= */
|
|
5
|
+
|
|
6
|
+
.sapUiextBusyContainer{
|
|
7
|
+
border: 1px solid @sapUiExtraLightBorder;
|
|
8
|
+
display: block;
|
|
9
|
+
position: relative;
|
|
10
|
+
margin-top: 10px;
|
|
11
|
+
margin-bottom: 2px;
|
|
12
|
+
padding: 9px 15px 30px 9px;
|
|
13
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
|
|
2
|
+
/* ============================================= */
|
|
3
|
+
/* CSS for controlsap.uiext.inbox/InboxComment.control */
|
|
4
|
+
/* ============================================= */
|
|
5
|
+
|
|
6
|
+
.sapuiextInboxCommentChunk{
|
|
7
|
+
border: 1px solid @sapUiMediumBorder;
|
|
8
|
+
background-color: @sapUiExtraLightBG;
|
|
9
|
+
display: block;
|
|
10
|
+
-moz-box-sizing: border-box;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
position: relative;
|
|
13
|
+
margin-bottom: 2px;
|
|
14
|
+
padding: 9px 15px 9px 9px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.sapuiextInboxCommentChunk > img{
|
|
18
|
+
margin-right: 10px;
|
|
19
|
+
margin-bottom: 5px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.sapuiextInboxComment > img{
|
|
23
|
+
wwidth: 32px;
|
|
24
|
+
height: 32px;
|
|
25
|
+
display: inline-block;
|
|
26
|
+
float: left;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.sapuiextInboxCommentText{
|
|
30
|
+
color: @sapUiText;
|
|
31
|
+
vertical-align: top;
|
|
32
|
+
font-family: Arial, regular;
|
|
33
|
+
font-size: 13px;
|
|
34
|
+
min-height: 19px;
|
|
35
|
+
line-height: 19px;
|
|
36
|
+
margin-top: -2px;
|
|
37
|
+
margin-right: 27px;
|
|
38
|
+
margin-left:42px;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
height: auto;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.sapuiextInboxCommentChunkByline{
|
|
44
|
+
font-family: Arial, regular;
|
|
45
|
+
font-size: 11px;
|
|
46
|
+
color: @sapUiLightText;
|
|
47
|
+
margin-top: 5px;
|
|
48
|
+
margin-left:42px;
|
|
49
|
+
display: block;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.sapuiextInboxCommentChunk > section{
|
|
53
|
+
display: block;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.sapuiextInboxCommentChunk > section > header{
|
|
57
|
+
display: block;
|
|
58
|
+
position: relative;
|
|
59
|
+
border-top: 1px solid @sapUiMediumBorder;
|
|
60
|
+
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.sapuiextInboxCommentChunk > section > header > a{
|
|
64
|
+
right: 0;
|
|
65
|
+
position: absolute;
|
|
66
|
+
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.sapuiextInboxCommentSenderText{
|
|
70
|
+
font-weight: bold;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* .sapuiextInboxCommentChunk a{
|
|
74
|
+
color: @sapUiLink;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.sapuiextInboxCommentChunk a:focus,
|
|
78
|
+
.sapuiextInboxCommentChunk a:active{
|
|
79
|
+
color: @sapUiLinkActive;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.sapuiextInboxCommentChunk a:visited{
|
|
83
|
+
color: @sapUiLinkVisited;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.sapuiextInboxCommentChunk a:hover{
|
|
87
|
+
color: @sapUiLinkHover;
|
|
88
|
+
}
|
|
89
|
+
*/
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* ============================================= */
|
|
2
|
+
/* CSS for controlsap.uiext.inbox/InboxLaunchPad.control */
|
|
3
|
+
/* ============================================= */
|
|
4
|
+
|
|
5
|
+
.sapMTile:hover {
|
|
6
|
+
background-color: #e6f2f9;
|
|
7
|
+
}
|
|
8
|
+
.sapMTile:active {
|
|
9
|
+
background-color: #009de0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.sapMObjLTitle {
|
|
13
|
+
color: #5F5959;
|
|
14
|
+
font-size: .9rem;
|
|
15
|
+
font-weight: bold;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.logo {
|
|
19
|
+
padding-left: 0.5rem;
|
|
20
|
+
padding-top: 0.1rem;
|
|
21
|
+
padding-bottom: 0.3rem;
|
|
22
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/* ============================================= */
|
|
2
|
+
/* CSS for controlsap.uiext.inbox/InboxSplitApp.control */
|
|
3
|
+
/* ============================================= */
|
|
4
|
+
|
|
5
|
+
.sapUiextInboxSplitApp{
|
|
6
|
+
color: @sapUiTextColor;
|
|
7
|
+
border: 1px solid blue;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.inbox_split_app_CommentsList{
|
|
11
|
+
border: 1px solid lightgray;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.inbox_split_app_addCommentContainer{
|
|
15
|
+
padding-top: 8px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.inbox_split_app_addCommentInput{
|
|
19
|
+
padding: 0;
|
|
20
|
+
margin: 0 0 0 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.inbox_split_app_addCommentInput> textarea {
|
|
24
|
+
width: 605px !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@media (max-width : 480px) {
|
|
28
|
+
.inbox_split_app_addCommentInput> textarea {
|
|
29
|
+
width: 300px !important;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
.inbox_split_app_addCommentBtn {
|
|
33
|
+
height: 83px;
|
|
34
|
+
line-height: normal;
|
|
35
|
+
background-color: #009de0 !important;
|
|
36
|
+
text-shadow : none;
|
|
37
|
+
margin: 0 0 0 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.inbox_split_app_addCommentBtnspan {
|
|
41
|
+
color: white !important;
|
|
42
|
+
line-height: 1.875rem !important;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.inbox_split_app_scrollContainer {
|
|
46
|
+
margin-right: auto;
|
|
47
|
+
margin-left: auto;
|
|
48
|
+
padding-top: 50px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.sapMScrollContScroll{
|
|
52
|
+
width: 99%;
|
|
53
|
+
padding-top: 6px;
|
|
54
|
+
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.inbox_split_app_wordBreak .sapMText.sapMObjLTitle {
|
|
58
|
+
word-break: normal;
|
|
59
|
+
}
|