aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/graph-tooltip-window/graph-tooltip-window.styl
blob: ec94023e7829a0c70ca248b08a8aa7fb9c570d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Set the component style here */
// "GraphTooltipWindow"
.os-graph-tooltip-window
  visibility: hidden;

  position: absolute;
  text-align: left;
  opacity: 0
  font: normal 18px sans-serif !important;
  /* width: 60px; */
  /* height: 28px; */
  padding: 20px;
  font: 16px sans-serif;
  background: dk-gray1;
  color white
  border: 2px solid stark-blue
  pointer-events: none;

  transition: visibility 0.5s, opacity 0.5s linear

.os-graph-tooltip-window.cl-visible 
  visibility: visible
  opacity: 0.9
  transition: visibility 0.2s, opacity 0.2s linear