Mobile theme W.I.P.:

- Get CKEditor html toolbar working
- Fix popups scroll area
This commit is contained in:
Hadi Nategh 2016-04-11 09:10:51 +00:00
parent df88fb8733
commit 15b5b3cc5c
4 changed files with 38 additions and 6 deletions

View File

@ -2612,9 +2612,6 @@ div.mailComposeHeaderSection > table {
border: none;
box-shadow: none;
}
body #mail-compose span#cke_1_top {
display: none;
}
body #mail-compose .mailComposeHeaderSection > table {
padding: 0;
}

View File

@ -163,9 +163,6 @@
border:none;
box-shadow: none;
}
span#cke_1_top {
display: none;
}
.mailComposeHeaderSection > table {
padding: 0;
tr.mailComposeHeaders.subjectContainer td:first-child::after {

View File

@ -7067,6 +7067,8 @@ form[id^="tracker-"] .dialogHeadbar {
/**************************************/
/*************** SLIDESWITCH **********/
/***************************************/
/*************** CKEDITOR **************/
/***************************************/
}
body button[id*="save"]:hover,
body button[id*="apply"]:hover,
@ -8079,4 +8081,18 @@ form[id^="tracker-"] .dialogHeadbar {
box-shadow: 0 2px 2px #474747, 0 0px 0 rgba(255, 255, 255, 0.2);
z-index: 2;
}
body .cke_inner .cke_toolbox .cke_toolbox_main {
height: 30px;
white-space: nowrap;
display: inline-block;
overflow-y: hidden;
width: 100%;
}
body .cke_inner .cke_toolbox .cke_toolbox_main .cke_toolbar {
display: inline-block;
float: none;
}
body .cke_inner .cke_toolbox .cke_toolbox_collapser {
height: auto;
}
}

View File

@ -1267,5 +1267,27 @@
}
}
}
/*************** CKEDITOR **************/
/***************************************/
.cke_inner {
.cke_toolbox {
.cke_toolbox_main {
height: 30px;
white-space: nowrap;
display: inline-block;
overflow-y: hidden;
width: 100%;
.cke_toolbar {
display: inline-block;
float: none;
}
}
.cke_toolbox_collapser {
height: auto;
}
}
}
}
}