Commit b3700f96 authored by Alfredo Sumaran's avatar Alfredo Sumaran

Fix CSS declaration

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