LuckyCoinkydink/htmlarea/s9y_cketoolbar.css
2014-11-26 10:52:32 +01:00

32 lines
1.1 KiB
CSS

/*
CKEDITOR Toolbar tweak to hide the cke-image widget buttons.
Continues to support the internal image widget functionality needed for S9y-MediaLibrary inserts,
but disables these button to eyes, if USER is not using the CKE PRESET Toolbar!
Sadly firefox and chrome engines count node IDs differently in textareas,
which for the BASIC emptied image toolbar group is DOM ID 27/63 in FF/IE is 27/67 in Chrome.
*/
#cke_1_top .cke_toolgroup a.cke_button__image,
#cke_2_top .cke_toolgroup a.cke_button__image {
display: none !important;
visibility: hidden;
height: 0 !important;
padding: 0 !important;
border-radius: 0 !important;
}
/* hide next sibling separator */
#cke_1_top .cke_toolgroup a.cke_button__image~.cke_toolbar_separator,
#cke_2_top .cke_toolgroup a.cke_button__image~.cke_toolbar_separator {
display: none;
visibility: hidden;
margin: 0px;
height: 0px;
width: 0px;
}
/* hide empty image toolgroup in toolbar BASIC (do not remove the span tag!) */
#cke_1_top span#cke_27, #cke_2_top span#cke_63, #cke_2_top span#cke_67 {
display: none;
visibility: hidden;
width: 0 !important;
}