From 32586972a9c441a33d302ed24f525541c935ba74 Mon Sep 17 00:00:00 2001 From: Rohini <109434545+rohini-ranjanR@users.noreply.github.com> Date: Wed, 8 Mar 2023 09:42:37 +0530 Subject: [PATCH 1/7] fix(css): fix contrast of overscroll-behaviour --- .../css-examples/basic-box-model/overscroll-behavior.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live-examples/css-examples/basic-box-model/overscroll-behavior.css b/live-examples/css-examples/basic-box-model/overscroll-behavior.css index d38092a25..076a8b213 100644 --- a/live-examples/css-examples/basic-box-model/overscroll-behavior.css +++ b/live-examples/css-examples/basic-box-model/overscroll-behavior.css @@ -15,7 +15,7 @@ #example-element { width: 50%; height: 12em; - border: medium dotted #1b76c4; + border: medium dotted #009e5f; padding: 0.3em; margin: 0 0.3em; text-align: left; From 3d64c9ea2b9333e4d9963d9970caedfd2471b9d6 Mon Sep 17 00:00:00 2001 From: Rohini <109434545+rohini-ranjanR@users.noreply.github.com> Date: Wed, 8 Mar 2023 09:58:44 +0530 Subject: [PATCH 2/7] css(fix): css fix contrast of scroll-behaviour --- live-examples/css-examples/cssom-view/scroll-behavior.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/live-examples/css-examples/cssom-view/scroll-behavior.css b/live-examples/css-examples/cssom-view/scroll-behavior.css index fcb1ccda4..44bfde653 100644 --- a/live-examples/css-examples/cssom-view/scroll-behavior.css +++ b/live-examples/css-examples/cssom-view/scroll-behavior.css @@ -3,6 +3,10 @@ flex-direction: column; } +.nav a { + color: #009e5f; +} + scroll-container { border: 1px solid black; display: block; From d7c6e77157128ca4e15f54b99cb6bf384e8e2a00 Mon Sep 17 00:00:00 2001 From: Rohini <109434545+rohini-ranjanR@users.noreply.github.com> Date: Wed, 8 Mar 2023 10:17:33 +0530 Subject: [PATCH 3/7] fix: change color according to the contrast --- live-examples/css-examples/text-decoration/text-emphasis.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/live-examples/css-examples/text-decoration/text-emphasis.html b/live-examples/css-examples/text-decoration/text-emphasis.html index c93e6b439..c1affed36 100644 --- a/live-examples/css-examples/text-decoration/text-emphasis.html +++ b/live-examples/css-examples/text-decoration/text-emphasis.html @@ -7,7 +7,7 @@
text-emphasis: filled red;
+ text-emphasis: filled #ffb703;
@@ -21,7 +21,7 @@
text-emphasis: filled double-circle blue;
+ text-emphasis: filled double-circle #009e5f;
From fec47413daba4a9a4ae184e5715bba403b22eb1b Mon Sep 17 00:00:00 2001
From: Rohini <109434545+rohini-ranjanR@users.noreply.github.com>
Date: Wed, 8 Mar 2023 10:28:09 +0530
Subject: [PATCH 4/7] fix: css color
---
live-examples/css-examples/text-decoration/text-emphasis.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/live-examples/css-examples/text-decoration/text-emphasis.html b/live-examples/css-examples/text-decoration/text-emphasis.html
index c1affed36..18e8e61f2 100644
--- a/live-examples/css-examples/text-decoration/text-emphasis.html
+++ b/live-examples/css-examples/text-decoration/text-emphasis.html
@@ -21,7 +21,7 @@
text-emphasis: filled double-circle #009e5f;
+ text-emphasis: filled double-circle #ffb703;
From 95abe2883e8d84a142aae61495076aa28746bdf3 Mon Sep 17 00:00:00 2001
From: Rohini <109434545+rohini-ranjanR@users.noreply.github.com>
Date: Wed, 8 Mar 2023 10:35:20 +0530
Subject: [PATCH 5/7] fix: css add color in offsets.css
Contrast with offsets has been merged but in the light theme, the text is in black. This commit is related to solving that issues.
---
live-examples/css-examples/positioned-layout/offsets.css | 1 +
1 file changed, 1 insertion(+)
diff --git a/live-examples/css-examples/positioned-layout/offsets.css b/live-examples/css-examples/positioned-layout/offsets.css
index e52190ade..22e7e3be8 100644
--- a/live-examples/css-examples/positioned-layout/offsets.css
+++ b/live-examples/css-examples/positioned-layout/offsets.css
@@ -10,6 +10,7 @@
#example-element {
background-color: #264653;
border: 4px solid #ffb500;
+ color: white;
position: absolute;
width: 140px;
height: 60px;
From c26dcd1b832b4b63e1ef96fb71aea8e70a42050a Mon Sep 17 00:00:00 2001
From: Rohini <109434545+rohini-ranjanR@users.noreply.github.com>
Date: Tue, 14 Mar 2023 15:32:10 +0530
Subject: [PATCH 6/7] restore border color
---
.../css-examples/basic-box-model/overscroll-behavior.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/live-examples/css-examples/basic-box-model/overscroll-behavior.css b/live-examples/css-examples/basic-box-model/overscroll-behavior.css
index 076a8b213..d38092a25 100644
--- a/live-examples/css-examples/basic-box-model/overscroll-behavior.css
+++ b/live-examples/css-examples/basic-box-model/overscroll-behavior.css
@@ -15,7 +15,7 @@
#example-element {
width: 50%;
height: 12em;
- border: medium dotted #009e5f;
+ border: medium dotted #1b76c4;
padding: 0.3em;
margin: 0 0.3em;
text-align: left;
From 19e352d1870a7e7a650dcad81c5c35aa9797ee95 Mon Sep 17 00:00:00 2001
From: Rohini <109434545+rohini-ranjanR@users.noreply.github.com>
Date: Tue, 14 Mar 2023 15:33:23 +0530
Subject: [PATCH 7/7] restore code color
---
live-examples/css-examples/text-decoration/text-emphasis.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/live-examples/css-examples/text-decoration/text-emphasis.html b/live-examples/css-examples/text-decoration/text-emphasis.html
index 18e8e61f2..98c9ee1bb 100644
--- a/live-examples/css-examples/text-decoration/text-emphasis.html
+++ b/live-examples/css-examples/text-decoration/text-emphasis.html
@@ -7,7 +7,7 @@
text-emphasis: filled #ffb703;
+ text-emphasis: filled red;