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;
|
|
|
|
|
2022-06-29 20:07:26 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: var(--button-hover-bgcolor);
|
|
|
|
&:active {
|
|
|
|
background-color: var(--button-active-bgcolor);
|
|
|
|
}
|
|
|
|
}
|
2022-05-11 21:19:02 +02:00
|
|
|
}
|