diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-12 14:28:08 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-12 14:28:08 -0400 |
commit | b7060b33ef317eeac576c504b1fb840d4471e411 (patch) | |
tree | 8acf657eda4df76285905fc5e774aacecb02f488 /assets | |
parent | deeebd8e72a13fcbe6d357aefed9130671ee5161 (diff) |
Add pagination/column sorting for search and completed tasks
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/app.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/assets/css/app.css b/assets/css/app.css index 45b550a6..185c98ec 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -125,6 +125,16 @@ td li { background: rgb(219, 235, 255) } +th a { + text-decoration: none; + color: #333; +} + +th a:focus, +th a:hover { + text-decoration: underline; +} + /* forms */ form { padding: 10px; @@ -1129,6 +1139,19 @@ tr td.task-orange, font-size: 0.8em; } +/* pagination */ +#pagination { + text-align: center; +} + +#pagination-next { + margin-left: 5px; +} + +#pagination-previous { + margin-right: 5px; +} + /* responsive design */ @media only screen and (min-width : 768px) and (max-width : 1024px) { |