55 lines
908 B
Vue
55 lines
908 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.el-tooltip__popper{
|
|
max-width: 400px;
|
|
}
|
|
.my_multiple{
|
|
.el-input--medium .el-input__inner{
|
|
height: 36px!important;
|
|
}
|
|
.el-select__tags{
|
|
flex-wrap: nowrap;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
}
|
|
}
|
|
input::-webkit-outer-spin-button,
|
|
input::-webkit-inner-spin-button {
|
|
-webkit-appearance: none !important;
|
|
}
|
|
|
|
input[type="number"] {
|
|
-moz-appearance: textfield !important;
|
|
}
|
|
|
|
.viewer-fixed.viewer-container{
|
|
z-index: 10000;
|
|
}
|
|
textarea{
|
|
white-space: break-spaces;
|
|
word-break: normal;
|
|
}
|
|
*{
|
|
word-break: normal!important;
|
|
}
|
|
.box-body .el-button.is-circle:not(.is-disabled) i:before{
|
|
color: #428bca;
|
|
}
|
|
.box-body .el-button.is-circle i.el-icon-question:before{
|
|
color: #fff;
|
|
}
|
|
</style>
|