mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-23 15:19:01 +01:00
feat(#BRU-7) - scrollbar styling for linux and windows (#1589)
This commit is contained in:
parent
5fece08f4b
commit
bd002ca316
@ -159,6 +159,33 @@ const GlobalStyle = createGlobalStyle`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// scrollbar styling
|
||||||
|
// the below media query target non-macos devices
|
||||||
|
// (macos scrollbar styling is the ideal style reference)
|
||||||
|
@media not all and (pointer: coarse) {
|
||||||
|
* {
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: ${(props) => props.theme.scrollbar.color};
|
||||||
|
}
|
||||||
|
|
||||||
|
*::-webkit-scrollbar {
|
||||||
|
width: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
*::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
*::-webkit-scrollbar-thumb {
|
||||||
|
background-color: ${(props) => props.theme.scrollbar.color};
|
||||||
|
border-radius: 14px;
|
||||||
|
border: 3px solid ${(props) => props.theme.scrollbar.color};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// codemirror
|
// codemirror
|
||||||
.CodeMirror {
|
.CodeMirror {
|
||||||
.cm-variable-valid {
|
.cm-variable-valid {
|
||||||
|
@ -238,6 +238,10 @@ const darkTheme = {
|
|||||||
|
|
||||||
plainGrid: {
|
plainGrid: {
|
||||||
hoverBg: '#3D3D3D'
|
hoverBg: '#3D3D3D'
|
||||||
|
},
|
||||||
|
|
||||||
|
scrollbar: {
|
||||||
|
color: 'rgb(52 51 49)'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -242,6 +242,10 @@ const lightTheme = {
|
|||||||
|
|
||||||
plainGrid: {
|
plainGrid: {
|
||||||
hoverBg: '#f4f4f4'
|
hoverBg: '#f4f4f4'
|
||||||
|
},
|
||||||
|
|
||||||
|
scrollbar: {
|
||||||
|
color: 'rgb(152 151 149)'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user