From 268300abcab16382e585410121afffb46e63527e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor?= Date: Fri, 12 Aug 2022 08:33:32 -0300 Subject: [PATCH 1/3] fix styles on safari and create var for button text --- style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 3c50f8d..944cd6b 100644 --- a/style.css +++ b/style.css @@ -9,6 +9,7 @@ --surface: #c0c0c0; --button-highlight: #ffffff; --button-face: #dfdfdf; + --button-text: #000; --button-shadow: #808080; --window-frame: #0a0a0a; --dialog-blue: #000080; @@ -130,11 +131,14 @@ u { button, input[type="submit"], input[type="reset"] { + all: unset; + color: var(--button-text); box-sizing: border-box; border: none; background: var(--surface); box-shadow: var(--border-raised-outer), var(--border-raised-inner); - border-radius: 0; + border-radius: 0px; + outline: none; min-width: 75px; min-height: 23px; From 4782e98cb92c9a2d070d952d1aa61e6733617a9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor?= Date: Mon, 24 Oct 2022 10:08:00 -0300 Subject: [PATCH 2/3] change color of button-text --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 944cd6b..b86b63c 100644 --- a/style.css +++ b/style.css @@ -9,7 +9,7 @@ --surface: #c0c0c0; --button-highlight: #ffffff; --button-face: #dfdfdf; - --button-text: #000; + --button-text: #222222; --button-shadow: #808080; --window-frame: #0a0a0a; --dialog-blue: #000080; From c2ef750205984d532358eefefea7a49537302d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor?= Date: Mon, 24 Oct 2022 14:34:16 -0300 Subject: [PATCH 3/3] undo unnecessary unit --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index b86b63c..bd5e862 100644 --- a/style.css +++ b/style.css @@ -137,7 +137,7 @@ input[type="reset"] { border: none; background: var(--surface); box-shadow: var(--border-raised-outer), var(--border-raised-inner); - border-radius: 0px; + border-radius: 0; outline: none; min-width: 75px;