-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.less
115 lines (96 loc) · 2.19 KB
/
index.less
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.rootpage-Special_BulkMove {
#firstHeading {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-end;
> div {
font-size: 0.6em;
}
}
#bodyContent {
padding-right: 0 !important;
#mw-content-text {
h3 {
margin-bottom: 0;
}
ul.bm-notelist {
margin: 0.4em 0 0 1.6em;
}
}
}
}
#bm-page-list-table {
border-collapse: collapse;
width: 100%;
max-width: 900px;
tbody {
counter-reset: row-counter;
tr {
counter-increment: row-counter;
&::before {
content: counter(row-counter);
display: table-cell;
width: 0;
padding-right: 0.3em;
text-align: center;
vertical-align: middle;
}
td {
padding: 0;
border: 1px solid #aaa;
background-color: rgb(255 255 255 / 70%);
}
th,
td {
&:last-child {
border: none;
width: 20px;
background-position: center;
background-color: transparent;
}
}
}
}
input[type="text"] {
box-sizing: border-box;
width: 100%;
height: 100%;
padding: 0.4em;
border: none;
border-radius: 0;
background: transparent;
&:focus {
outline: none;
background-color: rgb(127 127 127 / 2%);
}
}
#bm-add-row,
.remove-row {
width: 20px;
height: 20px;
cursor: pointer;
border-radius: 50%;
transition: 0.2s ease background-color;
&:hover {
background-color: rgb(127 127 127 / 20%);
}
}
}
#bm-option {
margin-top: 0.8em;
> div {
margin-top: 0.3em;
}
}
#bm-submit-panel {
display: flex;
gap: 0.1rem;
margin-top: 0.8em;
#bm-interval {
flex: 0 0 5.5em;
}
#bm-summary {
max-width: initial;
}
}