mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
79ec21346d
* add a new-line before the log text to increase readability of the test output * make eslint, jslint happy * it shouldn't be there * fremove this file from my PRs * fix high CPU load
45 lines
885 B
Plaintext
45 lines
885 B
Plaintext
title: $:/plugins/tiddlywiki/tiddlyweb/styles
|
|
tags: [[$:/tags/Stylesheet]]
|
|
|
|
\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock
|
|
|
|
body.tc-dirty span.tc-dirty-indicator svg {
|
|
transition: fill 250ms ease-in-out;
|
|
}
|
|
|
|
body .tc-image-cloud-idle {
|
|
fill: <<colour background>>;
|
|
transition: opacity 250ms ease-in-out;
|
|
opacity: 1;
|
|
display: unset;
|
|
}
|
|
|
|
body.tc-dirty .tc-image-cloud-idle {
|
|
opacity: 0;
|
|
display: none;
|
|
}
|
|
|
|
body .tc-image-cloud-progress {
|
|
transition: opacity 250ms ease-in-out;
|
|
transform-origin: 50% 50%;
|
|
transform: rotate(359deg);
|
|
animation: animation-rotate-slow 2s infinite linear;
|
|
fill: <<colour background>>;
|
|
display: none;
|
|
opacity: 0;
|
|
}
|
|
|
|
body.tc-dirty .tc-image-cloud-progress {
|
|
opacity: 1;
|
|
display: unset;
|
|
}
|
|
|
|
@keyframes animation-rotate-slow {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: scale(359deg);
|
|
}
|
|
}
|