增加部分基础组件

This commit is contained in:
LiYang
2016-07-31 20:26:11 +08:00
parent 0fc35d4d02
commit bcee7bca67
18 changed files with 999 additions and 95 deletions

View File

@@ -0,0 +1,28 @@
.simditor .markdown-editor {
display: none;
}
.simditor .markdown-editor textarea {
display: block;
width: 100%;
min-height: 200px;
box-sizing: border-box;
padding: 22px 15px 40px;
border: none;
border-bottom: 1px solid #dfdfdf;
resize: none;
outline: none;
font-size: 16px;
}
.simditor.simditor-markdown .markdown-editor {
display: block;
}
.simditor.simditor-markdown .simditor-body {
min-height: 100px;
background: #f3f3f3;
}
.simditor.simditor-markdown .simditor-placeholder {
display: none !important;
}
.simditor .simditor-toolbar .toolbar-item.toolbar-item-markdown .simditor-icon {
font-size: 18px;
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,28 @@
.webuploader-container {
position: relative;
}
.webuploader-element-invisible {
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px,1px,1px,1px);
}
.webuploader-pick {
position: relative;
display: inline-block;
cursor: pointer;
background: #00b7ee;
padding: 10px 15px;
color: #fff;
text-align: center;
border-radius: 3px;
overflow: hidden;
}
.webuploader-pick-hover {
background: #00a2d4;
}
.webuploader-pick-disable {
opacity: 0.6;
pointer-events:none;
}