gitlab-org--gitlab-foss/app/assets/stylesheets/framework/calendar.scss

102 lines
1.5 KiB
SCSS
Raw Normal View History

.calender-block {
padding-left: 0;
padding-right: 0;
border-top: 0;
direction: rtl;
2016-04-28 10:07:17 +00:00
2016-12-01 05:27:58 +00:00
@media (min-width: $screen-sm-min) and (max-width: $screen-md-max) {
overflow-x: auto;
}
}
.user-calendar-activities {
2017-02-09 16:02:54 +00:00
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;
2016-11-30 13:25:25 +00:00
stroke: $black;
}
}
.user-contrib-text {
font-size: 12px;
2016-11-30 13:25:25 +00:00
fill: $calendar-user-contrib-text;
}
.calendar-hint {
margin-top: -23px;
float: right;
font-size: 12px;
}
2017-01-04 16:53:41 +00:00
.pika-single.gitlab-theme {
.pika-label {
2017-01-06 14:43:21 +00:00
color: $gl-text-color-secondary;
2017-01-04 16:53:41 +00:00
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;
}
}