workList.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* teacher/pages/workList/workList.wxss */
  2. .tabActive {
  3. font-weight: 600 !important;
  4. }
  5. .work-body {
  6. border-top: 1px solid #dcdfe6;
  7. background: #f8f9fb;
  8. }
  9. .work-detail {
  10. width: 100%;
  11. display: flex;
  12. justify-content: flex-start;
  13. align-items: center;
  14. height: 24px;
  15. }
  16. .work-detail .periods {
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. justify-content: center;
  21. padding-right: 10px;
  22. width: 40%;
  23. border-right: 1px solid #dcdfe6;
  24. letter-spacing: 1px;
  25. line-height: 1.2;
  26. }
  27. .periods text {
  28. max-width: 100%;
  29. white-space: nowrap;
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. font-size: 14px;
  33. }
  34. .work-detail .work-name {
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. width: 60%;
  39. }
  40. .work-name text {
  41. max-width: 80%;
  42. line-height: 1.1;
  43. overflow: hidden;
  44. text-overflow: ellipsis;
  45. white-space: nowrap;
  46. }
  47. .work-collapse-class {
  48. padding: 0 !important;
  49. }
  50. .tab-active-class {
  51. border-bottom: 2px solid #3d92f8;
  52. }
  53. .empty {
  54. width: 100%;
  55. height: 400px;
  56. display: flex;
  57. flex-direction: column;
  58. justify-content: center;
  59. align-items: center;
  60. }
  61. .empty text {
  62. margin-top: 10px;
  63. }