-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitemsettab.sass
74 lines (72 loc) · 1.61 KB
/
itemsettab.sass
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
div.tw2gui_window.TWDS_wide_window {
// more than 1440 and the layout breaks
--w: Min( Max(50vw,748px), 1400px);
// 845px max height because otherwise the top of tw2gui_bg_bg/bl is visible (black)
--h: Min( Max(66vh,471px) , 845px);
width: var(--w) !important;
height: var(--h) !important;
.tw2gui_window_inset {
left:0;
clip-path: polygon(12px 0, 100% 0, 100% 100%, 12px 100%);
background-size: calc( var(--w) - 14px) calc( var(--h) - 46px);
.tw2gui_inner_window_bg2 {
background-size: calc( var(--w) - 14px) calc( var(--h) - 46px);
width:20px;
right:0;
}
}
}
#TWDS_tab_itemsets,
.TWDS_itemset_window {
#TWDS_itemsettable_plus,
#TWDS_itemsettable_minus {
min-width:2em;
margin-right:0.5em;
}
.TWDS_itemsets_filterline {
display:flex;
justify-content:space-between;
div, label {
grid-row:1;
}
label:last-child {
grid-row:2;
grid-column: 3 / span 2;
}
}
.TWDS_itemsets_options select,
.TWDS_itemsets_options label {
margin-left:1em;
}
#TWDS_itemset_table {
border-collapse: collapse;
thead {
position:sticky;
top:0;
background-color: wheat;
}
td.perlevel {
font-style: italic;
}
td,
tbody th {
border:1px solid #888;
padding:2px;
font-size:inherit;
}
thead th {
border:1px solid #888;
padding:2px;
font-size:inherit;
}
thead tr.colspanrow th {
border-top:none;
}
tbody th.setname {
cursor:pointer;
}
}
}
body.TWDS_itemsettable_hidemany #TWDS_itemset_table .maybehidden {
display:none;
}