Skip to content

Commit

Permalink
NEW Look and feel v21 Toolbar for WYSIWIG editor is short on smartphone
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Oct 3, 2024
1 parent 2c4e4a5 commit 9b729e2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions htdocs/theme/eldy/global.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -6266,6 +6266,16 @@
visibility: hidden;
}

/* CSS To hide the picto menu on smartphone, except when maximize */
@media only screen and (max-width: 768px)
{
.cke_inner:not(.cke_maximized) .cke_toolbar_separator,
.cke_inner:not(.cke_maximized) .cke_combo,
.cke_inner:not(.cke_maximized) .cke_button:not(.cke_button__maximize) {
display: none;
}
}


/* ============================================================================== */
/* ACE editor */
Expand Down
10 changes: 10 additions & 0 deletions htdocs/theme/md/style.css.php
Original file line number Diff line number Diff line change
Expand Up @@ -6240,6 +6240,16 @@
visibility: hidden;
}

/* CSS To hide the picto menu on smartphone, except when maximize */
@media only screen and (max-width: 768px)
{
.cke_inner:not(.cke_maximized) .cke_toolbar_separator,
.cke_inner:not(.cke_maximized) .cke_combo,
.cke_inner:not(.cke_maximized) .cke_button:not(.cke_button__maximize) {
display: none;
}
}


/* ============================================================================== */
/* ACE editor */
Expand Down

0 comments on commit 9b729e2

Please sign in to comment.