123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- @import './color.less';
- .title {
- text-align: center;
- font-weight: bold;
- padding: 4px 6px 6px;
- font-size: 16px;
- margin-bottom: 4px;
- position: relative;
- }
- .cell {
- text-align: center;
- background-color: #fafafa;
- color: rgb(212, 46, 46);
- }
- .middle {
- tr,
- td {
- font-size: 14px !important;
- }
- }
- .small {
- tr,
- td {
- font-size: 13px !important;
- }
- }
- .ranking {
- tr,
- td {
- font-size: 14px !important;
- span {
- font-size: 14px;
- }
- }
- }
- .large {
- tr,
- td {
- font-size: 14px !important;
- }
- }
- .item_img {
- width: 25px;
- border-radius: 2px;
- margin-right: 5px;
- background-color: #efefef;
- }
- .blue {
- background-color: cornflowerblue;
- }
- .cardtitle {
- position: relative;
- width: 100%;
- height: 100%;
- .text {
- width: 100%;
- height: 100%;
- text-align: center;
- }
- .cardTab {
- position: absolute;
- width: 400px;
- height: 100%;
- top: 0;
- left: 0;
- }
- }
- .unfollow {
- background-color: #fafafa;
- }
- .ant-table-row.expanded>.ant-table-cell {
- padding: 5px 16px !important;
- }
- .ant-table-row.error {
- background-color: #ffe9e9;
- }
- .ellipsisText {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: block;
- }
- .components-table-resizable-column .react-resizable {
- position: relative;
- background-clip: padding-box;
- }
- .components-table-resizable-column .react-resizable-handle {
- position: absolute;
- width: 10px;
- height: 100%;
- bottom: 0;
- right: -9px;
- cursor: col-resize;
- z-index: 1;
- border-left: white 1px solid;
- }
|