feat(SearchOptions): add Chrome policy warning for search engine selection removal

This commit is contained in:
alexsparkes
2025-10-28 19:41:30 +00:00
parent e1ad5d490b
commit 0e852e8a89
5 changed files with 115 additions and 329 deletions

View File

@@ -144,3 +144,40 @@ h4 {
pointer-events: none;
transition: 0.4s ease-in-out;
}
// Warning banner (used in Search settings and potentially others)
.itemWarning {
padding: 10px 20px;
display: flex;
flex-flow: row;
gap: 15px;
align-items: center;
.text {
display: flex;
flex-flow: column;
.header {
font-weight: 600;
margin-bottom: 5px;
}
}
svg {
@include themed {
background-image: t($slightGradient);
box-shadow: t($boxShadow);
}
padding: 7px;
border-radius: 100%;
font-size: 24px;
min-width: 24px;
}
@include themed {
background: t($modal-sidebar);
border-radius: t($borderRadius);
box-shadow: 0 0 0 1px t($modal-sidebarActive);
}
}