forked from mayswind/AriaNg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-task-table.css
43 lines (36 loc) · 922 Bytes
/
new-task-table.css
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
/* new-task-table */
.new-task-table {
margin-left: 15px;
margin-right: 15px;
}
@media screen and (orientation: landscape) {
.content > .new-task-table,
.tab-pane > .new-task-table {
margin-right: calc(15px + env(safe-area-inset-right));
}
}
.new-task-table > div.row {
padding-top: 8px;
padding-bottom: 8px;
}
@media screen and (orientation: landscape) {
.content > .new-task-table > div.row,
.tab-pane > .new-task-table > div.row {
margin-right: calc(-1 * calc(15px + env(safe-area-inset-right)));
padding-right: env(safe-area-inset-right);
}
}
.new-task-table > div.row:first-child {
border-top: inherit;
}
.new-task-table .new-task-toollink > a {
margin-right: 20px;
}
@media (max-width: 767px) {
.new-task-table .new-task-toollink > a {
display: block;
}
}
.settings-table .new-task-filter-title {
padding-top: 6px;
}