123456789101112131415161718192021222324 |
- /* components/table/table.wxss */
- .table{
- color: #fff;
- border-top: 1px solid #515266;
- }
- .table .table_row {
- white-space: nowrap;
- }
- .table .table_rd {
- min-width: 4em;
- text-align: center;
- white-space: nowrap;
- display: inline-block;
- vertical-align:middle;
- border-bottom: 1px solid #515266;
- }
- .table .table_rd .viewRd{
- padding: 0 15px;
- line-height: 35px;
- height: 35px;
- }
- .table .table_rd .debuRow{
- background-color: #1c1f32;
- }
|