1/*
2 * Gero Gothe <gero.gothe@medizindoku.de>
3 *
4 * License: GPL2
5 *
6 */
7
8
9/* div-class fr one group of text modules */
10.plugin_textmodule_box {
11    background:#e3e3e3;
12    margin-top:3px;
13    margin-right:2px;
14    padding:2px;
15    height:1.2em;
16    overflow:hidden;
17    width:10em;
18    display:inline-block;
19    cursor:pointer;
20}
21
22/* div class for one group when expanded */
23.plugin_textmodule_box_active {
24    background:#e3e3e3;
25    margin-top:3px;
26    padding:4px;
27    height:1.2em;
28    overflow:hidden;
29    height:auto;
30    display:block;
31    cursor:pointer;
32}
33
34
35.plugin_textmodule_link {
36    background: #d8fbff;
37    margin: 2px;
38    padding: 3px 5px;
39    border-radius: 7px;
40    display: inline-block;
41
42}
43
44
45.plugin_textmodule_link:hover {
46    background: lightsteelblue;
47}
48