diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index c58d0c3cd1..e947342d02 100755 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -2923,4 +2923,47 @@ table#policy_modules td * { .tree-node>.leaf-icon { background-position: 0px 0px; 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); + } } \ No newline at end of file