1/**
2 * @file       gil/style.css
3 * @brief      Stylesheet for Gil Plugin [screen]
4 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
5 * @author     Luis Machuca B. <luis.machuca [at] gulix.cl>
6 * @version    0.4
7 *
8 *
9 */
10
11.dokuwiki .gil {
12  position: relative;
13  margin-bottom: 1px;
14  border-bottom: 1px dotted blue;
15  }
16
17.dokuwiki .gil > .tooltip {
18  display: none;
19  font-size: 90%;
20  }
21
22.dokuwiki .gil:hover > .tooltip {
23  display: block;
24  position: absolute;
25  left: 0;
26  min-width: 8em;
27  font-size: 90%;
28  text-align: center;
29  white-space: nowrap;
30  background-color: __background_alt__;
31  margin-bottom: 1px;
32  padding: 0 2px;
33  border: 1px solid blue;
34  border-radius: 4px;
35
36  }
37
38