92 lines
1.4 KiB
CSS
Executable File
92 lines
1.4 KiB
CSS
Executable File
/**
|
|
* Fichier utilisé uniquement dans l'iframe de TinyMCE, il est appelé depuis init.js et non inc.json.
|
|
*/
|
|
|
|
/* Fix les problèmes de couleurs et de taille de police */
|
|
.editorWysiwyg {
|
|
/*font-size: 14px !important;*/
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
/* Désactive le responsive des cols sinon les cols passent les uns en dessous des autres car la largeur de l'iframe est < au media query utilisé pour le responsive */
|
|
.col1 {
|
|
width: 8.33333333%;
|
|
}
|
|
.col2 {
|
|
width: 16.66666667%;
|
|
}
|
|
.col3 {
|
|
width: 25%;
|
|
}
|
|
.col4 {
|
|
width: 33.33333333%;
|
|
}
|
|
.col5 {
|
|
width: 41.66666667%;
|
|
}
|
|
.col6 {
|
|
width: 50%;
|
|
}
|
|
.col7 {
|
|
width: 58.33333333%;
|
|
}
|
|
.col8 {
|
|
width: 66.66666667%;
|
|
}
|
|
.col9 {
|
|
width: 75%;
|
|
}
|
|
.col10 {
|
|
width: 83.33333333%;
|
|
}
|
|
.col11 {
|
|
width: 91.66666667%;
|
|
}
|
|
.col12 {
|
|
width: 100%;
|
|
}
|
|
.offset1 {
|
|
margin-left: 8.33333333%;
|
|
}
|
|
.offset2 {
|
|
margin-left: 16.66666667%;
|
|
}
|
|
.offset3 {
|
|
margin-left: 25%;
|
|
}
|
|
.offset4 {
|
|
margin-left: 33.33333333%;
|
|
}
|
|
.offset5 {
|
|
margin-left: 41.66666667%;
|
|
}
|
|
.offset6 {
|
|
margin-left: 50%;
|
|
}
|
|
.offset7 {
|
|
margin-left: 58.33333333%;
|
|
}
|
|
.offset8 {
|
|
margin-left: 66.66666667%;
|
|
}
|
|
.offset9 {
|
|
margin-left: 75%;
|
|
}
|
|
.offset10 {
|
|
margin-left: 83.33333333%;
|
|
}
|
|
.offset11 {
|
|
margin-left: 91.66666667%;
|
|
}
|
|
/*Simulation du responsive des vidéos dans l'éditeur */
|
|
.mce-preview-object,
|
|
.mce-preview-object > * {
|
|
width: auto !important;
|
|
height: auto !important;
|
|
}
|
|
.mce-content-body {
|
|
padding-left: 5px !important;
|
|
padding-right: 5px !important;
|
|
}
|