debian-mirror-gitlab/app/assets/stylesheets/pages/issues.scss

131 lines
1.7 KiB
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
.issues-list {
.issue {
2015-09-25 12:07:36 +05:30
padding: 10px $gl-padding;
2014-09-02 18:07:02 +05:30
position: relative;
2016-06-02 11:05:42 +05:30
.title {
margin-bottom: 2px;
2014-09-02 18:07:02 +05:30
}
.issue-labels {
display: inline-block;
}
}
}
.check-all-holder {
2015-04-26 12:48:37 +05:30
line-height: 36px;
2014-09-02 18:07:02 +05:30
float: left;
2015-04-26 12:48:37 +05:30
margin-right: 15px;
2014-09-02 18:07:02 +05:30
}
.issues_content {
.title {
height: 40px;
}
form {
margin: 0;
}
}
form.edit-issue {
margin: 0;
}
2016-09-29 09:46:39 +05:30
ul.related-merge-requests > li {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
2016-11-03 12:29:30 +05:30
2016-09-29 09:46:39 +05:30
.merge-request-id {
flex-shrink: 0;
}
}
2016-06-02 11:05:42 +05:30
.merge-requests-title, .related-branches-title {
2015-12-23 02:04:40 +05:30
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;
}
2014-09-02 18:07:02 +05:30
.merge-request,
.issue {
&.today {
2016-09-13 17:45:13 +05:30
background: #f3fff2;
2016-08-24 12:49:21 +05:30
border-color: #e1e8d5;
2014-09-02 18:07:02 +05:30
}
&.closed {
2016-09-29 09:46:39 +05:30
background: $gray-light;
2016-06-02 11:05:42 +05:30
border-color: #e5e5e5;
2014-09-02 18:07:02 +05:30
}
&.merged {
2016-09-29 09:46:39 +05:30
background: $gray-light;
2016-06-02 11:05:42 +05:30
border-color: #e5e5e5;
2014-09-02 18:07:02 +05:30
}
}
2016-08-24 12:49:21 +05:30
.merge-request-ci-status {
svg {
margin-right: 4px;
position: relative;
top: 1px;
}
}
2014-09-02 18:07:02 +05:30
@media (max-width: $screen-xs-max) {
.issue-btn-group {
width: 100%;
.btn {
width: 100%;
2015-04-26 12:48:37 +05:30
}
}
}
.issue-form .select2-container {
width: 250px !important;
2014-09-02 18:07:02 +05:30
}
2016-09-13 17:45:13 +05:30
.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;
}
}
.email-modal-input-group {
margin-bottom: 10px;
.form-control {
background-color: $white-light;
}
.btn {
background-color: $background-color;
border: 1px solid $border-gray-light;
}
}