Commit b3700f96 authored by Alfredo Sumaran's avatar Alfredo Sumaran

Fix CSS declaration

parent 79659681
/* eslint-disable no-param-reassign */
((global) => {
global.cycleAnalytics = global.cycleAnalytics || {};
debugger;
global.cycleAnalytics.StageStagingComponent = Vue.extend({
props: {
items: Array,
......
......@@ -211,9 +211,9 @@
.stage-nav-item {
display: block;
line-height: 65px;
border-top: solid 1px transparent;
border-bottom: solid 1px transparent;
border-right: solid 1px $border-color;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
border-right: 1px solid $border-color;
background-color: $gray-light;
&.active {
......@@ -236,7 +236,7 @@
border-bottom: none;
}
> div {
.stage-nav-item-cell {
float: left;
&.stage-name {
......@@ -286,7 +286,7 @@
list-style-type: none;
padding: 0 0 $gl-padding;
margin: 0 $gl-padding $gl-padding;
border-bottom: solid 1px $gray-darker;
border-bottom: 1px solid $gray-darker;
@include clearfix;
&:last-child {
......
......@@ -66,9 +66,9 @@
%nav.stage-nav
%ul
%li.stage-nav-item{ ':class' => '{ active: stage.active }', '@click' => 'selectStage(stage)', "v-for" => "stage in state.stages" }
.stage-name
.stage-nav-item-cell.stage-name
{{ stage.title }}
.stage-median
.stage-nav-item-cell.stage-median
%template{ "v-if" => "stage.isUserAllowed" }
%span{ "v-if" => "stage.value" }
{{ stage.value }}
......
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