How to use admin_custom to change OneEleven css
Posted: Sun Jun 19, 2022 3:29 pm
Hi all,
Maybe this question is asked before, then sorry for this duplicate.
If I add this css at the bottom of "admin/themes/OneEleven/css/style.css" then I have control over the size of the Content area.
But if I create a new file "assets/admin_custom/themes/OneEleven/css/style.css" with this css then nothing happens.
Please any suggestion? Is there a better way to resize the default height.
Kind regards, Ronald
Note ** I tried body#tinymce { min-height: 60vh } in the Stylesheet for MicroTiny in the Design Manager, but this doesn't work too.
Maybe this question is asked before, then sorry for this duplicate.
If I add this css at the bottom of "admin/themes/OneEleven/css/style.css" then I have control over the size of the Content area.
Code: Select all
textarea[id^="content_"] {
height: 60vh !important;
}
Code: Select all
@import url("/admin/themes/OneEleven/css/style.css");
textarea[id^="content_"] {
height: 60vh !important;
}
Kind regards, Ronald
Note ** I tried body#tinymce { min-height: 60vh } in the Stylesheet for MicroTiny in the Design Manager, but this doesn't work too.