FE review changes

This commit is contained in:
Luke Bennett 2018-06-05 15:34:51 +01:00
parent 932b9f8cb2
commit d35ad403f5
No known key found for this signature in database
GPG Key ID: A738E9C68D3BF31A
4 changed files with 4 additions and 3 deletions

View File

@ -63,6 +63,6 @@ export default class ProjectLabelSubscription {
const type = /group/.test(originalTitle) ? 'group' : 'project'; const type = /group/.test(originalTitle) ? 'group' : 'project';
const newTitle = tooltipTitles[type][newStatus]; const newTitle = tooltipTitles[type][newStatus];
$button.tooltip('hide').attr('title', newTitle).tooltip('_fixTitle'); $button.attr('title', newTitle).tooltip('_fixTitle');
} }
} }

View File

@ -469,7 +469,6 @@ img.emoji {
.append-right-5 { margin-right: 5px; } .append-right-5 { margin-right: 5px; }
.append-right-8 { margin-right: 8px; } .append-right-8 { margin-right: 8px; }
.append-right-10 { margin-right: 10px; } .append-right-10 { margin-right: 10px; }
.append-right-15 { margin-right: 15px; }
.append-right-default { margin-right: $gl-padding; } .append-right-default { margin-right: $gl-padding; }
.append-right-20 { margin-right: 20px; } .append-right-20 { margin-right: 20px; }
.append-bottom-0 { margin-bottom: 0; } .append-bottom-0 { margin-bottom: 0; }

View File

@ -776,3 +776,5 @@ $modal-body-height: 134px;
Prometheus Prometheus
*/ */
$prometheus-table-row-highlight-color: $theme-gray-100; $prometheus-table-row-highlight-color: $theme-gray-100;
$priority-label-empty-state-width: 114px;

View File

@ -325,5 +325,5 @@
} }
.priority-labels-empty-state .svg-content img { .priority-labels-empty-state .svg-content img {
max-width: 114px; max-width: $priority-label-empty-state-width;
} }