101 lines
1.5 KiB
SCSS
101 lines
1.5 KiB
SCSS
.calender-block {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
border-top: 0;
|
|
direction: rtl;
|
|
|
|
@media (min-width: $screen-sm-min) and (max-width: $screen-md-max) {
|
|
overflow-x: auto;
|
|
}
|
|
}
|
|
|
|
.user-calendar-activities {
|
|
direction: ltr;
|
|
|
|
.str-truncated {
|
|
max-width: 70%;
|
|
}
|
|
|
|
.user-calendar-activities-loading {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
.user-calendar {
|
|
text-align: center;
|
|
|
|
.calendar {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.user-contrib-cell {
|
|
&:hover {
|
|
cursor: pointer;
|
|
stroke: $black;
|
|
}
|
|
}
|
|
|
|
.user-contrib-text {
|
|
font-size: 12px;
|
|
fill: $calendar-user-contrib-text;
|
|
}
|
|
|
|
.calendar-hint {
|
|
margin-top: -23px;
|
|
float: right;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.pika-single.gitlab-theme {
|
|
.pika-label {
|
|
color: $gl-text-color-secondary;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
th {
|
|
padding: 2px 0;
|
|
color: $note-disabled-comment-color;
|
|
font-weight: normal;
|
|
text-transform: lowercase;
|
|
border-top: 1px solid $calendar-border-color;
|
|
}
|
|
|
|
abbr {
|
|
cursor: default;
|
|
}
|
|
|
|
td {
|
|
border: 1px solid $calendar-border-color;
|
|
|
|
&:first-child {
|
|
border-left: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
border-right: 0;
|
|
}
|
|
}
|
|
|
|
.pika-day {
|
|
border-radius: 0;
|
|
background-color: $white-light;
|
|
text-align: center;
|
|
}
|
|
|
|
.is-today {
|
|
.pika-day {
|
|
color: inherit;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
.is-selected .pika-day,
|
|
.pika-day:hover,
|
|
.is-today .pika-day:hover {
|
|
background: $gl-primary;
|
|
color: $white-light;
|
|
box-shadow: none;
|
|
}
|
|
}
|