comparison src/DML/MainVisBundle/Resources/assets/bem-blocks/tooltip.less @ 0:493bcb69166c

added public content
author Daniel Wolff
date Tue, 09 Feb 2016 20:54:02 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:493bcb69166c
1 @import "../config.less";
2
3 .tooltip {
4 .font_small();
5 position: absolute;
6 opacity: 0;
7 pointer-events: none;
8 background: rgba(0, 0, 0, 0.8);
9 border-radius: @--border-radius;
10 color: rgba(255, 255, 255, 0.8);
11 padding: 5px;
12 z-index: @z-index_tooltip;
13 white-space: nowrap;
14
15 &_animation_slow-opacity {
16 -moz-transition: opacity 0.5s ease-in-out;
17 -webkit-transition: opacity 0.5s ease-in-out;
18 transition: opacity 0.5s ease-in-out;
19 }
20
21 &_state_visible {
22 opacity: 1;
23 }
24 }