gitlab-org--gitlab-foss/app/assets/stylesheets/pages/issues.scss

132 lines
1.7 KiB
SCSS
Raw Normal View History

2013-04-06 12:10:24 +00:00
.issues-list {
.issue {
padding: 10px $gl-padding;
2013-04-06 12:10:24 +00:00
position: relative;
2012-06-21 05:29:53 +00:00
.title {
margin-bottom: 2px;
2013-04-06 12:10:24 +00:00
}
.issue-labels {
display: inline-block;
}
2012-06-26 19:23:49 +00:00
}
}
2012-07-28 00:35:24 +00:00
.check-all-holder {
2015-03-27 19:00:31 +00:00
line-height: 36px;
float: left;
2015-03-27 19:00:31 +00:00
margin-right: 15px;
}
.issues_content {
.title {
height: 40px;
}
form {
margin: 0;
}
2012-07-28 00:35:24 +00:00
}
form.edit-issue {
margin: 0;
}
ul.related-merge-requests > li {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
.merge-request-id {
flex-shrink: 0;
}
}
.merge-requests-title,
.related-branches-title {
font-size: 16px;
font-weight: 600;
}
.merge-request-id {
display: inline-block;
width: 3em;
}
.merge-request-status {
color: $gl-gray;
font-size: 15px;
font-weight: bold;
}
.merge-request,
.issue {
&.today {
2016-07-18 18:50:04 +00:00
background: #f3fff2;
border-color: #e1e8d5;
}
&.closed {
background: $gray-light;
border-color: #e5e5e5;
}
&.merged {
background: $gray-light;
border-color: #e5e5e5;
}
}
2016-07-19 13:47:26 +00:00
.merge-request-ci-status {
svg {
margin-right: 4px;
position: relative;
top: 1px;
}
}
@media (max-width: $screen-xs-max) {
.issue-btn-group {
width: 100%;
.btn {
width: 100%;
}
}
}
.issue-form .select2-container {
width: 250px !important;
2015-01-19 03:39:43 +00:00
}
2016-06-30 09:08:14 +00:00
.issues-footer {
padding-top: $gl-padding;
padding-bottom: 37px;
}
.issue-email-modal-btn {
padding: 0;
color: $gl-link-color;
background-color: transparent;
border: 0;
outline: 0;
&:hover {
text-decoration: underline;
}
}
2016-07-01 08:07:29 +00:00
.email-modal-input-group {
margin-bottom: 10px;
.form-control {
background-color: $white-light;
}
.btn {
background-color: $background-color;
border: 1px solid $border-gray-light;
}
}