debian-mirror-gitlab/app/assets/stylesheets/framework/calendar.scss

105 lines
1.6 KiB
SCSS
Raw Normal View History

2018-12-05 23:21:45 +05:30
.calendar-block {
padding-left: 0;
padding-right: 0;
2017-08-17 22:00:37 +05:30
border-top: 0;
2018-11-08 19:23:39 +05:30
@media (min-width: map-get($grid-breakpoints, sm)) and (max-width: map-get($grid-breakpoints, sm)) {
2017-08-17 22:00:37 +05:30
overflow-x: auto;
2016-06-02 11:05:42 +05:30
}
}
2015-04-26 12:48:37 +05:30
.user-calendar-activities {
2017-08-17 22:00:37 +05:30
direction: ltr;
2015-04-26 12:48:37 +05:30
.str-truncated {
max-width: 70%;
}
.user-calendar-activities-loading {
font-size: 24px;
2015-04-26 12:48:37 +05:30
}
}
.user-calendar {
text-align: center;
2015-04-26 12:48:37 +05:30
.calendar {
display: inline-block;
2016-06-02 11:05:42 +05:30
}
}
2016-06-02 11:05:42 +05:30
.user-contrib-cell {
&:hover {
cursor: pointer;
2017-08-17 22:00:37 +05:30
stroke: $black;
2015-04-26 12:48:37 +05:30
}
}
2015-04-26 12:48:37 +05:30
.user-contrib-text {
font-size: 12px;
2017-08-17 22:00:37 +05:30
fill: $calendar-user-contrib-text;
}
2015-04-26 12:48:37 +05:30
.calendar-hint {
font-size: 12px;
2018-12-05 23:21:45 +05:30
&.bottom-right {
direction: ltr;
margin-top: -23px;
float: right;
}
2015-04-26 12:48:37 +05:30
}
2017-08-17 22:00:37 +05:30
.pika-single.gitlab-theme {
.pika-label {
color: $gl-text-color-secondary;
font-size: 14px;
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-normal;
2017-08-17 22:00:37 +05:30
}
th {
padding: 2px 0;
color: $note-disabled-comment-color;
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-normal;
2017-08-17 22:00:37 +05:30
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;
2020-04-22 19:07:51 +05:30
background-color: $white;
2017-08-17 22:00:37 +05:30
text-align: center;
}
.is-today {
.pika-day {
color: inherit;
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-normal;
2017-08-17 22:00:37 +05:30
}
}
.is-selected .pika-day,
.pika-day:hover,
2017-09-10 17:25:29 +05:30
.is-today .pika-day {
2018-03-17 18:26:18 +05:30
background: $gray-darker;
color: $gl-text-color;
2017-08-17 22:00:37 +05:30
box-shadow: none;
}
}