blob: aece1484b687bdc64f72a3637a86526ceee9a8dc (
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
26
27
28
29
30
31
32
33
34
|
// Layout
#layout.wide-layout .item-table th.has-plugin-output {
width: 50em;
}
#layout.default-layout .item-table th.has-plugin-output {
width: 30em;
}
#layout.compact-layout .item-table th.has-plugin-output {
width: 10em;
}
#layout.twocols table.item-table {
.has-plugin-output {
width: auto;
}
}
table.item-table {
th.has-visual {
button {
display: inline-flex;
justify-content: center;
}
span > .icon:before {
margin: 0;
}
}
.visual {
text-align: center;
}
}
|