diff options
author | moisseev <moiseev@mezonplus.ru> | 2020-07-01 13:12:18 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2020-07-01 13:12:18 +0300 |
commit | fb28a563f9f1b777d94de42e0babcb27fac30cc8 (patch) | |
tree | 17e7984abd6235ab10a1b755e16a86f0b107c80f /interface/js/app/history.js | |
parent | c9b7bcc6cc802d53e2860ec0e88e46a2a78bccae (diff) | |
download | rspamd-fb28a563f9f1b777d94de42e0babcb27fac30cc8.tar.gz rspamd-fb28a563f9f1b777d94de42e0babcb27fac30cc8.zip |
[WebUI] Migrate to Bootstrap 4.5
Diffstat (limited to 'interface/js/app/history.js')
-rw-r--r-- | interface/js/app/history.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 1bee39543..e9642d26a 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -138,10 +138,13 @@ define(["jquery", "footable"], name: "symbols", title: "Symbols<br /><br />" + '<span style="font-weight:normal;">Sort by:</span><br />' + - '<div class="btn-group btn-group-xs btn-sym-order-history" data-toggle="buttons">' + - '<button type="button" class="btn btn-default btn-sym-history-magnitude" value="magnitude">Magnitude</button>' + - '<button type="button" class="btn btn-default btn-sym-history-score" value="score">Value</button>' + - '<button type="button" class="btn btn-default btn-sym-history-name" value="name">Name</button>' + + '<div class="btn-group btn-group-toggle btn-group-xs btn-sym-order-history" data-toggle="buttons">' + + '<label type="button" class="btn btn-outline-secondary btn-sym-history-magnitude">' + + '<input type="radio" value="magnitude">Magnitude</label>' + + '<label type="button" class="btn btn-outline-secondary btn-sym-history-score">' + + '<input type="radio" value="score">Value</label>' + + '<label type="button" class="btn btn-outline-secondary btn-sym-history-name">' + + '<input type="radio" value="name">Name</label>' + "</div>", breakpoints: "all", style: { |