123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- // cover some element-ui styles
- .el-breadcrumb__inner,
- .el-breadcrumb__inner a {
- font-weight: 400 !important;
- }
- .el-upload {
- input[type="file"] {
- display: none !important;
- }
- }
- .el-upload__input {
- display: none;
- }
- .cell {
- .el-tag {
- margin-right: 0px;
- }
- }
- .small-padding {
- .cell {
- padding-left: 5px;
- padding-right: 5px;
- }
- }
- .fixed-width {
- .el-button--mini {
- padding: 7px 10px;
- width: 60px;
- }
- }
- .status-col {
- .cell {
- padding: 0 10px;
- text-align: center;
- .el-tag {
- margin-right: 0px;
- }
- }
- }
- // to fixed https://github.com/ElemeFE/element/issues/2461
- .el-dialog {
- transform: none;
- left: 0;
- position: relative;
- margin: 0 auto;
- }
- // refine element ui upload
- .upload-container {
- .el-upload {
- width: 100%;
- .el-upload-dragger {
- width: 100%;
- height: 200px;
- }
- }
- }
- // 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;
- }
- // to fix el-date-picker css style
- .el-range-separator {
- box-sizing: content-box;
- }
- // 重置按钮样式
- .el-button--mini.zap-button-success,
- .el-table .fixed-width .el-button--mini.zap-button-confirmation,
- .el-table .fixed-width .el-button--mini.zap-button-info,
- .el-table .fixed-width .el-button--mini.zap-button-primary,
- .el-table .fixed-width .el-button--mini.zap-button-warning,
- .el-table .fixed-width .el-button--mini.zap-button-plain {
- min-width: 36px;
- height: 24px;
- line-height: 24px;
- text-align: center;
- padding: 0 6px;
- font-size: 12px;
- border-radius: 4px;
- box-sizing: border-box;
- }
- // 重置、详情
- .el-table .fixed-width .el-button--mini.zap-button-plain {
- color: #333333;
- border: 1px solid #EBEBEB;
- }
- .el-table .fixed-width .el-button--mini.zap-button-warning {
- color: #ffffff;
- background-color: #FFB700;
- }
- .el-table .fixed-width .el-button--mini.zap-button-primary {
- color: #ffffff;
- background-color: #4280F2;
- }
- .el-table .fixed-width .el-button--mini.zap-button-info {
- color: #999999;
- background-color: #EBEBEB;
- }
- // 确权、删除
- .el-table .fixed-width .el-button--mini.zap-button-confirmation{
- color: #ffffff;
- background-color: #FF2F2F;
- }
- // 修改
- .el-button--medium.zap-button-success {
- width: 112px;
- height: 36px;
- line-height: 36px;
- padding: 0;
- text-align: center;
- font-size: 14px;
- color: #ffffff;
- background: #00B53A;
- border-radius: 4px;
- }
- // 修改
- .el-table .fixed-width .el-button--mini.zap-button-success{
- color: #ffffff;
- background: #00B53A;
- }
- .el-button--medium.WIDTH64{
- min-width: 64px !important;
- }
- .el-menu-item .el-menu-item::hover{
- color: #ffffff !important;
- background-color: #4280F2 !important;
- }
- .zap-form-input--red.el-input--medium .el-input__inner{
- color: #FF2F2F !important;
- }
- .zap-flex-1{
- flex: 0 0 1;
- }
- .zap-form-search-wrap{
- width: 440px;
- height: 58px;
- line-height: 36px;
- vertical-align: top;
- font-size: 14px;
- color: #333333;
- .label{
- display: inline-block;
- width: 176px;
- padding-right: 12px;
- text-align: right;
- box-sizing: border-box;
- }
- .value{
- }
- }
- .zap-form-input--small{
- width: 200px !important;
- &.date{
- .el-range-input{
- font-size: 12px !important;
- }
- }
- }
- .zap-form-input--medium{
- width: 248px !important;
- }
- .zap-form-input--default{
- width: 256px !important;
- }
- .el-form-item__label{
- font-weight: 500 !important;
- }
|