moodle/lib/editor/tinymce/styles.css
Rajesh Taneja 4b371f9769
MDL-56710 editor: Fix box-sizing to context box
With BS4, box-sizing is border-box and this leads to
icon not shown properly. TinyMCE toolbar should use
box-sizing as context-box
2016-11-16 08:37:15 +08:00

25 lines
514 B
CSS

@media (max-width: 480px) {
.mceToolbar td {
float: left;
display: inline-block;
}
.moodleSkin .mceLayout .mceToolbar .mceWrap {
clear: left;
width: 100%;
height: 4px;
}
.moodleSkin .mceLayout .mceToolbar .mceNoWrap {
clear: none;
width: 0;
}
.o2k7Skin tr.mceLast .mceToolbar tr td.mceWrap,
.o2k7Skin tr.mceFirst .mceToolbar tr td.mceWrap {
margin-left: -3px;
}
}
.mceToolbar td {
box-sizing: content-box;
}