123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- @media screen and (min-width: 1280px) {
- .md-main-content {
- margin-left: 10px;
- }
- }
- .md-ui-content {
- padding-top: 10px;
- padding-left: 10px;
- }
-
- .text-center() {
- text-align: center;
- }
-
- .border-radius(@radius) {
- -webkit-border-radius: @radius;
- -moz-border-radius: @radius;
- border-radius: @radius;
- }
-
- .no-text-select {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- /**
- ========================================================
- **/
-
- .md-group-button {
- margin: 0;
- padding: 0;
- min-height: 0;
- line-height: 30px;
- font-weight: bold;
- }
-
- .md-group-button-checked {
- background-color: rgba(0, 0, 0, 0.12);
- }
-
- @media (max-width: 479px){
- .seven-cols .col-sm-1 {
- width: 100%;
- *width: 100%;
- }
- }
-
- @media (min-width: 480px) {
- .seven-cols .col-sm-1 {
- width: 14.285714285714285714285714285714%;
- *width: 14.285714285714285714285714285714%;
- }
- }
-
- @calendar-height: 24*30px;
- @grey-color: #dddddd;
- @course-font-size: 12px;
- @header-text-color: rgba(255, 255, 255, 0.70);
- @header-bg-color: #F44336;
-
- .day-column {
- .text-center();
- border-left: solid @grey-color 1px;
- border-top: solid @grey-color 1px;
- border-bottom: solid @grey-color 1px;
- height: @calendar-height;
- padding: 0;
- }
-
- .day-column-header {
- background-color: @header-bg-color;
- color: @header-text-color;
- //font-weight: bold;
- }
-
- .day-column-header-current {
- background-color: #D32F2F;
- }
-
- .day-column-header-today {
- color: white;
- font-weight: bold;
- }
-
- .day-column-header-day {
- padding-top: 5px;
- }
-
- .day-column-header-date {
- padding-bottom: 5px;
- border-bottom: solid @grey-color 1px;
- }
-
- .day-column-course {
- position: absolute;
- background-color: #FFCDD2;
- width: 100%;
- border-top: solid @grey-color 1px;
- border-bottom: solid @grey-color 1px;
- overflow: hidden;
- cursor: pointer;
- &:hover {
- left: 0 !important;
- width: 100% !important;
- z-index: 10;
- opacity: 0.8;
- }
- }
-
- .day-column-courses {
- height: @calendar-height - 50px;
- position: relative;
- }
-
- .day-column-course-name {
- font-weight: bold;
- font-size: @course-font-size;
- }
-
- .day-column-room-name {
- font-size: @course-font-size;
- text-decoration: underline;
- }
-
- .day-column-staff-name {
- font-size: @course-font-size;
- font-style: italic;
- }
-
- .day-column-course-hour {
- font-size: @course-font-size;
- }
-
- .day-column-group-name {
- font-size: @course-font-size;
- }
-
- .days-container {
- padding-left: 0;
- width: 90%;
- }
-
- .hour-column {
- .day-column();
- margin-top: 50px;
- height: @calendar-height - 50px;
- width: 50px;
- }
-
- .day-column-hours {
- .day-column-courses();
- }
-
- .day-column-hour {
- position: absolute;
- width: 100%;
- margin-top: -10px;
- text-align: right;
- color: rgba(0, 0, 0, 0.54)
- }
-
- .sidebar-group-list {
- height: 100%;
- min-height: 75px;
- }
-
- .course-dialog {
- min-width: 400px;
- }
|