debian-mirror-gitlab/app/assets/stylesheets/page_bundles/work_items.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.1 KiB
SCSS
Raw Normal View History

2022-08-13 15:12:31 +05:30
@import 'mixins_and_variables_and_functions';
.gl-token-selector-token-container {
display: flex;
align-items: center;
}
#weight-widget-input:not(:hover, :focus),
#weight-widget-input[readonly] {
2022-10-11 01:57:18 +05:30
box-shadow: none;
2022-08-13 15:12:31 +05:30
}
#weight-widget-input[readonly] {
background-color: var(--white, $white);
}
.work-item-assignees {
.assign-myself {
display: none;
}
2022-10-11 01:57:18 +05:30
@include media-breakpoint-up(sm) {
.assignees-selector:hover .assign-myself {
display: block;
}
}
}
.work-item-due-date {
.gl-datepicker-input.gl-form-input.form-control {
width: 10rem;
&:not(:focus, :hover) {
box-shadow: none;
~ .gl-datepicker-actions {
display: none;
}
}
&[disabled] {
background-color: var(--white, $white);
box-shadow: none;
~ .gl-datepicker-actions {
display: none;
}
}
}
.gl-datepicker-actions:focus,
.gl-datepicker-actions:hover {
display: flex !important;
2022-08-13 15:12:31 +05:30
}
}
.work-item-labels {
.gl-token {
padding-left: $gl-spacing-scale-1;
}
.gl-token-close {
display: none;
}
}