@openui5/sap.m
Version:
OpenUI5 UI Library sap.m
110 lines (92 loc) • 1.93 kB
text/less
/* ================================== */
/* CSS for control sap.m/MessagePage */
/* Base theme */
/* ================================== */
/* MessagePage general styles */
.sapMMessagePage {
width: 100%;
height: 100%;
background: @sapUiGlobalBackgroundColor;
position: relative;
}
.sapMMessagePageInner {
box-sizing: border-box;
display: flex;
padding: 1rem;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-y: auto;
}
/* Allow MessagePage to be positioned inside ObjectPage */
.sapUxAPBlockContainer .sapMMessagePageInner {
position: static;
}
.sapMMessagePageContentWrapper {
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
transform: translateY(-1rem);
width: 30rem;
max-width: 100%;
}
.sapMMessagePage > .sapMBar + .sapMMessagePageInner {
top: 3rem;
}
/* MessagePage inner controls styles*/
.sapMMessagePage {
.sapMMessagePageInner {
.sapMMessagePageIcon.sapUiIcon::before {
font-size: 6rem;
color: @sapUiContentNonInteractiveIconColor;
}
& > .sapMMessagePageContentWrapper > * {
max-width: 100%;
}
}
.sapMMessagePageMainText {
font-size: 1.5rem;
line-height: 2rem;
margin-top: 1rem;
}
.sapMText.sapMMessagePageMainText {
color: @sapUiGroupTitleTextColor;
font-size: @sapMFontHeader2Size;
}
.sapMMessagePageDescription {
font-size: 1rem;
margin-top: 1rem;
.sapMLnk {
font-size: 1rem;
}
}
.sapMText.sapMMessagePageDescription {
color: @sapUiContentLabelColor;
font-size: @sapMFontHeader5Size;
}
.sapMMessagePageButtonsWrapper {
margin-top: 2rem;
text-align: center;
}
.sapMBtn {
margin: 0 0.25rem;
}
}
.sapUiSizeCompact .sapMMessagePage > .sapMBar {
height: 2.5rem;
.sapMBarPH,
.sapMBarLeft {
height: 2.5rem;
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.sapMBarMiddle {
height: 2.5rem;
}
&+ .sapMMessagePageInner {
top: 2.5rem;
}
}