| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- .w100 {
- width: 100%;
- }
- // 页头
- .ele-body {
- .page-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #eaeefb;
- padding-bottom: 8px;
- margin-bottom: 16px;
- }
- }
- // ele-split-layout 左侧盒子充满
- .split-layout-right-content {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
- // tab切换框
- .switch {
- display: flex;
- justify-content: space-between;
- }
- .switch_left ul {
- list-style-type: none;
- display: flex;
- padding: 0;
- margin: 0;
- }
- .switch_left ul li {
- min-width: 80px;
- padding: 0 10px;
- text-align: center;
- background: #dfdfdf;
- color: #333;
- font-size: 14px;
- height: 36px;
- line-height: 32px;
- margin-right: 5px;
- border-top: 4px solid #dfdfdf;
- cursor: pointer;
- }
- .switch_left ul .active {
- background: #fff;
- border-top: 4px solid #157a2c;
- color: #157a2c;
- }
- .ele-form-actions {
- padding-left: 10px;
- display: flex;
- align-items: center;
- justify-content: flex-end !important;
- }
- .form_item_label {
- .el-form-item__label {
- line-height: 21px !important;
- }
- }
- .el-form-box {
- .el-row {
- .el-form-item {
- margin-bottom: 4px;
- .el-form-item__error {
- font-size: 11px;
- }
- .el-col {
- .el-form-item {
- margin-bottom: 4px;
- .el-form-item__error {
- font-size: 11px;
- }
- }
- }
- }
- .el-col {
- .el-form-item {
- margin-bottom: 4px;
- .el-form-item__error {
- font-size: 11px;
- }
- }
- }
- }
- .el-form-item {
- margin-bottom: 4px;
- .el-form-item__error {
- font-size: 11px;
- }
- }
- .el-table {
- .el-form-item {
- margin-bottom: 0 !important;
- .el-form-item__error {
- font-size: 11px;
- }
- }
- .el-table__row {
- .el-table__cell {
- padding: 0 0 !important;
- .el-input-group__append{
- border: none;
- background: none
- }
- .el-textarea__inner, input {
- border: none;
- text-align: center;
- vertical-align: middle;
- }
- input::placeholder {
- text-align: center;
- vertical-align: middle;
- }
- textarea::placeholder {
- text-align: center;
- vertical-align: middle;
- }
- .is-error{
- .el-input{
- border: 1px solid #ff4d4f !important;
- border-collapse: collapse !important;
- }
- }
- .cell {
- padding: 0 !important;
- }
- }
- }
- }
- .el-form-item {
- margin-bottom: 4px !important
- }
- .el-form-item__error {
- display: none !important;
- }
- .ele-form-search .el-form-item, .ele-form-search .ele-form-actions{
- margin-bottom: 0 !important;
- }
- }
- .el-dialog {
- margin-top: 5vh !important;
- }
- .el-dialog__body {
- max-height: calc(100vh - 129px);
- padding-bottom: 30px;
- overflow: auto;
- }
- .el-table--medium .el-table__cell {
- padding: 2px 0 !important;
- }
- .el-button--medium {
- padding: 7px 10px !important;
- font-size: 12px !important;
- border-radius: 3px !important;
- }
- .el-button--small {
- padding: 7px 10px !important;
- font-size: 12px !important;
- border-radius: 3px !important;
- }
- .el-input--medium .el-input__inner {
- height: 32px !important;
- line-height: 32px !important;
- }
|