diff options
-rw-r--r-- | public/common/columbia.css | 5 | ||||
-rw-r--r-- | public/images/gui_box_maximize.svg | 3 | ||||
-rw-r--r-- | public/images/gui_box_minimize.svg | 3 |
3 files changed, 11 insertions, 0 deletions
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 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="16"> +<path stroke-width="3" stroke="#000" fill="none" d="M 14 5 L 8 11 L 2 5" /> +</svg> 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 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="16"> +<path stroke-width="3" stroke="#000" fill="none" d="M 14 11 L 8 5 L 2 11" /> +</svg> |