From 175b38ad2bd25d8bbc3f7172d41a6458f16cadd0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tobias=20J=C3=BClg?= <tobias.juelg@tum.de>
Date: Sun, 8 May 2022 12:03:23 +0200
Subject: [PATCH] Different color for close buttons, version 1.0.5

* version 1.0.5
* close buttons are now btn-secondary which makes them grey instead of
white
---
 management/templates/management/index.html                 | 2 +-
 management/templates/management/session_election_item.html | 2 +-
 wahlfang/__init__.py                                       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/management/templates/management/index.html b/management/templates/management/index.html
index 9d304f8..f92fe2d 100644
--- a/management/templates/management/index.html
+++ b/management/templates/management/index.html
@@ -49,7 +49,7 @@
               {% csrf_token %}
               <button type="submit" class="btn btn-danger">Delete</button>
             </form>
-            <button type="button" class="btn btn-light" data-dismiss="modal">Close</button>
+            <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
           </div>
         </div>
       </div>
diff --git a/management/templates/management/session_election_item.html b/management/templates/management/session_election_item.html
index e305394..5c05437 100644
--- a/management/templates/management/session_election_item.html
+++ b/management/templates/management/session_election_item.html
@@ -41,7 +41,7 @@
             {% csrf_token %}
             <button type="submit" class="btn btn-danger">Delete</button>
           </form>
-          <button type="button" class="btn btn-light" data-dismiss="modal">Close</button>
+          <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
         </div>
       </div>
     </div>
diff --git a/wahlfang/__init__.py b/wahlfang/__init__.py
index 8a81504..858de17 100644
--- a/wahlfang/__init__.py
+++ b/wahlfang/__init__.py
@@ -1 +1 @@
-__version__ = '1.0.4'
+__version__ = '1.0.5'
-- 
GitLab