mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 03:41:28 +00:00
fix(UX): fix sandbox selector options background color (#6626)
This commit is contained in:
@@ -12,21 +12,21 @@ const StyledWrapper = styled.div`
|
||||
cursor: pointer;
|
||||
transition: all 0.15s ease;
|
||||
|
||||
&.safe-mode {
|
||||
color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.safeMode.color};
|
||||
background-color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.safeMode.bg};
|
||||
}
|
||||
|
||||
&.developer-mode {
|
||||
color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.developerMode.color};
|
||||
background-color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.developerMode.bg};
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
.safe-mode {
|
||||
color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.safeMode.color};
|
||||
background-color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.safeMode.bg};
|
||||
}
|
||||
|
||||
.developer-mode {
|
||||
color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.developerMode.color};
|
||||
background-color: ${(props) => props.theme.app.collection.toolbar.sandboxMode.developerMode.bg};
|
||||
}
|
||||
|
||||
.sandbox-dropdown {
|
||||
min-width: 260px;
|
||||
max-width: 380px;
|
||||
|
||||
@@ -14,7 +14,7 @@ const colors = {
|
||||
TEXT: '#d4d4d4',
|
||||
TEXT_MUTED: '#808080',
|
||||
TEXT_LINK: '#3794ff',
|
||||
BRAND_TEXT: '#47a9eb',
|
||||
BRAND_TEXT: '#4dabfc', // VS Code blue
|
||||
|
||||
// Brand - VS Code blue
|
||||
BRAND: '#007acc',
|
||||
|
||||
Reference in New Issue
Block a user