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

103 lines
1.5 KiB
SCSS
Raw Normal View History

.suggest-colors {
margin-top: 5px;
a {
@include border-radius(4px);
width: 30px;
height: 30px;
display: inline-block;
margin-right: 10px;
}
&.suggest-colors-dropdown {
margin-top: 10px;
margin-bottom: 10px;
border-radius: $border-radius-base;
overflow: hidden;
2016-03-08 11:23:54 +00:00
a {
@include border-radius(0);
width: (100% / 7);
margin-right: 0;
margin-bottom: -5px;
}
}
}
.dropdown-new-label {
.dropdown-content {
max-height: 260px;
}
}
.dropdown-label-color-input {
position: relative;
margin-bottom: 10px;
2016-03-08 11:23:54 +00:00
&.is-active {
padding-left: 32px;
2016-03-08 11:23:54 +00:00
}
}
.dropdown-label-color-preview {
position: absolute;
left: 0;
top: 0;
width: 32px;
height: 32px;
border-top-left-radius: $border-radius-base;
border-bottom-left-radius: $border-radius-base;
}
.label-row {
.label-name {
display: inline-block;
2016-04-01 18:12:11 +00:00
width: 21%;
}
.label {
padding: 9px;
font-size: 14px;
}
}
.color-label {
padding: 3px 4px;
}
.label-subscription {
display: inline-block;
}
.dropdown-labels-error {
padding: 5px 10px;
margin-bottom: 10px;
background-color: $gl-danger;
color: $white-light;
}
.manage-labels-list {
.prepend-left-10 {
display: inline-block;
2016-04-01 18:12:11 +00:00
width: 45%;
}
.pull-right {
2016-04-01 18:12:11 +00:00
.action-buttons {
border-color: transparent;
margin: 7px;
}
i {
color: $gl-text-color;
}
.append-right-20 {
a {
color: $gl-text-color;
}
}
}
}