about summary refs log tree commit diff
path: root/web/panettone/src/css.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'web/panettone/src/css.lisp')
-rw-r--r--web/panettone/src/css.lisp16
1 files changed, 15 insertions, 1 deletions
diff --git a/web/panettone/src/css.lisp b/web/panettone/src/css.lisp
index fe6cad66b1..0192b816ea 100644
--- a/web/panettone/src/css.lisp
+++ b/web/panettone/src/css.lisp
@@ -4,6 +4,9 @@
 (defparameter color/black
   "rgb(24, 24, 24)")
 
+(defparameter color/light-gray
+  "#EEE")
+
 (defparameter color/gray
   "#8D8D8D")
 
@@ -105,7 +108,8 @@
     ((:and input (:= type "submit"))
      :-webkit-appearance "none"
      :border "none"
-     :cursor "pointer")
+     :cursor "pointer"
+     :font-size "1rem")
 
     ,@(button '(:and input (:= type "submit")))
 
@@ -126,6 +130,16 @@
      :justify-content "space-between"
      :align-items "center"
 
+     ,@(button '.edit-issue)
+
+     (.created-by-at
+      :flex 1)
+
+     (.edit-issue
+      :background-color ,color/light-gray
+      :flex 0
+      :margin-right "0.5rem")
+
      (.close-issue
       :background-color ,color/failure))))