68 lines
1.4 KiB
SCSS
Executable File
68 lines
1.4 KiB
SCSS
Executable File
// Loader
|
|
.pp-loader {
|
|
position: absolute;
|
|
top: 115px;
|
|
left: 1060px;
|
|
width: 25px;
|
|
height: 25px;
|
|
border-radius: 50%;
|
|
border: 4px solid $loader-secondary-color;
|
|
border-top: 4px solid $loader-primary-color;
|
|
animation: spin 1s linear infinite;
|
|
z-index: 9999;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
// border radius 0
|
|
// .postbox,
|
|
// #dashboard-widgets .postbox-container,
|
|
// input[type="submit"].wp-core-ui.button,
|
|
// #preview-action .preview,
|
|
// .wp-core-ui .button-primary,
|
|
// .wrap .page-title-action,
|
|
// input[type="text"],
|
|
// input[type="url"],
|
|
// input[type="email"],
|
|
// input[type="password"],
|
|
// input[type="number"],
|
|
// textarea,
|
|
// .wp-core-ui .attachment .thumbnail,
|
|
// .wp-core-ui .attachment-preview,
|
|
// .wp-core-ui .button-secondary,
|
|
// form#loginform input[type="text"],
|
|
// .pp-section,
|
|
// .pp-radio-group label,
|
|
// .pp-button-upload {
|
|
// border-radius: 0;
|
|
// }
|
|
input[type="color"],
|
|
input[type="date"],
|
|
input[type="datetime-local"],
|
|
input[type="datetime"],
|
|
input[type="email"],
|
|
input[type="month"],
|
|
input[type="number"],
|
|
input[type="password"],
|
|
input[type="search"],
|
|
input[type="tel"],
|
|
input[type="text"],
|
|
input[type="time"],
|
|
input[type="url"],
|
|
input[type="week"],
|
|
select,
|
|
textarea {
|
|
box-shadow: 0 0 0 transparent;
|
|
|
|
border: 1px solid $border;
|
|
background-color: $pp-bg;
|
|
color: $black;
|
|
}
|