12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>调研宝H5编辑器</title>
- </head>
- <body>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- <style>
- .overview .el-input__inner{
- height: 100%!important;
- line-height: 30px;
- padding:0;
- border: 0;
- border-bottom: 1px solid #d6d6d6;
- background-color: #ececec;
- }
- .overview .el-input.is-disabled .el-input__inner{
- background-color: #ececec;
- }
- .overview .active input{
- background-color: #18ccc0!important;
- border-bottom:0;
- }
- .el-input__inner:hover {
- border-color: #c0c4cc;
- }
- .is-disabled input{
- cursor: pointer!important;
- }
- </style>
- </html>
|