1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @charset "UTF-8";
- /**
- * 下方引入的为Tuniao UI的集成样式文件,为scss预处理器,其中包含了一些"tn-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * Tuniao UI自定义的css类名和scss变量,均以"tn-"开头,不会造成冲突,请放心使用
- */
- .uni-table-th {
- padding: 12px 10px;
- display: table-cell;
- box-sizing: border-box;
- font-size: 14px;
- font-weight: bold;
- color: #909399;
- border-bottom: 1px #ebeef5 solid;
- }
- .uni-table-th-row {
- display: flex;
- flex-direction: row;
- }
- .table--border {
- border-right: 1px #ebeef5 solid;
- }
- .uni-table-th-content {
- display: flex;
- align-items: center;
- flex: 1;
- }
- .arrow {
- display: block;
- position: relative;
- width: 10px;
- height: 8px;
- left: 5px;
- overflow: hidden;
- cursor: pointer;
- }
- .down {
- top: 3px;
- }
- .down ::after {
- content: '';
- width: 8px;
- height: 8px;
- position: absolute;
- left: 2px;
- top: -5px;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- background-color: #ccc;
- }
- .down.active ::after {
- background-color: #007aff;
- }
- .up ::after {
- content: '';
- width: 8px;
- height: 8px;
- position: absolute;
- left: 2px;
- top: 5px;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- background-color: #ccc;
- }
- .up.active ::after {
- background-color: #007aff;
- }
|