From b944d2157d28de12fabd1ebd11dab44c3ce138ef Mon Sep 17 00:00:00 2001 From: sD Date: Mon, 13 Apr 2020 19:13:02 +0200 Subject: fix nonexistant char icons being below the others --- webAO/styles/client.css | 1 + 1 file changed, 1 insertion(+) (limited to 'webAO/styles') diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 4063b67..4c15f93 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -126,6 +126,7 @@ max-height: 60px; margin: 3px; border: 1px solid #000; + vertical-align: top; } #client_icwrapper { -- cgit From 3d6b78dc38bfacaf5ee389cb93fc0300ee0a5da2 Mon Sep 17 00:00:00 2001 From: sD Date: Tue, 14 Apr 2020 00:00:28 +0200 Subject: add bars to evidence screen --- webAO/styles/classic.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'webAO/styles') diff --git a/webAO/styles/classic.css b/webAO/styles/classic.css index c87d76d..467419c 100644 --- a/webAO/styles/classic.css +++ b/webAO/styles/classic.css @@ -82,6 +82,14 @@ img { } } +hr { + height: 6px; + width: 100%; + background-color: #c6c6c6; + background: repeating-linear-gradient(to right,#f7f7f7, #f7f7f7 1px, #8c8c8c 1px, #8c8c8c 2px, #c6c6c6 2px, #c6c6c6 16px); + margin: 0; +} + #client_chatcontainer { filter: none; } -- cgit From edcbe700ec60cecc0b9d519643b0e4cdfd15a0c1 Mon Sep 17 00:00:00 2001 From: sD Date: Tue, 14 Apr 2020 00:29:23 +0200 Subject: match AA style for evidence icon --- webAO/styles/client.css | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'webAO/styles') diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 4c15f93..187e4ca 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -323,11 +323,8 @@ .evi_icon { width: 70px; height: 70px; - background-color: #787878; - outline-color: #886060; - outline-width: 1px; - outline-style: inset; - outline-offset: -1px; + background-color: #7b7b7b; + border: 2px ridge #ffffff; } #evi_options { -- cgit From b99c63d4e1807e1b1fd55d2e0600f448e44730d2 Mon Sep 17 00:00:00 2001 From: sD Date: Tue, 14 Apr 2020 00:29:36 +0200 Subject: remove borders from the boxes in classic theme --- webAO/styles/classic.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'webAO/styles') diff --git a/webAO/styles/classic.css b/webAO/styles/classic.css index 467419c..b8ab269 100644 --- a/webAO/styles/classic.css +++ b/webAO/styles/classic.css @@ -169,10 +169,15 @@ hr { #evi_name { background-color: #393939; color: #ffad18; + border: none; } #evi_desc { flex: 1 auto; + border-top: 1px solid #6b946b; + border-left: 1px solid #6b946b; + border-right: none; + border-bottom: none; background-color: #9cc694; } -- cgit From 06fe5565c0e6ccdaf59f1f6ff5995a16e6c8b6f4 Mon Sep 17 00:00:00 2001 From: sD Date: Tue, 14 Apr 2020 00:36:09 +0200 Subject: draw border on top of the ugly border most evis have --- webAO/styles/client.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'webAO/styles') diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 187e4ca..eb53391 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -322,14 +322,18 @@ .evi_icon { width: 70px; + min-width: 70px; height: 70px; background-color: #7b7b7b; - border: 2px ridge #ffffff; + outline: 2px ridge #fff; + outline-offset: -2px; } #evi_options { display: inline-block; - padding-left: 5px; + width: 100%; + margin-left: 2px; + border: 2px ridge white; } #evi_options label { -- cgit From 8911a595df1d37ac02e53e97c0b523ceeb3e543e Mon Sep 17 00:00:00 2001 From: sD Date: Tue, 14 Apr 2020 00:36:38 +0200 Subject: add some space between the icons --- webAO/styles/client.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webAO/styles') diff --git a/webAO/styles/client.css b/webAO/styles/client.css index eb53391..fa020ef 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -327,12 +327,12 @@ background-color: #7b7b7b; outline: 2px ridge #fff; outline-offset: -2px; + margin-right: 2px; } #evi_options { display: inline-block; width: 100%; - margin-left: 2px; border: 2px ridge white; } -- cgit