diff --git a/src/styles/element-ui.scss b/src/styles/element-ui.scss index 9422dd18ad6d9fccc3c12f599f9be5c67eeeaac8..9581d56ad6439ae21d4c7fc2f56024ca2f51e7a2 100644 --- a/src/styles/element-ui.scss +++ b/src/styles/element-ui.scss @@ -46,7 +46,7 @@ } } -//暂时性解决dialog 问题 https://github.com/ElemeFE/element/issues/2461 +// to fixed https://github.com/ElemeFE/element/issues/2461 .el-dialog { transform: none; left: 0; @@ -54,18 +54,7 @@ margin: 0 auto; } -//文章页textarea修改样式 -.article-textarea { - textarea { - padding-right: 40px; - resize: none; - border: none; - border-radius: 0px; - border-bottom: 1px solid #bfcbd9; - } -} - -//element ui upload +// refine element ui upload .upload-container { .el-upload { width: 100%; @@ -77,9 +66,14 @@ } } -//dropdown +// dropdown .el-dropdown-menu { a { display: block } } + +// fix date-picker ui bug in filter-item +.el-range-editor.el-input__inner { + display: inline-flex !important; +} diff --git a/src/views/example/components/ArticleDetail.vue b/src/views/example/components/ArticleDetail.vue index b1aa8df6b7492b4d193703a4736740332aa9b424..55d2972a1d4221199e596cca93487f0db6078928 100644 --- a/src/views/example/components/ArticleDetail.vue +++ b/src/views/example/components/ArticleDetail.vue @@ -59,7 +59,7 @@ - {{ contentShortLength }}字 + {{ contentShortLength }}words @@ -236,24 +236,39 @@ export default {