uni-tr.wxss 715 B

1234567891011121314151617181920212223242526
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为Tuniao UI的集成样式文件,为scss预处理器,其中包含了一些"tn-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * Tuniao UI自定义的css类名和scss变量,均以"tn-"开头,不会造成冲突,请放心使用
  6. */
  7. .uni-table-tr {
  8. display: table-row;
  9. transition: all 0.3s;
  10. box-sizing: border-box;
  11. }
  12. .checkbox {
  13. padding: 0 8px;
  14. width: 26px;
  15. padding-left: 12px;
  16. display: table-cell;
  17. vertical-align: middle;
  18. color: #333;
  19. font-weight: 500;
  20. border-bottom: 1px #ebeef5 solid;
  21. font-size: 14px;
  22. }
  23. .tr-table--border {
  24. border-right: 1px #ebeef5 solid;
  25. }