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;
|
|
|
|
|
|
|
|
.issue-title {
|
|
|
|
margin-bottom: 5px;
|
2015-04-26 12:48:37 +05:30
|
|
|
font-size: $list-font-size;
|
2016-01-19 16:12:03 +05:30
|
|
|
font-weight: 600;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.issue-info {
|
2015-09-25 12:07:36 +05:30
|
|
|
color: $gl-gray;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.issue-check {
|
|
|
|
float: left;
|
|
|
|
padding-right: 8px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
min-width: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.issue-labels {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
.issue-no-comments {
|
|
|
|
opacity: 0.5;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.issue-search-form {
|
|
|
|
margin: 0;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form.edit-issue {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
.merge-requests-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;
|
|
|
|
}
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
.merge-request,
|
|
|
|
.issue {
|
|
|
|
&.today {
|
|
|
|
background: #EFE;
|
|
|
|
border-color: #CEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.closed {
|
2015-04-26 12:48:37 +05:30
|
|
|
background: #F9F9F9;
|
2014-09-02 18:07:02 +05:30
|
|
|
border-color: #E5E5E5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.merged {
|
2015-04-26 12:48:37 +05:30
|
|
|
background: #F9F9F9;
|
2014-09-02 18:07:02 +05:30
|
|
|
border-color: #E5E5E5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $screen-xs-max) {
|
|
|
|
.issue-btn-group {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 5px;
|
|
|
|
|
|
|
|
.btn-group {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: -1px;
|
|
|
|
|
|
|
|
&:first-child:not(:last-child) {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:first-child):not(:last-child) {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child:not(:first-child) {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
.issue {
|
|
|
|
&:hover .issue-actions {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.issue-updated-at {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.issue-form .select2-container {
|
|
|
|
width: 250px !important;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
.issue-closed-by-widget {
|
|
|
|
color: $secondary-text;
|
|
|
|
margin-left: 52px;
|
2016-04-02 18:10:28 +05:30
|
|
|
}
|