123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* teacher/pages/workList/workList.wxss */
- .tabActive {
- font-weight: 600 !important;
- }
- .work-body {
- border-top: 1px solid #dcdfe6;
- background: #f8f9fb;
- }
- .work-detail {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- height: 24px;
- }
- .work-detail .periods {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding-right: 10px;
- width: 40%;
- border-right: 1px solid #dcdfe6;
- letter-spacing: 1px;
- line-height: 1.2;
- }
- .periods text {
- max-width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 14px;
- }
- .work-detail .work-name {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 60%;
- }
- .work-name text {
- max-width: 80%;
- line-height: 1.1;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .work-collapse-class {
- padding: 0 !important;
- }
- .tab-active-class {
- border-bottom: 2px solid #3d92f8;
- }
- .empty {
- width: 100%;
- height: 400px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .empty text {
- margin-top: 10px;
- }
|