buttons: Override outline style in action-button and icon-button.

This commit overrides the common button outline style set in zulip.css
and dark_theme.css for the button tag.
This commit is contained in:
Sayam Samal
2025-01-09 00:56:28 +05:30
committed by Tim Abbott
parent 65f33e041c
commit 2ddcd00169

View File

@@ -29,6 +29,11 @@
); );
scale: 0.96; scale: 0.96;
} }
&:focus {
/* Override common button outline style set in zulip.css and dark_theme.css */
outline: none;
}
} }
.action-button-label { .action-button-label {
@@ -365,6 +370,11 @@
cursor: pointer; cursor: pointer;
border: none; border: none;
border-radius: 4px; border-radius: 4px;
&:focus {
/* Override common button outline style set in zulip.css and dark_theme.css */
outline: none;
}
} }
.icon-button-neutral { .icon-button-neutral {