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;
|
|
|
|
}
|
|
|
|
}
|
2022-11-25 23:54:43 +05:30
|
|
|
|
|
|
|
.work-item-dropdown {
|
|
|
|
.gl-dropdown-toggle {
|
|
|
|
background: none !important;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
box-shadow: inset 0 0 0 $gl-border-size-1 var(--gray-darkest, $gray-darkest) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-not-focused:not(:hover, :focus) {
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
.gl-button-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-04 22:38:38 +05:30
|
|
|
|
|
|
|
> .col {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2022-11-25 23:54:43 +05:30
|
|
|
}
|
2023-04-23 21:23:45 +05:30
|
|
|
|
2023-05-27 22:25:52 +05:30
|
|
|
// sticky error placement for errors in modals , by default it is 83px for full view
|
|
|
|
#work-item-detail-modal {
|
|
|
|
.flash-container.flash-container-page.sticky {
|
|
|
|
top: -8px;
|
2023-04-23 21:23:45 +05:30
|
|
|
}
|
|
|
|
}
|
2023-06-20 00:43:36 +05:30
|
|
|
|
|
|
|
|
|
|
|
.work-item-notifications-form {
|
|
|
|
.gl-toggle {
|
|
|
|
@include gl-ml-auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gl-toggle-label {
|
|
|
|
@include gl-font-weight-normal;
|
|
|
|
}
|
|
|
|
}
|