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

132 lines
1.8 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
2013-04-06 12:10:24 +00:00
.issue-title {
2015-08-04 10:35:15 +00:00
margin-bottom: 5px;
2015-08-17 16:29:54 +00:00
font-size: $list-font-size;
font-weight: bold;
2013-04-06 12:10:24 +00:00
}
.issue-info {
color: $gl-gray;
2013-04-06 12:10:24 +00:00
}
.issue-check {
float: left;
2012-07-28 00:35:24 +00:00
padding-right: 8px;
margin-bottom: 10px;
2012-07-28 00:35:24 +00:00
min-width: 15px;
}
2013-04-06 12:10:24 +00:00
.issue-labels {
display: inline-block;
}
.issue-no-comments {
opacity: 0.5;
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
}
.issue-search-form {
margin: 0;
height: 24px;
.issue_search {
border: 1px solid #DDD !important;
background-color: #f4f4f4;
}
}
form.edit-issue {
margin: 0;
}
.merge-request,
.issue {
&.today {
background: #EFE;
border-color: #CEC;
}
&.closed {
background: #F9F9F9;
border-color: #E5E5E5;
}
&.merged {
background: #F9F9F9;
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;
}
}
}
.issue {
&:hover .issue-actions {
display: none !important;
}
.issue-updated-at {
display: none;
}
}
}
.issue-closed-by-widget {
padding: 16px 0;
margin: 0px;
}
.issue-form .select2-container {
width: 250px !important;
2015-01-19 03:39:43 +00:00
}