2013-04-06 08:10:24 -04:00
|
|
|
.issues-list {
|
2019-06-26 04:29:23 -04:00
|
|
|
&.manual-ordering {
|
|
|
|
background-color: $gray-light;
|
|
|
|
border-radius: $border-radius-default;
|
|
|
|
padding: $gl-padding-8;
|
|
|
|
|
|
|
|
.issue {
|
2020-03-30 20:08:09 -04:00
|
|
|
background-color: $white;
|
2019-06-26 04:29:23 -04:00
|
|
|
margin-bottom: $gl-padding-8;
|
|
|
|
border-radius: $border-radius-default;
|
|
|
|
border: 1px solid $gray-100;
|
|
|
|
box-shadow: 0 1px 2px $issue-boards-card-shadow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-19 02:14:07 -04:00
|
|
|
.issue {
|
2017-02-07 05:30:44 -05:00
|
|
|
padding: 10px 0 10px $gl-padding;
|
2013-04-06 08:10:24 -04:00
|
|
|
position: relative;
|
2012-06-21 01:29:53 -04:00
|
|
|
|
2016-03-18 14:02:08 -04:00
|
|
|
.title {
|
2016-02-25 14:13:36 -05:00
|
|
|
margin-bottom: 2px;
|
2013-04-06 08:10:24 -04:00
|
|
|
}
|
|
|
|
|
2019-11-27 13:06:30 -05:00
|
|
|
.issue-labels,
|
|
|
|
.author-link {
|
2013-04-06 08:10:24 -04:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2017-02-16 15:03:42 -05:00
|
|
|
|
|
|
|
.icon-merge-request-unmerged {
|
|
|
|
height: 13px;
|
|
|
|
margin-bottom: 3px;
|
2018-02-23 01:57:50 -05:00
|
|
|
}
|
2012-06-26 15:23:49 -04:00
|
|
|
}
|
|
|
|
}
|
2012-07-27 20:35:24 -04:00
|
|
|
|
2017-04-21 16:34:11 -04:00
|
|
|
.issue-realtime-pre-pulse {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.issue-realtime-trigger-pulse {
|
2017-05-04 17:18:59 -04:00
|
|
|
transition: opacity $fade-in-duration linear;
|
2017-04-21 16:34:11 -04:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2014-02-13 12:59:09 -05:00
|
|
|
.check-all-holder {
|
2015-03-27 15:00:31 -04:00
|
|
|
line-height: 36px;
|
2012-11-23 11:33:43 -05:00
|
|
|
float: left;
|
2015-03-27 15:00:31 -04:00
|
|
|
margin-right: 15px;
|
2012-07-27 22:43:34 -04:00
|
|
|
}
|
|
|
|
|
2013-12-19 12:36:27 -05:00
|
|
|
form.edit-issue {
|
|
|
|
margin: 0;
|
2013-12-17 09:39:39 -05:00
|
|
|
}
|
2014-02-20 06:51:22 -05:00
|
|
|
|
2016-09-09 10:00:21 -04:00
|
|
|
ul.related-merge-requests > li {
|
|
|
|
display: flex;
|
2017-05-08 06:11:06 -04:00
|
|
|
align-items: center;
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2016-09-09 10:00:21 -04:00
|
|
|
.merge-request-id {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2017-03-21 13:20:51 -04:00
|
|
|
|
|
|
|
.merge-request-info {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2017-05-10 08:37:31 -04:00
|
|
|
|
|
|
|
gl-emoji {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
2016-09-09 10:00:21 -04:00
|
|
|
}
|
|
|
|
|
2016-10-24 16:22:06 -04:00
|
|
|
.related-branches-title {
|
2015-12-04 14:00:07 -05:00
|
|
|
font-size: 16px;
|
2017-08-24 10:13:24 -04:00
|
|
|
font-weight: $gl-font-weight-bold;
|
2015-12-04 14:00:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.merge-request-status {
|
2016-11-15 14:00:14 -05:00
|
|
|
&.merged {
|
2019-01-11 09:54:45 -05:00
|
|
|
color: $blue-500;
|
2016-11-15 14:00:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.closed {
|
2019-01-11 09:54:45 -05:00
|
|
|
color: $red-500;
|
2016-11-15 14:00:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.open {
|
2019-01-11 09:54:45 -05:00
|
|
|
color: $green-500;
|
2016-11-15 14:00:14 -05:00
|
|
|
}
|
2015-12-04 14:00:07 -05:00
|
|
|
}
|
|
|
|
|
2014-02-20 06:51:22 -05:00
|
|
|
.merge-request,
|
|
|
|
.issue {
|
|
|
|
&.today {
|
2016-11-30 08:25:25 -05:00
|
|
|
background: $issues-today-bg;
|
|
|
|
border-color: $issues-today-border;
|
2014-02-20 06:51:22 -05:00
|
|
|
}
|
|
|
|
|
2019-11-27 13:06:30 -05:00
|
|
|
&.closed,
|
2014-02-20 06:51:22 -05:00
|
|
|
&.merged {
|
2016-08-19 11:39:18 -04:00
|
|
|
background: $gray-light;
|
2016-12-12 17:26:21 -05:00
|
|
|
border-color: $border-color;
|
2014-02-20 06:51:22 -05:00
|
|
|
}
|
|
|
|
}
|
2014-03-27 18:05:15 -04:00
|
|
|
|
2017-04-27 07:52:41 -04:00
|
|
|
.merge-request-ci-status,
|
|
|
|
.related-merge-requests {
|
|
|
|
.ci-status-link {
|
|
|
|
display: block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2016-07-19 09:47:26 -04:00
|
|
|
svg {
|
2017-04-27 07:52:41 -04:00
|
|
|
display: block;
|
2016-07-19 09:47:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-down(xs) {
|
2017-11-28 16:35:01 -05:00
|
|
|
.detail-page-header {
|
2017-11-03 18:55:17 -04:00
|
|
|
.issuable-meta {
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
}
|
2014-03-27 18:05:15 -04:00
|
|
|
}
|
2014-12-18 10:22:10 -05:00
|
|
|
|
2017-09-04 16:10:59 -04:00
|
|
|
.issue-form {
|
|
|
|
.select2-container {
|
|
|
|
width: 250px !important;
|
|
|
|
}
|
2015-01-18 22:39:43 -05:00
|
|
|
}
|
2016-06-30 05:08:14 -04:00
|
|
|
|
2019-03-26 05:59:13 -04:00
|
|
|
.issues-footer {
|
|
|
|
padding-top: $gl-padding;
|
|
|
|
padding-bottom: 37px;
|
|
|
|
}
|
|
|
|
|
2019-11-27 13:06:30 -05:00
|
|
|
.issues-nav-controls,
|
|
|
|
.new-branch-col {
|
2018-12-04 03:42:27 -05:00
|
|
|
font-size: 0;
|
2019-11-27 13:06:30 -05:00
|
|
|
}
|
2018-12-04 03:42:27 -05:00
|
|
|
|
2019-11-27 13:06:30 -05:00
|
|
|
.issues-nav-controls {
|
2018-12-04 03:42:27 -05:00
|
|
|
.btn-group:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-24 02:20:36 -04:00
|
|
|
.issuable-email-modal-btn {
|
2016-06-30 05:08:14 -04:00
|
|
|
padding: 0;
|
2018-08-14 12:44:08 -04:00
|
|
|
color: $blue-600;
|
2016-06-30 05:08:14 -04:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-07-01 04:07:29 -04:00
|
|
|
|
|
|
|
.email-modal-input-group {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.form-control {
|
2020-03-30 20:08:09 -04:00
|
|
|
background-color: $white;
|
2016-07-01 04:07:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
2016-12-12 17:26:21 -05:00
|
|
|
background-color: $gray-light;
|
|
|
|
border: 1px solid $border-gray-normal;
|
2016-07-01 04:07:29 -04:00
|
|
|
}
|
|
|
|
}
|
2017-01-27 11:25:39 -05:00
|
|
|
|
|
|
|
.recaptcha {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
2017-05-04 04:09:21 -04:00
|
|
|
|
|
|
|
.new-branch-col {
|
2018-10-23 05:49:45 -04:00
|
|
|
.discussion-filter-container {
|
|
|
|
&:not(:only-child) {
|
|
|
|
margin-right: $gl-padding-8;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
margin-top: $gl-padding-8;
|
|
|
|
}
|
|
|
|
}
|
2017-05-04 04:09:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.create-mr-dropdown-wrap {
|
2017-11-25 06:33:05 -05:00
|
|
|
.ref::selection {
|
2018-08-14 12:44:08 -04:00
|
|
|
color: $gl-text-color-tertiary;
|
2017-11-25 06:33:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
.dropdown-menu-toggle {
|
|
|
|
min-width: 285px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-select {
|
|
|
|
width: 285px;
|
|
|
|
}
|
|
|
|
}
|
2017-08-10 09:20:13 -04:00
|
|
|
|
2018-04-19 20:16:13 -04:00
|
|
|
.btn-group:not(.hidden) {
|
2017-05-04 04:09:21 -04:00
|
|
|
display: flex;
|
2018-10-23 05:49:45 -04:00
|
|
|
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
margin-top: $gl-padding-8;
|
|
|
|
}
|
2017-05-04 04:09:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.js-create-merge-request {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2017-11-25 06:33:05 -05:00
|
|
|
.create-merge-request-dropdown-menu {
|
2017-05-04 04:09:21 -04:00
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
transform: translateY(0);
|
|
|
|
display: none;
|
2017-11-25 06:33:05 -05:00
|
|
|
margin-top: 4px;
|
2018-02-01 09:19:27 -05:00
|
|
|
|
|
|
|
// override dropdown item styles
|
|
|
|
.btn.btn-success {
|
|
|
|
@include btn-default;
|
|
|
|
@include btn-green;
|
|
|
|
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
line-height: $line-height-base;
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-05-04 04:09:21 -04:00
|
|
|
}
|
|
|
|
|
2017-11-25 06:33:05 -05:00
|
|
|
.create-merge-request-dropdown-toggle {
|
2017-05-04 04:09:21 -04:00
|
|
|
.fa-caret-down {
|
|
|
|
pointer-events: none;
|
|
|
|
color: inherit;
|
2019-07-16 12:03:29 -04:00
|
|
|
margin-left: 0;
|
2017-05-04 04:09:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 11:51:04 -04:00
|
|
|
.discussion-reply-holder {
|
|
|
|
.avatar-note-form-holder .note-edit-form {
|
|
|
|
display: block;
|
|
|
|
margin-left: $note-icon-gutter-width;
|
|
|
|
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-06-20 17:45:59 -04:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:57:19 -05:00
|
|
|
.issue-sort-dropdown {
|
|
|
|
.btn-group {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reverse-sort-btn {
|
|
|
|
color: $gl-text-color-secondary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-up(sm) {
|
2017-06-02 19:06:29 -04:00
|
|
|
.emoji-block .row {
|
|
|
|
display: flex;
|
2017-05-04 04:09:21 -04:00
|
|
|
|
2017-06-02 19:06:29 -04:00
|
|
|
.new-branch-col {
|
|
|
|
padding-top: 0;
|
|
|
|
align-self: center;
|
|
|
|
}
|
2019-11-27 13:06:30 -05:00
|
|
|
}
|
2017-06-02 19:06:29 -04:00
|
|
|
|
2019-11-27 13:06:30 -05:00
|
|
|
.create-mr-dropdown-wrap {
|
|
|
|
.btn-group:not(.hidden) {
|
|
|
|
display: inline-flex;
|
2017-05-04 04:09:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-23 05:49:45 -04:00
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
.new-branch-col {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
2020-03-16 05:09:29 -04:00
|
|
|
|
|
|
|
.issue-details {
|
|
|
|
.card-title {
|
|
|
|
a.anchor {
|
|
|
|
left: -16px;
|
|
|
|
top: 4px;
|
|
|
|
outline: none;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: image-url('icon_anchor.svg');
|
|
|
|
@include invisible(hidden);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > a.anchor::after {
|
|
|
|
@include invisible(visible);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-19 11:08:04 -04:00
|
|
|
|
|
|
|
.issuable-list-root {
|
|
|
|
.gl-label-link {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|