36 lines
665 B
CSS
Executable File
36 lines
665 B
CSS
Executable File
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
*/
|
|
|
|
/* Reapplies Mui styles that get overriden by Obsidian styles */
|
|
.publish-status-view input[type="checkbox"] {
|
|
cursor: inherit;
|
|
position: absolute;
|
|
opacity: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0px;
|
|
left: 0px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.publish-status-view .MuiCheckbox-root .MuiSvgIcon-root {
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
/* Spin animation for refresh icon */
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|