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/client.css') 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 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/client.css') 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 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/client.css') 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/client.css') 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