From 8aea2800573afbd8f6606463ce1d3281e2309b64 Mon Sep 17 00:00:00 2001
From: Arnaud Levy <contact@arnaudlevy.com>
Date: Thu, 13 Jul 2023 12:31:33 +0200
Subject: [PATCH] Fix #1149

---
 app/assets/stylesheets/admin/pure/variables.sass       | 2 +-
 app/views/admin/layouts/themes/pure/_commands.html.erb | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/assets/stylesheets/admin/pure/variables.sass b/app/assets/stylesheets/admin/pure/variables.sass
index 1e3305457..8a241f2b7 100644
--- a/app/assets/stylesheets/admin/pure/variables.sass
+++ b/app/assets/stylesheets/admin/pure/variables.sass
@@ -6,7 +6,7 @@ $color-border: rgba(0, 0, 0, 0.1)
 $color-background-alt: #F2F2F2
 $color-background: #FFFFFF
 
-$color-commands: #222222
+$color-commands: $color-background-alt
 
 $color-valid: #BEDABE
 
diff --git a/app/views/admin/layouts/themes/pure/_commands.html.erb b/app/views/admin/layouts/themes/pure/_commands.html.erb
index 395c23411..3d54ff383 100644
--- a/app/views/admin/layouts/themes/pure/_commands.html.erb
+++ b/app/views/admin/layouts/themes/pure/_commands.html.erb
@@ -1,6 +1,6 @@
 <% if content_for?(:action_bar_left) or content_for?(:action_bar_right) %>
-  <div class="commands">
-    <div class="p-3 d-flex">
+  <div class="commands container-fluid">
+    <div class="d-flex py-3">
       <div>
         <%= yield :action_bar_left %>
       </div>
-- 
GitLab