mytodo.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. // mytodo页面专用样式
  2. #home {
  3. // 第一行
  4. .firstLine {
  5. .userImg {
  6. width: 50px;
  7. height: 50px;
  8. img {
  9. border-radius: 50%;
  10. width: 100%;
  11. }
  12. }
  13. .userInfo {
  14. line-height: 20px;
  15. color: #333;
  16. p {
  17. margin-top: 20px;
  18. }
  19. em {
  20. font-style: normal;
  21. }
  22. }
  23. // 消息
  24. .msgBox {
  25. text-align: center;
  26. background-color: rgba(236, 232, 232, 0.4);
  27. border-radius: 2px;
  28. span {
  29. font-size: 28px;
  30. color: orangered;
  31. }
  32. p {
  33. color: gray;
  34. }
  35. }
  36. // OA工作台
  37. .oaBig {
  38. background-color: rgb(97, 190, 167);
  39. text-align: center;
  40. justify-content: space-between;
  41. .oaItem {
  42. margin-bottom: 20px;
  43. width: calc((100% - 10px) / 3);
  44. h4 {
  45. font-size: 12px;
  46. margin-top: 4px;
  47. }
  48. }
  49. }
  50. }
  51. // 第二行
  52. .secondLine {
  53. // 友情链接
  54. .links {
  55. // display: flex;
  56. flex-flow: row wrap;
  57. // justify-content: space-between;
  58. box-sizing: border-box;
  59. .itemLink {
  60. float: left;
  61. border-radius: 2px;
  62. border: none;
  63. margin-right: 10px;
  64. background-color: rgba(102, 155, 188, 0.7);
  65. margin-bottom: 20px;
  66. width: calc((100% - 40px) / 4);
  67. // display: flex;
  68. justify-content: center;
  69. align-items: center;
  70. a {
  71. color: white;
  72. font-size: 16px;
  73. span {
  74. display: block;
  75. overflow: hidden;
  76. text-overflow: ellipsis;
  77. white-space: nowrap;
  78. }
  79. }
  80. }
  81. button:hover {
  82. background-color: #003049;
  83. color: white;
  84. box-shadow: 1px 1px 3px #333;
  85. }
  86. }
  87. }
  88. // card 标题颜色
  89. /deep/ .ant-card-head-title {
  90. color: #1890ff;
  91. }
  92. /deep/ .ant-tabs {
  93. border-radius: 2px;
  94. }
  95. // 日历
  96. .ccfullCalendar {
  97. background-image: url('../date03.jpg');
  98. // background-color: white; //技能博物馆
  99. opacity: 0.8;
  100. background-size: cover;
  101. background-repeat: no-repeat;
  102. // 不需要日历头部选择按钮
  103. /deep/ .fc-header-toolbar {
  104. display: none !important;
  105. }
  106. //整个历真实高度
  107. /deep/ .fc .fc-scrollgrid-liquid {
  108. height: 290px;
  109. }
  110. //控制日历不要占位
  111. /deep/ .fc-view-harness-active {
  112. height: 290px !important;
  113. }
  114. // 日历行高字体颜色
  115. /deep/ .fc-scrollgrid-sync-inner {
  116. line-height: 30px;
  117. a {
  118. color: white;
  119. }
  120. }
  121. /deep/ .fc-col-header-cell-cushion {
  122. color: #333 !important;
  123. font-weight: 400 !important;
  124. }
  125. // 今天日历显示
  126. /deep/ .fc-day-today {
  127. background-color: #70a288;
  128. border-radius: 2px;
  129. a {
  130. color: white;
  131. font-weight: 700;
  132. }
  133. }
  134. /deep/ .fc-daygrid-day-bottom {
  135. margin-top: -24px !important;
  136. }
  137. /deep/ .fc .fc-button-primary {
  138. background-color: #1890ff;
  139. margin-top: 4px;
  140. border: none;
  141. }
  142. /deep/ .fc .fc-toolbar-title {
  143. color: #333;
  144. font-size: 16px;
  145. letter-spacing: 1px;
  146. }
  147. }
  148. .dataStyle {
  149. height:400px;
  150. /deep/ .ant-card-body {
  151. padding: 30px 10px;
  152. }
  153. }
  154. }