Skip to content
Snippets Groups Projects
Unverified Commit efb140d3 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

Remove the evaluation restart dropdown arrow.

* src/cuirass/templates.scm: Remove the evaluation restart dropdown arrow.
* src/static/css/cuirass.css (no-dropdown-arrow): New rule.
parent 64151eee
No related branches found
No related tags found
No related merge requests found
......@@ -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 "" "" "" "")
......
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment