diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-04-16 23:17:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-16 23:17:38 +0100 |
commit | bb523447cb1233a3f2267b655da9a5033c29e384 (patch) | |
tree | 9ad34bf05311657b3e1ee3153d34a1276307e525 /interface/css/rspamd.css | |
parent | 4e11d4de1777225c383f4c382c28b49d006a18cc (diff) | |
parent | 745dbaa8edd6983ec96ff1b1aa5ea2056423dcea (diff) | |
download | rspamd-bb523447cb1233a3f2267b655da9a5033c29e384.tar.gz rspamd-bb523447cb1233a3f2267b655da9a5033c29e384.zip |
Merge pull request #4461 from moisseev/webui
[Minor] Fix pagination control border radius
Diffstat (limited to 'interface/css/rspamd.css')
-rw-r--r-- | interface/css/rspamd.css | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index e2011fa4d..913ba6aa6 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 */ @@ -197,17 +201,6 @@ table#symbolsTable input[type="number"] { color: #3a87ad; } -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} - /* widget */ .card-header, .modal-header { |