Fixes #1028 - Update Redactor to 10.0.9

This commit is contained in:
Samuel Georges 2015-04-11 11:27:33 +10:00
parent f0c7b66576
commit bdd4b21748
5 changed files with 612 additions and 205 deletions

File diff suppressed because one or more lines are too long

View File

@ -38,29 +38,31 @@
.redactor-box textarea:focus {
outline: none;
}
/*
Z-index setup
*/
.redactor-editor,
.redactor-box {
background: #fff;
}
/*
Z-index setup
*/
.redactor-editor,
.redactor-box,
.redactor-box textarea {
z-index: auto !important;
z-index: auto;
}
.redactor-box-fullscreen {
z-index: 1052 !important;
z-index: 1051;
}
.redactor-toolbar {
z-index: 100;
}
.redactor-toolbar,
.redactor-dropdown {
z-index: 1053 !important;
z-index: 1052;
}
#redactor-modal-overlay,
#redactor-modal-box,
#redactor-modal {
z-index: 1054 !important;
z-index: 1053;
}
/*
Resize
@ -111,6 +113,9 @@ body .redactor-box-fullscreen {
.redactor-editor:focus {
outline: none;
}
.toolbar-fixed-box + .redactor-editor {
padding-top: 32px !important;
}
/*
Placeholder
*/
@ -650,7 +655,7 @@ body .redactor-box-fullscreen {
padding-left: 0;
list-style: none;
max-height: 250px;
overflow-x: scroll;
overflow-x: auto;
}
#redactor-modal #redactor-modal-list li {
border-bottom: 1px solid #ddd;

File diff suppressed because it is too large Load Diff

View File

@ -83,32 +83,33 @@
}
}
}
/*
Z-index setup
*/
.redactor-editor,
.redactor-box {
background: #fff;
}
/*
Z-index setup
*/
.redactor-editor,
.redactor-box,
.redactor-box textarea {
z-index: auto !important;
z-index: auto;
}
.redactor-box-fullscreen {
z-index: 1052 !important;
z-index: 1051;
}
.redactor-toolbar {
z-index: 100;
}
.redactor-toolbar,
.redactor-dropdown {
z-index: 1053 !important;
z-index: 1052;
}
#redactor-modal-overlay,
#redactor-modal-box,
#redactor-modal {
z-index: 1054 !important;
z-index: 1053;
}
@ -164,6 +165,9 @@ body .redactor-box-fullscreen {
outline: none;
}
}
.toolbar-fixed-box + .redactor-editor {
padding-top: 32px !important;
}
/*
Placeholder
@ -698,7 +702,7 @@ body .redactor-box-fullscreen {
padding-left: 0;
list-style: none;
max-height: 250px;
overflow-x: scroll;
overflow-x: auto;
& li {
border-bottom: 1px solid #ddd;
&:last-child {

File diff suppressed because one or more lines are too long