index.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. .sp-of-hd{
  2. overflow: hidden;
  3. }
  4. .panel-box{
  5. padding-bottom: 25px;
  6. display: -webkit-box;
  7. display: -ms-flexbox;
  8. display: flex;
  9. -webkit-box-pack: justify;
  10. -ms-flex-pack: justify;
  11. justify-content: space-between;
  12. -ms-flex-wrap: nowrap;
  13. flex-wrap: nowrap;
  14. }
  15. .panel-box .sp-panel-default, .panel-box .sp-panel-blue{
  16. border: 0;
  17. -webkit-box-flex: 1;
  18. -ms-flex: 1;
  19. flex: 1;
  20. width: 0px;
  21. }
  22. .panel-box .sp-panel-default .sp-panel-head{
  23. background-color: #dbdbdb;
  24. border-top-left-radius: 5px;
  25. border-top-right-radius: 5px;
  26. }
  27. .panel-box .sp-panel .sp-panel-body{
  28. height: 196px;
  29. overflow: auto;
  30. background-color: #edeeef;
  31. border-bottom-left-radius: 5px;
  32. border-bottom-right-radius: 5px;
  33. padding: 5px;
  34. }
  35. .panel-box .sp-panel .sp-panel-body>span{
  36. /*display: block;*/
  37. width: 100%;
  38. padding: 2px 0px;
  39. }
  40. .itemWeekTask{
  41. display: flex;
  42. height: 24px;
  43. align-items: center;
  44. justify-content: center;
  45. overflow: hidden;
  46. }
  47. .itemWeekTask .itemWeekTaskVal{
  48. height: 24px;
  49. min-width: 0;
  50. flex: 1;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. white-space: nowrap;
  54. cursor: pointer;
  55. }
  56. .itemWeekTask .itemWeekTaskBtn{
  57. height: 24px;
  58. align-items: center;
  59. width: 16px;
  60. justify-content: center;
  61. display: none;
  62. cursor: pointer;
  63. font-size: 15px;
  64. }
  65. .itemWeekTask:hover .itemWeekTaskBtn{
  66. display: flex;
  67. }
  68. .panel-box .sp-panel-blue .sp-panel-head{
  69. background-color: #0082ca;
  70. border-top-left-radius: 5px;
  71. border-top-right-radius: 5px;
  72. }
  73. .panel-box .sp-panel-blue .sp-panel-body{
  74. color: #fff;
  75. background-color: #26a3e1;
  76. }
  77. .module-list {
  78. border-bottom: 1px solid #f0f3f4;
  79. padding: 20px 0;
  80. }
  81. .module-list h5.user{
  82. background: url(../images/bg-task.png) no-repeat left center;
  83. background-size: 14px;
  84. padding-left: 30px;
  85. font-size: 16px;
  86. font-weight: 800;
  87. }
  88. .module-list h5.leader{
  89. background: url(../images/bg-task-red.png) no-repeat left center;
  90. background-size: 14px;
  91. padding-left: 30px;
  92. font-size: 16px;
  93. font-weight: 800;
  94. }
  95. .module-list table{
  96. margin-left: 30px;
  97. }
  98. .module-list table tr td:first-child{
  99. text-align:right;
  100. }
  101. .module-list table td{
  102. vertical-align: top;
  103. line-height: 25px;
  104. }
  105. #js-calendar-con{
  106. width: 100%;
  107. min-width: 605px;
  108. }
  109. .calendar-con ul:after{
  110. display:block;
  111. clear:both;
  112. content:"";
  113. visibility:hidden;
  114. height:0
  115. }
  116. .weektit li{
  117. height: 30px;
  118. line-height: 30px;
  119. text-align: center;
  120. width: 13.86%;
  121. margin-right: 3px;
  122. float: left;
  123. background: #e6e6e7;
  124. }
  125. .weektit li:last-child{
  126. margin: 0
  127. }
  128. .calendar-con ul li.current-day{
  129. background: #0082ca;
  130. color: #fff !important;
  131. }
  132. .calendar-con ul:last-child{
  133. margin-left:-2px;
  134. }
  135. .calendar-con ul:last-child li{
  136. text-align: center;
  137. margin-right: 3px;
  138. margin-top: 5px;
  139. float: left;
  140. border: solid #333;
  141. border-width: 0 0 1px 1px;
  142. height: 60px;
  143. width: 13.86%;
  144. }
  145. .calendar-con ul:last-child li:nth-child(7n){
  146. margin-right: 0
  147. }
  148. .calendar-con ul:last-child li:nth-child(7n+1),.calendar-con ul:last-child li:nth-child(7n){
  149. color: #0082ca;
  150. }
  151. .calendar-con ul:last-child li p{
  152. word-break: normal;
  153. white-space: normal;
  154. font-size: 20px;
  155. line-height: 25px;
  156. }
  157. .warninfo {
  158. width: 220px;
  159. height: 28px;
  160. color: #ff0000;
  161. float: right;
  162. line-height: 28px;
  163. background-color: #ffffff;
  164. text-align: right;
  165. display: none;
  166. }