浏览代码

webhtml: make top table header sticky (#518)

This keeps the column names visible when scrolling down, which comes in
handy when there are many entries.
Bilal Amarni 5 年前
父节点
当前提交
7d83b28da2
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      internal/driver/webhtml.go

+ 2
- 0
internal/driver/webhtml.go 查看文件

@@ -200,6 +200,8 @@ table thead {
200 200
   font-family: 'Roboto Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
201 201
 }
202 202
 table tr th {
203
+  position: sticky;
204
+  top: 0;
203 205
   background-color: #ddd;
204 206
   text-align: right;
205 207
   padding: .3em .5em;