web-apps/apps/common/main/resources/less/calendar.less

165 lines
3.4 KiB
Plaintext
Raw Normal View History

2021-02-16 07:21:22 +00:00
@calendar-bg-color: @header-background-color-ie;
@calendar-bg-color: @header-background-color;
2019-10-21 14:04:16 +00:00
.calendar-window {
border-radius: 0;
box-shadow: none;
}
2019-10-28 14:18:35 +00:00
.calendar-box {
2021-04-25 19:17:34 +00:00
width: 212px;
height: 244px;
box-shadow: 0px 2px 5px @background-scrim-ie;
box-shadow: 0px 2px 5px @background-scrim;
border-radius: 2px;
background-color: @background-normal-ie;
background-color: @background-normal;
2019-10-31 10:40:22 +00:00
.top-row {
padding: 0 5px;
}
2019-10-21 14:04:16 +00:00
.btn {
background-color: transparent;
border: none;
2021-04-25 19:17:34 +00:00
height: 24px;
width: 24px;
2019-10-31 10:40:22 +00:00
display: flex;
justify-content: center;
align-items: center;
2021-04-25 19:17:34 +00:00
2019-10-21 14:04:16 +00:00
.icon {
2019-10-31 10:40:22 +00:00
width: 16px;
height: 16px;
2019-10-21 14:04:16 +00:00
display: block;
position: relative;
2019-10-31 10:40:22 +00:00
&.arrow-prev {
2021-04-25 19:17:34 +00:00
background-position: -38px -96px;
2019-10-31 10:40:22 +00:00
}
&.arrow-next {
2021-04-25 19:17:34 +00:00
background-position: -36px -112px;
2019-10-31 10:40:22 +00:00
}
}
&:hover {
2021-04-25 19:17:34 +00:00
background-color: @highlight-button-hover-ie;
background-color: @highlight-button-hover;
2019-10-31 10:40:22 +00:00
cursor: pointer;
2019-10-21 14:04:16 +00:00
}
2021-04-25 19:17:34 +00:00
&:active {
background-color: @highlight-button-pressed-ie;
background-color: @highlight-button-pressed;
}
2019-10-21 14:04:16 +00:00
}
.calendar-header {
2021-04-25 19:17:34 +00:00
height: 68px;
color: @text-normal-ie;
color: @text-normal;
padding: 8px;
padding-bottom: 0;
2019-10-21 14:04:16 +00:00
.top-row {
display: flex;
justify-content: space-between;
2021-04-25 19:17:34 +00:00
margin-bottom: 8px;
2019-10-21 14:04:16 +00:00
}
2021-04-25 19:17:34 +00:00
2019-10-21 14:04:16 +00:00
.bottom-row {
display: flex;
2019-10-28 14:18:35 +00:00
justify-content: space-around;
padding: 0;
2021-04-25 19:17:34 +00:00
height: 28px;
align-items: center;
2019-10-21 14:04:16 +00:00
}
2021-04-25 19:17:34 +00:00
.view-years &,
.view-months & {
height: 40px;
.bottom-row {
display: none;
}
}
2019-10-21 14:04:16 +00:00
.title {
2019-10-31 10:40:22 +00:00
width: 100%;
margin: 4px 6px 3px 6px;
text-align: center;
2021-04-25 19:17:34 +00:00
font-size: 11px;
2019-10-21 14:04:16 +00:00
label {
2019-10-30 08:17:15 +00:00
padding: 2px 10px 0;
display: block;
2021-04-25 19:17:34 +00:00
//font-weight: bold;
2019-10-21 14:04:16 +00:00
&:not(:last-of-type) {
margin-right: 6px;
}
}
2019-10-30 08:17:15 +00:00
.button {
height: 100%;
width: 100%;
&:hover {
2021-04-25 19:17:34 +00:00
background-color: @highlight-button-hover-ie;
background-color: @highlight-button-hover;
2019-10-29 10:33:24 +00:00
cursor: pointer;
2019-10-30 08:17:15 +00:00
label {
cursor: pointer;
}
2019-10-29 10:33:24 +00:00
}
}
2019-10-21 14:04:16 +00:00
2019-10-28 14:18:35 +00:00
}
}
.calendar-content {
2021-04-25 19:17:34 +00:00
padding: 0 8px;
2019-10-28 14:18:35 +00:00
.item {
margin: 0;
padding: 0;
height: auto;
width: auto;
box-shadow: none;
2021-04-25 19:17:34 +00:00
2019-10-28 14:18:35 +00:00
.name-month, .name-year {
2021-04-25 19:17:34 +00:00
height: 49px;
width: 49px;
background-color: @background-normal;
2019-10-28 14:18:35 +00:00
display: flex;
justify-content: center;
align-items: center;
font-size: 13px;
}
2021-04-25 19:17:34 +00:00
2019-10-28 14:18:35 +00:00
.number-day {
2021-04-25 19:17:34 +00:00
height: 28px;
width: 28px;
2019-10-28 14:18:35 +00:00
display: flex;
justify-content: center;
align-items: center;
}
2021-04-25 19:17:34 +00:00
2019-10-28 14:18:35 +00:00
&.selected {
.number-day, .name-month, .name-year {
2021-04-25 19:17:34 +00:00
color: @text-normal-pressed-ie;
color: @text-normal-pressed;
background-color: @highlight-button-pressed-ie;
background-color: @highlight-button-pressed;
border-radius: 2px;
2019-10-28 14:18:35 +00:00
}
}
.weekend {
color: #D25252;
}
.no-current-month, .no-cur-year, .no-current-decade {
color: #A5A5A5;
}
&:not(.disabled):not(.selected) {
.number-day, .name-month, .name-year {
&:hover {
2021-04-25 19:17:34 +00:00
background-color: @highlight-button-hover;
2019-10-28 14:18:35 +00:00
}
}
}
2019-10-21 14:04:16 +00:00
}
}
}