diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm index a57653b28fe0d53bf7513905ddb2ebcb5e140afe..56816ed080a59d94067498973f614cca700271dd 100644 --- a/src/cuirass/templates.scm +++ b/src/cuirass/templates.scm @@ -506,20 +506,21 @@ system whose names start with " (code "guile-") ":" (br) (td ,(input-changes (assq-ref row #:checkouts))) (td ,@(evaluation-badges row)) (td - (div (@ (class "dropdown")) - (a (@ (class "oi oi-menu dropdown-toggle") - (href "#") - (data-toggle "dropdown") - (role "button") - (aria-haspopup "true") - (aria-expanded "false")) - " ") - (div (@ (class "dropdown-menu")) - (a (@ (class "dropdown-item") - (href "/admin/evaluation/" - ,(assq-ref row #:id) - "/restart")) - "Restart")))))) + (div + (@ (class "dropdown")) + (a (@ (class "oi oi-menu dropdown-toggle no-dropdown-arrow") + (href "#") + (data-toggle "dropdown") + (role "button") + (aria-haspopup "true") + (aria-expanded "false")) + " ") + (div (@ (class "dropdown-menu")) + (a (@ (class "dropdown-item") + (href "/admin/evaluation/" + ,(assq-ref row #:id) + "/restart")) + "Restart")))))) evaluations))))) ,(if (null? evaluations) (pagination "" "" "" "") diff --git a/src/static/css/cuirass.css b/src/static/css/cuirass.css index 4e97c3deb4730dc09acf84bf0671180a445baf1e..e713b6ffa4849873ccb9344030e260ed8066855d 100644 --- a/src/static/css/cuirass.css +++ b/src/static/css/cuirass.css @@ -37,3 +37,8 @@ a.dropdown-toggle:focus + .dropdown-menu { visibility: hidden; transition: visibility 0.5s; } + +/* Remove the dropdown-toggle arrow. */ +.no-dropdown-arrow::after { + content: none; +}