mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
- buttons background are transparent (instead of blue) - buttons background on hovering are transparent (instead of green) - disabled buttons cursor is default (instead of pointer)
16 lines
229 B
SCSS
16 lines
229 B
SCSS
trix-toolbar [data-trix-button-group="file-tools"] {
|
|
display: none;
|
|
}
|
|
|
|
trix-toolbar .trix-button {
|
|
background-color: transparent;
|
|
|
|
&:hover {
|
|
background-color: transparent;
|
|
}
|
|
|
|
&:disabled {
|
|
cursor: default;
|
|
}
|
|
}
|