Update
Update year view to look nicer and highlight today in year view like the other calendar views.
This commit is contained in:
parent
39ea25afc2
commit
91a2da907d
|
@ -4,50 +4,52 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
|
||||||
|
|
||||||
.month {
|
.month {
|
||||||
margin: 5px 10px 15px 10px;
|
margin: 5px 10px 15px 10px;
|
||||||
}
|
|
||||||
|
|
||||||
.monthName {
|
.monthName {
|
||||||
color: $ms-color-themeDark;
|
color: $ms-color-themePrimary;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.day {
|
.day {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
border: dotted 1px;
|
border: dotted 1px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
transform: scale(0.9, 0.9);
|
transform: scale(0.9, 0.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
background: white;
|
border-radius: 50px;
|
||||||
border-radius: 50px;
|
border: none;
|
||||||
border: none;
|
outline: none;
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.date.inMonth:hover {
|
&.inMonth {
|
||||||
cursor: pointer;
|
&:hover {
|
||||||
background: $ms-color-themeDark;
|
cursor: pointer;
|
||||||
color: white;
|
background: $ms-color-themePrimary;
|
||||||
font-weight: bold;
|
color: white;
|
||||||
}
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.today {
|
&.today {
|
||||||
background: $ms-color-themeDark;
|
background: $ms-color-themePrimary;
|
||||||
}
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.date.prevMonth,
|
.date.prevMonth,
|
||||||
.date.nextMonth {
|
.date.nextMonth {
|
||||||
color: grey;
|
color: grey;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue