mirror of
https://github.com/typecho/typecho.git
synced 2025-03-20 09:59:41 +01:00
修改全屏预览高度
This commit is contained in:
parent
fb779b8b3d
commit
5f89a8f29f
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 全局样式
|
||||
|
Loading…
x
Reference in New Issue
Block a user