tree.css (907B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 html, 6 body { 7 height: 100%; 8 overflow: hidden; 9 } 10 .layerObjectDescription:hover { 11 background-color: #e8e8e8; 12 } 13 14 .layerHover > .layerPreview::after { 15 position: absolute; 16 top: 0; 17 right: 0; 18 bottom: 0; 19 left: 0; 20 content: ""; 21 background-color: rgba(0, 0, 0, 0.2); 22 box-shadow: -2px 2px 0 #fff; 23 } 24 25 @keyframes layerHoverAnimation { 26 0% { 27 transform: scale(1); 28 } 29 50% { 30 transform: scale(1.2); 31 } 32 100% { 33 transform: scale(1); 34 } 35 } 36 37 .displayHover { 38 background: rgba(0, 128, 0, 0.8); 39 } 40 41 .layerHover > .layerPreview { 42 animation: layerHoverAnimation 200ms; 43 background: gold !important; 44 box-shadow: 10px 10px 5px #888888; 45 border-color: blue !important; 46 z-index: 10; 47 }