選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

app.less 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. @media screen and (min-width: 1280px) {
  2. .md-main-content {
  3. margin-left: 10px;
  4. }
  5. }
  6. .md-ui-content {
  7. padding-top: 10px;
  8. padding-left: 10px;
  9. }
  10. .text-center() {
  11. text-align: center;
  12. }
  13. .border-radius(@radius) {
  14. -webkit-border-radius: @radius;
  15. -moz-border-radius: @radius;
  16. border-radius: @radius;
  17. }
  18. .no-text-select {
  19. -webkit-touch-callout: none;
  20. -webkit-user-select: none;
  21. -khtml-user-select: none;
  22. -moz-user-select: none;
  23. -ms-user-select: none;
  24. user-select: none;
  25. }
  26. /**
  27. ========================================================
  28. **/
  29. .md-group-button {
  30. margin: 0;
  31. padding: 0;
  32. min-height: 0;
  33. line-height: 30px;
  34. font-weight: bold;
  35. }
  36. .md-group-button-checked {
  37. background-color: rgba(0, 0, 0, 0.12);
  38. }
  39. @media (max-width: 479px){
  40. .seven-cols .col-sm-1 {
  41. width: 100%;
  42. *width: 100%;
  43. }
  44. }
  45. @media (min-width: 480px) {
  46. .seven-cols .col-sm-1 {
  47. width: 14.285714285714285714285714285714%;
  48. *width: 14.285714285714285714285714285714%;
  49. }
  50. }
  51. @calendar-height: 24*30px;
  52. @grey-color: #dddddd;
  53. @course-font-size: 12px;
  54. @header-text-color: rgba(255, 255, 255, 0.70);
  55. @header-bg-color: #F44336;
  56. .day-column {
  57. .text-center();
  58. border-left: solid @grey-color 1px;
  59. border-top: solid @grey-color 1px;
  60. border-bottom: solid @grey-color 1px;
  61. height: @calendar-height;
  62. padding: 0;
  63. }
  64. .day-column-header {
  65. background-color: @header-bg-color;
  66. color: @header-text-color;
  67. //font-weight: bold;
  68. }
  69. .day-column-header-current {
  70. background-color: #D32F2F;
  71. }
  72. .day-column-header-today {
  73. color: white;
  74. font-weight: bold;
  75. }
  76. .day-column-header-day {
  77. padding-top: 5px;
  78. }
  79. .day-column-header-date {
  80. padding-bottom: 5px;
  81. border-bottom: solid @grey-color 1px;
  82. }
  83. .day-column-course {
  84. position: absolute;
  85. background-color: #FFCDD2;
  86. width: 100%;
  87. border-top: solid @grey-color 1px;
  88. border-bottom: solid @grey-color 1px;
  89. overflow: hidden;
  90. cursor: pointer;
  91. &:hover {
  92. left: 0 !important;
  93. width: 100% !important;
  94. z-index: 10;
  95. opacity: 0.8;
  96. }
  97. }
  98. .day-column-courses {
  99. height: @calendar-height - 50px;
  100. position: relative;
  101. }
  102. .day-column-course-name {
  103. font-weight: bold;
  104. font-size: @course-font-size;
  105. }
  106. .day-column-room-name {
  107. font-size: @course-font-size;
  108. text-decoration: underline;
  109. }
  110. .day-column-staff-name {
  111. font-size: @course-font-size;
  112. font-style: italic;
  113. }
  114. .day-column-course-hour {
  115. font-size: @course-font-size;
  116. }
  117. .day-column-group-name {
  118. font-size: @course-font-size;
  119. }
  120. .days-container {
  121. padding-left: 0;
  122. width: 90%;
  123. }
  124. .hour-column {
  125. .day-column();
  126. margin-top: 50px;
  127. height: @calendar-height - 50px;
  128. width: 50px;
  129. }
  130. .day-column-hours {
  131. .day-column-courses();
  132. }
  133. .day-column-hour {
  134. position: absolute;
  135. width: 100%;
  136. margin-top: -10px;
  137. text-align: right;
  138. color: rgba(0, 0, 0, 0.54)
  139. }
  140. .sidebar-group-list {
  141. height: 100%;
  142. min-height: 75px;
  143. }
  144. .course-dialog {
  145. min-width: 400px;
  146. }