mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
Added a class to rotate elements and some style rules
This commit is contained in:
parent
31b41f395f
commit
c86eaff51f
@ -2923,4 +2923,47 @@ table#policy_modules td * {
|
|||||||
.tree-node>.leaf-icon {
|
.tree-node>.leaf-icon {
|
||||||
background-position: 0px 0px;
|
background-position: 0px 0px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-node-counters, .tree-node-counter {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-node-counters {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-node-counter {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 7pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* The items with the class 'spinner' will rotate */
|
||||||
|
/* Not supported on IE9 and below */
|
||||||
|
.spinner {
|
||||||
|
-webkit-animation: spinner 2s infinite linear;
|
||||||
|
animation: spinner 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes spinner {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spinner {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user