mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 22:23:28 +00:00
* Add tailwind to desktop * Add tailwind to browser * Toy around with using CL in desktop * Move custom css into the tailwind theme * Revert component experiment * Add components to browser tsconfig * Fix build
20 lines
548 B
CSS
20 lines
548 B
CSS
/**
|
|
* Tailwind doesn't have a good way to style search-cancel-button.
|
|
*/
|
|
bit-search input[type="search"]::-webkit-search-cancel-button {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
height: 21px;
|
|
width: 21px;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
background-repeat: no-repeat;
|
|
mask-image: url("./close-button.svg");
|
|
-webkit-mask-image: url("./close-button.svg");
|
|
background-color: rgba(var(--color-text-muted));
|
|
}
|
|
|
|
bit-search input[type="search"]::-webkit-search-cancel-button:hover {
|
|
background-color: rgba(var(--color-text-main));
|
|
}
|