Override some css classes, to have a beautiful trix editor toolbar buttons

- buttons background are transparent (instead of blue)
 - buttons background on hovering are transparent (instead of green)
 - disabled buttons cursor is default (instead of pointer)
This commit is contained in:
Jean-Baptiste Bellet
2023-06-08 11:43:59 +02:00
parent c6b5eda85c
commit 457d5a6c83

View File

@@ -1,3 +1,15 @@
trix-toolbar [data-trix-button-group="file-tools"] {
display: none;
}
trix-toolbar .trix-button {
background-color: transparent;
&:hover {
background-color: transparent;
}
&:disabled {
cursor: default;
}
}