Blame view
sources/apps/files_texteditor/css/style.css
578 Bytes
|
d1bafeea1
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
.ie8 #editor_container div{
/* override core style.css font-size:100% that messes up the editor in IE8 */
font-size: 12px !important;
}
#editor_container #editor {
position: relative;
display: block;
top: 0;
left: 0;
z-index: 20;
height: 100%;
width: 100%;
}
#editor_container{
position: absolute;
display: block;
top: 0;
left: 0;
padding-top: 44px;
height: 100%;
width: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#editor_save {
margin-left: 7px;
margin-right: 20px;
float: left;
}
#editor_close {
float: right;
margin-right: 9px;
}
|