mindoc/static/css/markdown.css

307 lines
5.8 KiB
CSS
Raw Normal View History

2017-04-26 18:17:38 +08:00
body{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
::-webkit-scrollbar , body .scrollbar-track-color{
height: 9px;
width: 7px;
background: #E6E6E6;
}
::-webkit-scrollbar:hover {
background: #CCCCCC;
}
::-webkit-scrollbar-thumb {
background: #A2A2A2;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
}
2017-04-27 18:19:37 +08:00
.error-message{
color: red;
}
2017-04-26 18:17:38 +08:00
.manual-head{
padding: 5px 5px 5px 5px;
position: fixed;
width: 100%;
}
.manual-category{
width: 280px;
position: fixed;
border-top: 1px solid #DDDDDD;
2017-05-13 12:12:37 +08:00
bottom: 0px;
2017-04-26 18:17:38 +08:00
top: 40px;
2017-04-27 18:19:37 +08:00
background-color: #FAFAFA;
left: 0;
right: 0;
2017-05-13 12:12:37 +08:00
padding-bottom: 15px;
overflow-y:auto;
2017-04-27 18:19:37 +08:00
}
.manual-category .manual-nav {
font-size: 14px;
color: #333333;
font-weight: 200;
zoom:1;
border-bottom: 1px solid #ddd
}
.manual-category .manual-tree{
margin-top: 10px;
2017-05-12 11:41:59 +08:00
width: 280px;
position: absolute;
top: 30px;
right: 0;
left: 0;
bottom: 0;
overflow-y: auto;
2017-04-27 18:19:37 +08:00
}
.manual-category .manual-nav .nav-item{
font-size: 14px;
padding: 0 9px;
cursor: pointer;
float: left;
height: 30px;
line-height: 30px;
color: #666;
}
.manual-category .manual-nav .nav-plus {
color: #999;
cursor: pointer;
height: 24px;
width: 24px;
line-height: 24px;
display: inline-block;
margin-top: 4px
}
.manual-category .manual-nav .nav-plus:hover{
color: #333333;
}
.manual-category .manual-nav .nav-item.active{
border-bottom: 1px solid #fafafa;
margin-bottom: -1px;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
padding-left: 8px;
padding-right: 8px;
2017-04-26 18:17:38 +08:00
}
.manual-editor-container{
position: absolute;
left: 280px;
top: 40px;
right: 0;
bottom: 0;
overflow: hidden;
2017-04-27 18:19:37 +08:00
border-top: 1px solid #DDDDDD;
}
.manual-editor-container .manual-editormd{
position: absolute;
2017-04-28 18:08:01 +08:00
bottom: 30px;
top: -1px;
left: 0;
right: 0;
}
.manual-editor-container .manual-editormd .manual-editormd-active,
.manual-wangEditor,.manual-wangEditor .wangEditor-container,
.manual-wangEditor .wangEditor-container .wangEditor-txt{
2017-04-28 18:08:01 +08:00
position: absolute;
top:0;
left: 0;
right: 0;
bottom: 0;
}
.manual-wangEditor,.manual-wangEditor .wangEditor-container{
bottom: 15px;
border-top: 0;
overflow: hidden;
}
.manual-wangEditor .wangEditor-container .wangEditor-txt{
top: 32px;
}
.manual-wangEditor .wangEditor-container .wangEditor-menu-container{
position: fixed;
z-index: 10000;
}
.manual-wangEditor .wangEditor-container .code-textarea{
position: absolute;
top: 32px;
2017-04-28 18:08:01 +08:00
bottom: 0;
left: 0;
right: 0;
2017-04-26 18:17:38 +08:00
}
.editormd-group{
float: left;
height: 32px;
margin-right: 10px;
}
.editormd-group a{
float: left;
}
2017-04-28 18:08:01 +08:00
.editormd-group a.change{
}
.editormd-group .change i{
color: #ffffff;
background-color: #44B036 !important;
border: 1px #44B036 solid !important;
}
.editormd-group .change i:hover{
background-color: #58CB48 !important;
}
.editormd-group .disabled i:hover{
background: #ffffff !important;
}
2017-04-26 18:17:38 +08:00
.editormd-group a.disabled{
border-color: #c9c9c9;
opacity: .6;
cursor: default
}
.editormd-group a>i {
display: inline-block;
width: 34px;
height: 30px;
line-height: 30px;
text-align: center;
color: #4b4b4b;
border: 1px solid #ccc;
background: #fff;
border-radius: 4px;
font-size: 15px
}
.editormd-group a>i.item{
border-radius: 0;
border-right: 0;
}
.editormd-group a>i.last{
border-bottom-left-radius:0;
border-top-left-radius:0;
}
.editormd-group a>i.first{
border-right: 0;
border-bottom-right-radius:0;
border-top-right-radius:0;
}
.editormd-group a i:hover {
background-color: #e4e4e4
}
.editormd-group a i:after {
display: block;
overflow: hidden;
line-height: 30px;
text-align: center;
font-family: icomoon,Helvetica,Arial,sans-serif;
font-style: normal;
2017-04-27 18:19:37 +08:00
}
.manual-editor-status{
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 30px;
overflow: hidden;
border-left: 1px solid #DDDDDD;
color: #555;
background-color: #FAFAFA;
2017-04-28 18:08:01 +08:00
z-index: 1000;
2017-05-12 19:14:29 +08:00
line-height: 30px;
}
.manual-editor-status .item{
display: inline-block;
margin-right: 10px;
margin-left: 10px;
cursor: pointer;
}
.attach-drop-panel{
display: block;
position: relative;
width: 100%;
height: 100%;
}
.attach-drop-panel .webuploader-element-invisible{
width: 500px;
height: 100px;
position: absolute;
top: 0;
}
.attach-drop-panel .webuploader-pick{
color: #ccc;
text-align: center;
margin: 20px 20px 15px!important;
padding: 5px!important;
font-size: 65px;
cursor: pointer;
border: 2px dotted #999;
display: block!important;
background: #ffffff;
}
.attach-drop-panel .webuploader-pick:hover{
color: #333;
border-color: #333;
}
.attach-list{
background:#ffffff;
font-size: 12px;
}
.attach-list .attach-item{
padding: 8px 10px;
line-height: 36px;
border: 1px solid #ddd;
border-bottom: none;
border-top-left-radius:3px;
border-top-right-radius:3px;
}
.attach-list .attach-item:last-child{
border-bottom: 1px solid #ddd;
border-bottom-left-radius:3px;
border-bottom-right-radius:3px;
}
.attach-list .attach-item .progress{
margin-top: 10px;
margin-bottom: 10px;
height: 10px;
}
.attach-list .attach-item .form-control{
width: 60%;
float: left;
}
.attach-list .attach-item .text{
display: inline-block;
padding: 0 15px;
}
.attach-list .attach-item .close{
float: right;
display: inline-block;
padding: 8px 0;
color: #586069;
background: #ffffff;
font-size: 16px;
}
.attach-list .attach-item .close:hover {
color: #333;
}