configs/arch-config/.mozilla/firefox/default-release/chrome/src/theme/_waterfox.scss

27 lines
699 B
SCSS
Raw Normal View History

2022-05-11 21:19:02 +02:00
/* New Folder Button */
#editBMPanel_newFolderButton {
appearance: none;
border: 0;
border-radius: 4px;
background-color: var(--button-bgcolor);
color: var(--button-color, inherit);
font-weight: 600;
min-width: 0;
padding: 8px 16px;
/* This button is deeper in the visual hierarchy than others (notably the
buttons at the bottom of the panel), so it should be slightly smaller. */
font-size: 90%;
/* This button needs to align with the tree above it. */
margin-inline-start: 4px;
}
#editBMPanel_newFolderButton:hover {
background-color: var(--button-hover-bgcolor);
}
#editBMPanel_newFolderButton:hover:active {
background-color: var(--button-active-bgcolor);
}