CONTROL.less.ftl 2.4 KB
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
<#ibizinclude>
../@MACRO/CSS/DEFAULT.less.ftl
</#ibizinclude>
// this is less
.srf_empty_class {
    width: 100%;
    height: 100%;
}

.incident {
  background-color: #fff0f0;
};
.incident span {
  color: #587dff;
};
.selected {
    background-color: transparent!important;
}
.show_information{
    display:flex;
    margin: 10px; 
    border-bottom: 1px solid #e8eaee;
}
.selector{
    background: white;
    position: fixed;
    bottom: 0px;
    font-size: 30px;
    color: white;
    width: 100%;
    padding: 12px 0px 8px;
    z-index: 9999;
    .selectorbtn{
        padding: 0px 76px;
        color: #CCCCCC
    }
    .selectorbtn.hover{
        color: #86A6FD;
    }
}
.calendar-tools {
    color: #86A6FD
}
.mpvue-calendar td.selected span {
    background: #86A6FD;
}
.changeStyle{
    color:#86A6FD !important;
}
.serial{
    background-color:#26a2ff;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    text-align: center;
    width: 50px;
    position: relative;
    top: -4px;
    height: 41px;
    line-height: 40px;
}
.mpvue-calendar .mc-month-range-mode-head{
    background: #f5fbff !important;
}
.mpvue-calendar table{
    box-shadow: 0px 4px 8px rgba(25, 47, 89, 0.1)
}
[class*=van-hairline]::after {
    border-bottom: none !important;
}

.van-cell:not(:last-child)::after{
  border:none;
}
.van-hairline--top-bottom::after, .van-hairline-unset--top-bottom::after{
  border:none;
}
.app-mob-calendar {
  height: 100%;
  .calender_box{
    height: 100%;
    display: flex;
    flex-direction: column;
    .calendar-events{
      width: 100%;
      flex: 1;
      overflow: auto;
      background-color: #F2F3F5;
      >.van-panel{
        margin-bottom:14px;
        .van-cell__title{
          font-weight: bold;
        }
        .events-label{
          color: #969799;
          font-size: 12px;
        }
        .events-content{
          font-size: 12px;
        }
        .van-panel__content{
          padding: 0 16px;
        }
      }
    }
  }
}

.slot-element {
  line-height: normal;
  position: absolute;
  z-index: 5;
  right: 45%;
  bottom: 2px;
  color: #f00;
}
.even-box {
  position: relative;
  border: solid 1px #ccc;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 4px;
  color: #333;
}
.evenname {
    padding: 5px 0;
}
.event-delete{
  position: absolute;
  top: 3px;
  right: 3px;
}
<#if ctrl.getCalendarStyle() == "DAY">
.calendar-tools{
  .calendar-info{
    line-height:2.3;
  }
}
</#if>