2020-09-24 14:09:51 -04:00
|
|
|
@import 'mixins_and_variables_and_functions';
|
|
|
|
|
2016-08-08 04:45:13 -04:00
|
|
|
.user-can-drag {
|
|
|
|
cursor: grab;
|
|
|
|
}
|
|
|
|
|
2016-09-14 14:57:31 -04:00
|
|
|
.is-ghost {
|
|
|
|
opacity: 0.3;
|
2019-03-27 05:24:39 -04:00
|
|
|
pointer-events: none;
|
2016-09-14 14:57:31 -04:00
|
|
|
}
|
|
|
|
|
2019-01-09 01:12:24 -05:00
|
|
|
.dropdown-projects {
|
|
|
|
.dropdown-content {
|
|
|
|
max-height: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-29 04:43:29 -04:00
|
|
|
.issue-board-dropdown-content {
|
2019-06-07 12:59:35 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: $gl-padding-4 $gl-padding $gl-padding;
|
|
|
|
border-bottom: 0;
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-500, $gray-500);
|
2016-07-29 04:43:29 -04:00
|
|
|
}
|
|
|
|
|
2021-03-05 04:09:07 -05:00
|
|
|
[data-page$='epic_boards:index'],
|
2021-02-25 07:11:01 -05:00
|
|
|
[data-page$='epic_boards:show'],
|
2016-07-22 05:59:26 -04:00
|
|
|
.issue-boards-page {
|
2017-03-29 09:43:35 -04:00
|
|
|
.content-wrapper {
|
2016-08-05 10:42:27 -04:00
|
|
|
padding-bottom: 0;
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
2016-10-05 07:20:59 -04:00
|
|
|
}
|
|
|
|
|
2021-03-05 04:09:07 -05:00
|
|
|
[data-page$='epic_boards:index'],
|
|
|
|
[data-page$='epic_boards:show'] {
|
2021-03-17 14:09:01 -04:00
|
|
|
.filtered-search-wrapper {
|
|
|
|
display: none !important;
|
2021-03-05 04:09:07 -05:00
|
|
|
}
|
2021-03-03 04:10:53 -05:00
|
|
|
}
|
|
|
|
|
2016-10-05 07:20:59 -04:00
|
|
|
.boards-app {
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-up(sm) {
|
2017-12-07 12:16:38 -05:00
|
|
|
transition: width $sidebar-transition-duration;
|
2017-09-26 17:19:28 -04:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&.is-compact {
|
2018-07-24 17:17:49 -04:00
|
|
|
width: calc(100% - #{$gutter-width});
|
2017-09-26 17:19:28 -04:00
|
|
|
}
|
|
|
|
}
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
2020-07-08 08:09:33 -04:00
|
|
|
.boards-list,
|
|
|
|
.board-swimlanes {
|
2018-03-19 05:47:50 -04:00
|
|
|
height: calc(100vh - #{$issue-board-list-difference-xs});
|
2016-07-22 05:59:26 -04:00
|
|
|
overflow-x: scroll;
|
2018-03-19 05:47:50 -04:00
|
|
|
min-height: 200px;
|
2016-08-05 12:01:34 -04:00
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-only(sm) {
|
2018-03-19 05:47:50 -04:00
|
|
|
height: calc(100vh - #{$issue-board-list-difference-sm});
|
2017-11-02 18:02:09 -04:00
|
|
|
}
|
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2018-03-19 05:47:50 -04:00
|
|
|
height: calc(100vh - #{$issue-board-list-difference-md});
|
|
|
|
}
|
|
|
|
|
2020-08-05 11:09:59 -04:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
height: calc(100vh - #{$issue-board-list-difference-lg});
|
|
|
|
}
|
|
|
|
|
2018-03-19 05:47:50 -04:00
|
|
|
.with-performance-bar & {
|
2018-11-07 12:20:17 -05:00
|
|
|
height: calc(100vh - #{$issue-board-list-difference-xs} - #{$performance-bar-height});
|
2018-03-19 05:47:50 -04:00
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-only(sm) {
|
2018-11-07 12:20:17 -05:00
|
|
|
height: calc(100vh - #{$issue-board-list-difference-sm} - #{$performance-bar-height});
|
2018-03-19 05:47:50 -04:00
|
|
|
}
|
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2018-11-07 12:20:17 -05:00
|
|
|
height: calc(100vh - #{$issue-board-list-difference-md} - #{$performance-bar-height});
|
2018-03-19 05:47:50 -04:00
|
|
|
}
|
2020-08-05 11:09:59 -04:00
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
height: calc(100vh - #{$issue-board-list-difference-lg} - #{$performance-bar-height});
|
|
|
|
}
|
2016-08-05 12:01:34 -04:00
|
|
|
}
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.board {
|
2018-07-06 07:45:01 -04:00
|
|
|
width: calc(85vw - 15px);
|
2016-08-05 12:01:34 -04:00
|
|
|
|
2018-07-06 07:45:01 -04:00
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
|
2019-06-28 17:20:05 -04:00
|
|
|
.board-title-caret {
|
|
|
|
border-radius: $border-radius-default;
|
2020-06-16 05:08:27 -04:00
|
|
|
line-height: $gl-spacing-scale-5;
|
|
|
|
|
|
|
|
&.btn svg {
|
|
|
|
top: 0;
|
|
|
|
}
|
2019-06-28 17:20:05 -04:00
|
|
|
|
|
|
|
&:hover {
|
2020-10-14 17:08:38 -04:00
|
|
|
background-color: var(--gray-50, $gray-50);
|
2019-06-28 17:20:05 -04:00
|
|
|
transition: background-color 0.1s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.is-collapsed) {
|
|
|
|
.board-title-caret {
|
2020-06-16 05:08:27 -04:00
|
|
|
margin-right: $gl-padding-4;
|
2017-05-31 07:34:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-collapsed {
|
2017-06-01 11:03:48 -04:00
|
|
|
width: 50px;
|
2017-05-31 07:34:54 -04:00
|
|
|
|
2019-06-28 17:20:05 -04:00
|
|
|
.board-title-caret {
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.board-title-text > span,
|
|
|
|
.issue-count-badge > span {
|
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
// Force the height to be equal to the parent's width while centering the contents.
|
|
|
|
// The contents *should* be about 16 px.
|
|
|
|
// We do this because the flow of elements isn't affected by the rotate transform, so we must ensure that a
|
|
|
|
// rotated element has square dimensions so it won't overlap with its siblings.
|
|
|
|
margin: calc(50% - 8px) 0;
|
|
|
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
transform-origin: center;
|
2017-05-31 07:34:54 -04:00
|
|
|
}
|
|
|
|
}
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.board-inner {
|
|
|
|
font-size: $issue-boards-font-size;
|
2020-10-14 17:08:38 -04:00
|
|
|
background: var(--gray-10, $gray-10);
|
|
|
|
border: 1px solid var(--gray-100, $gray-100);
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
2021-02-15 13:09:09 -05:00
|
|
|
// to highlight columns we have animated pulse of box-shadow
|
|
|
|
// we don't want to actually animate the box-shadow property
|
|
|
|
// because that causes costly repaints. Instead we can add a
|
|
|
|
// pseudo-element that is the same size as our element, then
|
|
|
|
// animate opacity/transform to give a soothing single pulse
|
|
|
|
.board-column-highlighted::after {
|
2021-08-11 11:10:57 -04:00
|
|
|
@include gl-focus;
|
2021-02-15 13:09:09 -05:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
2021-08-11 11:10:57 -04:00
|
|
|
top: -1px;
|
|
|
|
bottom: -1px;
|
|
|
|
left: -1px;
|
|
|
|
right: -1px;
|
2021-02-15 13:09:09 -05:00
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
2021-08-11 11:10:57 -04:00
|
|
|
border-radius: $border-radius-default;
|
2021-02-15 13:09:09 -05:00
|
|
|
animation-name: board-column-flash-border;
|
|
|
|
animation-duration: 1.2s;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes board-column-flash-border {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
25%,
|
|
|
|
75% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-22 12:52:48 -04:00
|
|
|
.board-header {
|
2017-09-06 02:30:40 -04:00
|
|
|
&.has-border::before {
|
2016-07-22 12:52:48 -04:00
|
|
|
border-top: 3px solid;
|
2017-09-06 02:30:40 -04:00
|
|
|
border-color: inherit;
|
|
|
|
border-top-left-radius: $border-radius-default;
|
|
|
|
border-top-right-radius: $border-radius-default;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
width: calc(100% + 2px);
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2016-12-02 08:33:39 -05:00
|
|
|
margin-top: -1px;
|
|
|
|
margin-right: -1px;
|
|
|
|
margin-left: -1px;
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-right: 1px;
|
|
|
|
padding-left: 1px;
|
2016-08-08 04:58:05 -04:00
|
|
|
|
|
|
|
.board-title {
|
|
|
|
padding-top: ($gl-padding - 3px);
|
2017-08-07 21:52:18 -04:00
|
|
|
padding-bottom: $gl-padding;
|
2016-08-08 04:58:05 -04:00
|
|
|
}
|
2016-07-22 12:52:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-22 05:59:26 -04:00
|
|
|
.board-title {
|
2020-10-14 17:08:38 -04:00
|
|
|
border-bottom: 1px solid var(--gray-100, $gray-100);
|
2020-08-05 11:09:59 -04:00
|
|
|
height: 3rem;
|
2019-11-21 01:06:32 -05:00
|
|
|
|
|
|
|
.js-max-issue-size::before {
|
|
|
|
content: '/';
|
|
|
|
}
|
2017-09-06 02:30:40 -04:00
|
|
|
}
|
|
|
|
|
2016-11-04 06:24:59 -04:00
|
|
|
.board-list-component {
|
2019-01-09 01:12:24 -05:00
|
|
|
min-height: 0; // firefox fix
|
2016-11-04 06:24:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.board-list {
|
2018-07-08 23:25:45 -04:00
|
|
|
overflow-y: auto;
|
2016-08-05 10:42:27 -04:00
|
|
|
overflow-x: hidden;
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
2016-08-04 12:47:45 -04:00
|
|
|
.board-list-loading {
|
|
|
|
margin-top: 10px;
|
2016-09-14 14:57:31 -04:00
|
|
|
font-size: (26px / $issue-boards-font-size) * 1em;
|
2016-07-22 15:03:39 -04:00
|
|
|
}
|
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
.board-card {
|
2020-10-14 17:08:38 -04:00
|
|
|
background: var(--white, $white);
|
|
|
|
border: 1px solid var(--gray-100, $gray-100);
|
|
|
|
box-shadow: 0 1px 2px rgba(var(--black, $black), 0.1);
|
2018-11-07 12:20:17 -05:00
|
|
|
line-height: $gl-padding;
|
2019-04-29 03:40:25 -04:00
|
|
|
list-style: none;
|
2019-10-15 05:06:09 -04:00
|
|
|
position: relative;
|
2016-07-22 05:59:26 -04:00
|
|
|
|
|
|
|
&:not(:last-child) {
|
2018-11-07 12:20:17 -05:00
|
|
|
margin-bottom: $gl-padding-8;
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
2016-08-05 11:19:45 -04:00
|
|
|
|
2017-05-04 08:11:15 -04:00
|
|
|
&.is-active,
|
2018-04-13 16:27:10 -04:00
|
|
|
&.is-active .board-card-assignee:hover a {
|
2020-10-14 17:08:38 -04:00
|
|
|
background-color: var(--blue-50, $blue-50);
|
2016-10-05 11:17:03 -04:00
|
|
|
}
|
|
|
|
|
2019-10-15 05:06:09 -04:00
|
|
|
&.multi-select {
|
2020-10-14 17:08:38 -04:00
|
|
|
border-color: var(--blue-200, $blue-200);
|
|
|
|
background-color: var(--blue-50, $blue-50);
|
2019-10-15 05:06:09 -04:00
|
|
|
}
|
|
|
|
|
2020-03-09 05:07:45 -04:00
|
|
|
.gl-label {
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-right: 4px;
|
2018-11-07 12:20:17 -05:00
|
|
|
}
|
|
|
|
|
2021-09-13 11:10:34 -04:00
|
|
|
.confidential-icon,
|
|
|
|
.hidden-icon {
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--orange-500, $orange-500);
|
2018-11-07 12:20:17 -05:00
|
|
|
cursor: help;
|
|
|
|
}
|
|
|
|
|
2020-02-10 22:09:13 -05:00
|
|
|
.issue-blocked-icon {
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--red-500, $red-500);
|
2020-02-10 22:09:13 -05:00
|
|
|
}
|
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
padding: $gl-padding-8;
|
2016-08-10 12:19:56 -04:00
|
|
|
}
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
.board-card-title {
|
2018-05-15 17:00:51 -04:00
|
|
|
@include overflow-break-word();
|
2016-07-22 05:59:26 -04:00
|
|
|
font-size: 1em;
|
2016-07-22 12:52:48 -04:00
|
|
|
|
|
|
|
a {
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-900, $gray-900);
|
2018-11-07 12:20:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
font-size: $label-font-size;
|
2016-07-22 12:52:48 -04:00
|
|
|
}
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
.board-card-assignee {
|
|
|
|
margin-top: -$gl-padding-4;
|
|
|
|
margin-bottom: -$gl-padding-4;
|
|
|
|
|
|
|
|
.avatar-counter {
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: $gl-padding-24;
|
|
|
|
min-width: $gl-padding-24;
|
|
|
|
height: $gl-padding-24;
|
|
|
|
border-radius: $gl-padding-24;
|
2020-10-14 17:08:38 -04:00
|
|
|
background-color: var(--gray-400, $gray-400);
|
2018-11-07 12:20:17 -05:00
|
|
|
font-size: $gl-font-size-xs;
|
|
|
|
cursor: help;
|
|
|
|
font-weight: $gl-font-weight-bold;
|
|
|
|
margin-left: -$gl-padding-4;
|
|
|
|
border: 0;
|
|
|
|
padding: 0 $gl-padding-4;
|
2017-05-04 08:11:15 -04:00
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
min-width: auto;
|
|
|
|
height: $gl-padding;
|
|
|
|
border-radius: $gl-padding;
|
|
|
|
line-height: $gl-padding;
|
2017-05-04 08:11:15 -04:00
|
|
|
}
|
2018-11-07 12:20:17 -05:00
|
|
|
}
|
2017-05-04 08:11:15 -04:00
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
img {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2017-05-04 08:11:15 -04:00
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
.user-avatar-link:not(:only-child) {
|
|
|
|
margin-left: -$gl-padding-4;
|
2017-05-04 08:11:15 -04:00
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
&:nth-of-type(1) {
|
2017-05-04 08:11:15 -04:00
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
&:nth-of-type(2) {
|
2017-05-04 08:11:15 -04:00
|
|
|
z-index: 1;
|
|
|
|
}
|
2018-11-07 12:20:17 -05:00
|
|
|
}
|
2017-05-04 08:11:15 -04:00
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
.avatar {
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
width: $gl-padding;
|
|
|
|
height: $gl-padding;
|
2017-05-04 08:11:15 -04:00
|
|
|
}
|
2017-03-27 12:31:46 -04:00
|
|
|
}
|
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2017-04-06 17:38:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
.board-card-number {
|
|
|
|
font-size: $gl-font-size-xs;
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-500, $gray-500);
|
2017-04-06 17:38:44 -04:00
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
font-size: $label-font-size;
|
2016-10-25 12:29:00 -04:00
|
|
|
}
|
2016-07-22 05:59:26 -04:00
|
|
|
}
|
|
|
|
|
2016-08-19 15:23:56 -04:00
|
|
|
.board-list-count {
|
|
|
|
padding: 10px 0;
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-500, $gray-500);
|
2016-08-19 15:23:56 -04:00
|
|
|
font-size: 13px;
|
|
|
|
}
|
2016-10-03 08:38:12 -04:00
|
|
|
|
2016-10-04 03:04:03 -04:00
|
|
|
.board-new-issue-form {
|
2017-09-06 02:30:40 -04:00
|
|
|
z-index: 4;
|
2016-10-04 03:04:03 -04:00
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2021-04-06 05:09:03 -04:00
|
|
|
.right-sidebar.boards-sidebar {
|
2016-10-05 11:59:47 -04:00
|
|
|
.gutter-toggle {
|
2016-10-20 09:32:24 -04:00
|
|
|
bottom: 15px;
|
2016-10-05 11:59:47 -04:00
|
|
|
width: 22px;
|
2020-01-09 07:08:03 -05:00
|
|
|
padding-left: $gl-padding-32;
|
2016-10-05 11:59:47 -04:00
|
|
|
|
2016-10-19 17:39:57 -04:00
|
|
|
svg {
|
2016-10-05 11:59:47 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2020-01-09 07:08:03 -05:00
|
|
|
right: 0;
|
2016-10-19 17:39:57 -04:00
|
|
|
margin-top: (-11px / 2);
|
2020-01-09 07:08:03 -05:00
|
|
|
height: $gl-font-size-12;
|
|
|
|
width: $gl-font-size-12;
|
2016-10-05 11:59:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.issuable-header-text {
|
2018-05-15 17:00:51 -04:00
|
|
|
@include overflow-break-word();
|
2016-10-05 11:59:47 -04:00
|
|
|
padding-right: 35px;
|
|
|
|
}
|
2016-10-05 07:20:59 -04:00
|
|
|
}
|
2017-01-03 10:41:14 -05:00
|
|
|
|
|
|
|
.right-sidebar.right-sidebar-expanded {
|
|
|
|
&.boards-sidebar-slide-enter-active,
|
|
|
|
&.boards-sidebar-slide-leave-active {
|
2018-11-07 12:20:17 -05:00
|
|
|
transition: width $sidebar-transition-duration, padding $sidebar-transition-duration;
|
2017-01-03 10:41:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.boards-sidebar-slide-enter,
|
|
|
|
&.boards-sidebar-slide-leave-active {
|
|
|
|
width: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-01-24 05:27:41 -05:00
|
|
|
|
2018-11-07 12:20:17 -05:00
|
|
|
.board-card-info {
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-500, $gray-500);
|
2018-11-07 12:20:17 -05:00
|
|
|
white-space: nowrap;
|
|
|
|
margin-right: $gl-padding-8;
|
|
|
|
|
|
|
|
&:not(.board-card-weight) {
|
|
|
|
cursor: help;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.board-card-weight {
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-500, $gray-500);
|
2018-11-07 12:20:17 -05:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: initial;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.board-card-info-icon {
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-500, $gray-500);
|
2018-11-07 12:20:17 -05:00
|
|
|
margin-right: $gl-padding-4;
|
2020-07-22 05:09:38 -04:00
|
|
|
vertical-align: text-top;
|
2018-11-07 12:20:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
font-size: $label-font-size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-25 01:10:51 -05:00
|
|
|
.board-item-path.js-show-tooltip {
|
2018-11-07 12:20:17 -05:00
|
|
|
cursor: help;
|
|
|
|
}
|
2019-10-28 11:05:58 -04:00
|
|
|
|
2020-05-29 05:08:06 -04:00
|
|
|
.board-labels-toggle-wrapper,
|
|
|
|
.board-swimlanes-toggle-wrapper {
|
2019-10-28 11:05:58 -04:00
|
|
|
/**
|
|
|
|
* Make the wrapper the same height as a button so it aligns properly when the
|
|
|
|
* filtered-search-box input element increases in size on Linux smaller breakpoints
|
|
|
|
*/
|
2019-11-18 13:06:53 -05:00
|
|
|
height: $input-height;
|
2019-10-28 11:05:58 -04:00
|
|
|
}
|
2020-05-13 20:07:47 -04:00
|
|
|
|
2021-09-13 23:11:17 -04:00
|
|
|
.issue-boards-content {
|
|
|
|
isolation: isolate;
|
|
|
|
}
|
|
|
|
|
2020-05-13 20:07:47 -04:00
|
|
|
.issue-boards-content.is-focused {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2020-10-14 17:08:38 -04:00
|
|
|
background: var(--white, $white);
|
2020-05-13 20:07:47 -04:00
|
|
|
z-index: 9000;
|
|
|
|
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boards-list {
|
|
|
|
height: calc(100vh - #{$issue-boards-filter-height});
|
|
|
|
overflow-x: scroll;
|
|
|
|
}
|
|
|
|
|
2021-04-06 05:09:03 -04:00
|
|
|
.boards-sidebar {
|
2020-05-13 20:07:47 -04:00
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
2020-06-11 05:08:16 -04:00
|
|
|
|
2021-04-13 11:11:24 -04:00
|
|
|
.boards-sidebar {
|
|
|
|
.sidebar-collapsed-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-06-30 05:08:07 -04:00
|
|
|
|
|
|
|
.gl-drawer-header {
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
2021-08-03 08:09:42 -04:00
|
|
|
|
|
|
|
.labels-select-wrapper.is-embedded .labels-select-wrapper.is-embedded {
|
|
|
|
width: auto;
|
|
|
|
}
|
2021-04-13 11:11:24 -04:00
|
|
|
}
|
|
|
|
|
2020-07-03 05:08:53 -04:00
|
|
|
.board-header-collapsed-info-icon:hover {
|
2020-10-14 17:08:38 -04:00
|
|
|
color: var(--gray-900, $gray-900);
|
2020-06-11 05:08:16 -04:00
|
|
|
}
|
2021-04-01 08:08:56 -04:00
|
|
|
|
|
|
|
.board-card-skeleton {
|
|
|
|
height: 110px;
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
.board-card-skeleton-inner {
|
|
|
|
width: 340px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
}
|