Compare commits

...

2 commits

Author SHA1 Message Date
Simon Vieille 63a8a60e2d Merge branch 'develop' 2024-03-31 16:57:56 +02:00
Simon Vieille d01e9d618b
add border color on tinymce editor 2024-03-31 16:57:46 +02:00
2 changed files with 10 additions and 2 deletions

View file

@ -2,6 +2,7 @@
### Added ### Added
* allow to use `window.tinymceModes` to add or override tinymce modes * allow to use `window.tinymceModes` to add or override tinymce modes
* add border color on tinymce editor
### Fixed ### Fixed
* fix default crud sort * fix default crud sort
* fix hidden save button in file manager * fix hidden save button in file manager

View file

@ -744,8 +744,15 @@ label.required::after {
background: map-get($theme-colors, 'dark-blue'); background: map-get($theme-colors, 'dark-blue');
} }
.tox.tox-silver-sink.tox-tinymce-aux { .tox {
z-index: 3000 !important; &.tox-silver-sink.tox-tinymce-aux {
z-index: 3000 !important;
}
&.tox-tinymce {
border-color: $input-border-color;
border-radius: 5px;
}
} }
.field-boolean { .field-boolean {