Skip to content

Commit 12d8cee

Browse files
authored
Enhanced table interface inside the dashboard (#1022)
1 parent 8b356c0 commit 12d8cee

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
11
[[extend "layout.html"]]
2+
3+
<style>
4+
html,
5+
body {
6+
overflow-x: visible;
7+
}
8+
9+
.grid-table-wrapper {
10+
overflow-x: visible;
11+
}
12+
</style>
13+
14+
<style>
15+
header {
16+
background-color: #111;
17+
}
18+
19+
nav {
20+
width: auto;
21+
}
22+
23+
@media (min-width: 600px) {
24+
nav>ul>li {
25+
padding: 0.5em 0.5em;
26+
}
27+
}
28+
29+
div:has(> flash-alerts) {
30+
height: 6px;
31+
}
32+
33+
h2 {
34+
margin-top: 0px;
35+
font-size: 1.5em;
36+
}
37+
38+
.padded {
39+
max-width: unset;
40+
padding-top: 0;
41+
}
42+
43+
.grid-search-form-table {
44+
width: 70vw;
45+
}
46+
47+
.grid-search-form-tr:hover {
48+
background-color: transparent;
49+
}
50+
51+
td,
52+
th {
53+
padding: 1px 8px;
54+
}
55+
</style>
56+
257
<h2>Table "[[=table_name]]"</h2>
358
[[=grid]]

0 commit comments

Comments
 (0)