1@import "less/editable.less";
2
3form#tagging__edit {
4    display: none;
5
6    input.edit {
7        width: 95%;
8    }
9}
10
11#tagging__edit_buttons_group {
12    .ui-checkboxradio-icon {
13        background-color: transparent;
14    }
15}
16
17ul.tagging_cloud {
18    text-align: center;
19    margin: 0;
20    width: 95%;
21    line-height: 2.2em;
22
23    li {
24        display: inline;
25        list-style-type: none;
26        margin: 0;
27    }
28
29     div.li {
30        display: inline-block;
31        margin: 0 0.5em;
32    }
33
34    li.t0 {
35        font-size: 1em;
36    }
37
38    li.t1 {
39        font-size: 1.1em;
40    }
41
42    li.t2 {
43        font-size: 1.2em;
44    }
45
46    li.t3 {
47        font-size: 1.3em;
48    }
49
50    li.t4 {
51        font-size: 1.4em;
52    }
53
54    li.t5 {
55        font-size: 1.5em;
56    }
57
58    li.t6 {
59        font-size: 1.6em;
60    }
61
62    li.t7 {
63        font-size: 1.7em;
64    }
65
66    li.t8 {
67        font-size: 1.8em;
68    }
69
70    li.t9 {
71        font-size: 1.9em;
72    }
73
74    li.t10 {
75        font-size: 2em;
76    }
77}
78
79button.plugin_tagging.sort_button,
80button.plugin_tagging.action_button {
81    display: inline-block;
82    margin: 0;
83    padding: 0;
84    border: none;
85    background: transparent;
86    color: #2b73b7;
87
88    &:hover {
89        text-decoration: underline;
90    }
91    &:focus {
92        outline:0;
93    }
94
95    svg {
96        display: inline-block;
97        vertical-align: middle;
98        width: 10px;
99        height: 10px;
100    }
101}
102
103button.plugin_tagging.action_button {
104    padding: 2px;
105    svg {
106        width: 22px;
107        height: 22px;
108        margin-right: 10px;
109    }
110}
111
112#tagging__action-dialog .warning {
113    color: #ff0000;
114    margin: 10px 0 10px 0;
115}
116
117#tagging__taggedpages-dialog {
118    ul {
119        margin: 10px 0 0 0;
120        padding: 0;
121    }
122}
123
124table.plugin_tagging {
125    width: 100%;
126    table-layout: fixed;
127
128    .narrow-col {
129        width: 100px;
130    }
131    .full-col {
132        width: 100%;
133    }
134    .wide-col {
135        width: 300px;
136    }
137}
138