CONTROL.less.ftl 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
.grid {
    flex-grow: 1;
    height: 100%;
    overflow: auto;
    .el-table__body-wrapper::-webkit-scrollbar {
      /*滚动条整体样式*/
      width : 10px !important;  /*高宽分别对应横竖滚动条的尺寸*/
      height: 10px !important;
    }
    .el-table__body-wrapper::-webkit-scrollbar-thumb {
      /*滚动条颜色*/
      border-radius   : 10px !important;
      background-color: #cecece !important;
    }
    .el-table__body-wrapper::-webkit-scrollbar-track {
      /*滚动条里面轨道*/
      box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2) !important;
      background   : #ededed !important;
      border-radius: 10px !important;
    }
    /*表格文字过长省略*/
    .el-table th>.cell, .el-table td>.cell{
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      word-break: break-all;
    }
28 29 30 31
    .el-table-column--selection .cell {
        padding-left: 0px;
        padding-right: 0px;
    }
32 33 34 35
    .app-column-link, .app-format-data{
      display: inline;
    }
    .el-table {
36 37
      .quick-toolbar{
          display: inline-block;
38 39 40 41 42
          button{
            background: #ebf3fb;
            color: #2575ca;
            border: 0;
        }
43
      }
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
      .el-tooltip{
        .ivu-form-item{
          margin-bottom: unset !important;
        }
      }
    }
    .grid-pagination {
        height: 50px;
        padding: 6px 0px;
        .page-button {
            button  {
                padding: 0;
                font-size: 16px;
                min-width: 32px;
                height: 32px;
                margin-right: 4px;
            }
        }
        .page-column {
            position: absolute;
            left: 0;
        }
66 67 68 69 70 71 72 73 74 75 76 77 78 79
        .batch-toolbar{
            position: absolute;
            left: 105px;
          >.toolbar-container{
              button  {
                  font-size: 16px;
                  min-width: 32px;
                  height: 32px;
                  margin-right: 4px;
                  margin-top: 0;
                  margin-bottom: 0;
              }
          }
        }
80 81
    }
    .el-table__body-wrapper{
82
      height: calc(100% - 45px) !important;
83 84 85 86 87 88 89 90 91 92 93
    }
}
.ivu-modal-content{
    .footer{
        .ivu-row{
            text-align: right;
        }
    }
}


94

95 96 97
<#ibizinclude>
../@MACRO/CSS/DEFAULT.less.ftl
</#ibizinclude>