diff options
author | moisseev <moiseev@mezonplus.ru> | 2023-04-13 12:40:53 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2023-04-13 16:48:02 +0300 |
commit | 02bb7ac7d59634e4c5acd437d3f85d78f4b0b95d (patch) | |
tree | 3c7da124fb603b169e2a53c9d496ed79d8462795 /interface/css | |
parent | e24c536e5989e2b6d46cd8fb35667c860a175324 (diff) | |
download | rspamd-02bb7ac7d59634e4c5acd437d3f85d78f4b0b95d.tar.gz rspamd-02bb7ac7d59634e4c5acd437d3f85d78f4b0b95d.zip |
[Minor] Fix pagination control border radius
Diffstat (limited to 'interface/css')
-rw-r--r-- | interface/css/rspamd.css | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index e2011fa4d..307404401 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -94,6 +94,14 @@ fieldset[disabled] .btn { width: 1%; } +a { + outline: none; +} +textarea { + font-family: "Courier New", Courier, monospace; + resize: vertical; +} + /* Tweak FooTable for Bootstrap 4 */ .footable .dropdown-toggle::after { content: none; @@ -113,13 +121,9 @@ fieldset[disabled] .btn { .footable-header .fooicon { font-size: 12px; } - -a { - outline: none; -} -textarea { - font-family: "Courier New", Courier, monospace; - resize: vertical; +.footable .pagination > li:last-child > a { + border-top-right-radius:4px; + border-bottom-right-radius:4px } /* local overrides */ |