From 325a43a428300123acbdab846c324bf4fb20b4e5 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 22 Oct 2023 14:30:15 +0200 Subject: Add icons indicate battle boxes can be minimized. --- public/common/columbia.css | 5 +++++ public/images/gui_box_maximize.svg | 3 +++ public/images/gui_box_minimize.svg | 3 +++ 3 files changed, 11 insertions(+) create mode 100644 public/images/gui_box_maximize.svg create mode 100644 public/images/gui_box_minimize.svg (limited to 'public') diff --git a/public/common/columbia.css b/public/common/columbia.css index 209918d..6d94e65 100644 --- a/public/common/columbia.css +++ b/public/common/columbia.css @@ -35,11 +35,16 @@ overflow: hidden; list-style: none; cursor: s-resize; + + background-repeat: no-repeat; + background-position: 100% 50%; + background-image: url(/images/gui_box_maximize.svg); } #battle[open] #battle_header { cursor: n-resize; border-bottom: 1px solid black; + background-image: url(/images/gui_box_minimize.svg); } #battle_message { diff --git a/public/images/gui_box_maximize.svg b/public/images/gui_box_maximize.svg new file mode 100644 index 0000000..346fba0 --- /dev/null +++ b/public/images/gui_box_maximize.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/images/gui_box_minimize.svg b/public/images/gui_box_minimize.svg new file mode 100644 index 0000000..2be8eec --- /dev/null +++ b/public/images/gui_box_minimize.svg @@ -0,0 +1,3 @@ + + + -- cgit v1.2.3