This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site.git
The following commit(s) were added to refs/heads/main by this push:
new 32fe84824a Updated the button ui for dark theme (#1340)
32fe84824a is described below
commit 32fe84824acefaf2ccd69b33496f197a50c031a4
Author: Shashiranjan singh <[email protected]>
AuthorDate: Fri Dec 19 02:17:38 2025 +0530
Updated the button ui for dark theme (#1340)
---
landing-pages/site/assets/scss/_buttons.scss | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/landing-pages/site/assets/scss/_buttons.scss
b/landing-pages/site/assets/scss/_buttons.scss
index 0b734d850d..2d62529462 100644
--- a/landing-pages/site/assets/scss/_buttons.scss
+++ b/landing-pages/site/assets/scss/_buttons.scss
@@ -58,6 +58,18 @@ button {
}
}
+ [data-bs-theme="dark"] &.btn-with-icon {
+ span {
+ color: white;
+ }
+
+ svg {
+ path {
+ fill: white;
+ }
+ }
+ }
+
&.btn-hollow {
background-color: map_get($colors, white);
@@ -107,14 +119,14 @@ button {
}
[data-bs-theme="dark"] &.btn-hollow {
- background-color: transparent;
+ background-color: #1e1919;
&.btn-brown {
- border-color: rgba(255, 255, 255, 0.2);
+ border-color: rgba(255, 255, 255, 0.3);
&:hover {
background-color: rgba(255, 255, 255, 0.1);
- border-color: rgba(255, 255, 255, 0.3);
+ border-color: rgba(255, 255, 255, 0.4);
}
}
}