1
0
mirror of https://github.com/typecho/typecho.git synced 2025-03-20 09:59:41 +01:00

修改全屏预览高度

This commit is contained in:
fen 2013-10-27 15:00:59 +08:00
parent fb779b8b3d
commit 5f89a8f29f
3 changed files with 6 additions and 2 deletions
admin

@ -1176,7 +1176,9 @@ a.operate-reply {
padding: 5px 20px;
border: 1px solid #F3F3F0;
border-width: 1px 0 0 1px;
height: 100%;
height: -moz-calc(100% - 52px);
height: -webkit-calc(100% - 52px);
height: calc(100% - 52px);
background: #F6F6F3;
overflow: auto; }
.fullscreen #wmd-preview code, .fullscreen #wmd-preview pre {

@ -119,7 +119,8 @@
padding: 5px 20px;
border: 1px solid #F3F3F0;
border-width: 1px 0 0 1px;
height: 100%;
// height: 100%;
@include calc(height, "100% - 52px");
background: #F6F6F3;
overflow: auto;
code, pre {

@ -9,6 +9,7 @@
*/
@import "compass";
@import "mixin";
/**
* Typecho 全局样式