UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

39 lines (35 loc) 912 B
/* ====================================== */ /* CSS for control sap.m/RatingIndicator */ /* High Contrast Black theme */ /* ====================================== */ .sapMRIIconSel, .sapMRIIconHov, .sapMPointer .sapMRIIconUnsel { color: @sapUiContentIconColor; } .sapMRIIconUnsel { color: @sapUiHcReducedAltForeground; } /* Custom focus outline */ html.sap-desktop .sapMRI:focus:not(.sapMRIDisabled) { outline: 0.125rem dotted @sapUiContentFocusColor; outline-offset: -0.125rem; } /* TODO remove after 1.62 version */ /* IE ignores outline-offset. Use an overlay: */ html[data-sap-ui-browser^="ie"].sap-desktop { .sapMRI:focus { outline: none; position: relative; } .sapMRI:focus:not(.sapMRIDisabled)::before { content: " "; box-sizing: border-box; width: 100%; height: 100%; position: absolute; left: 0; top: 0; border: 0.125rem dotted @sapUiContentFocusColor;; } }