@microsoft/sp-webpart-base
Version:
SharePoint Framework support for building web parts
53 lines (50 loc) • 1.15 kB
CSS
/*
Your use of the content in the files referenced here is subject to the terms of the license at http://aka.ms/fabric-assets-license
*/
/** THIS FILE IS AUTOGENERATED do not modify it manually. See generateDefaultThemeSassFiles.js. New slots should be added to the appropriate interfaces and defaults files. */
@keyframes spin {
from {
transform: rotate(-45deg);
}
to {
transform: rotate(315deg);
}
}
.spinnerContainer {
position: relative;
width: 100%;
padding: 164px 0;
}
.spinner {
position: relative;
width: 20px;
height: 20px;
margin: auto;
}
.spinnerRing, .spinnerSlice {
position: absolute;
}
.spinnerRing {
z-index: 0;
color: "[theme:themeLight, default: #c7e0f4]";
}
.spinnerSlice {
z-index: 10;
color: "[theme:themePrimary, default: #0078d4]";
animation: spin 1.5s infinite;
animation-timing-function: easeInOutCirc;
}
.spinnerLoadingMessage {
margin-top: 10px;
text-align: center;
color: "[theme:themePrimary, default: #0078d4]";
}
.spinnerAccessibilityMessage {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border-width: 0;
overflow: hidden;
}