Commit dff411d7 authored by Sam Rose's avatar Sam Rose

Fix display logic for warning message

parent 4490a57f
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<div> <div>
<div class="events-description"> <div class="events-description">
{{ stage.description }} {{ stage.description }}
<span v-if="items.length <= 50" class="pull-right"> <span v-if="items.length === 50" class="events-info pull-right">
<i class="fa fa-warning has-tooltip" <i class="fa fa-warning has-tooltip"
title="Limited to showing 50 events at most" title="Limited to showing 50 events at most"
data-placement="top"></i> data-placement="top"></i>
......
...@@ -285,10 +285,10 @@ ...@@ -285,10 +285,10 @@
.events-description { .events-description {
line-height: 65px; line-height: 65px;
padding: 0 $gl-padding; padding: 0 $gl-padding;
}
span { .events-info {
color: $gl-text-color-secondary; color: $gl-text-color-secondary;
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment