Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
a13865921fac
Commit
b3700f96
authored
Nov 21, 2016
by
Alfredo Sumaran
Browse files
Fix CSS declaration
parent
331e97b1503e
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/assets/javascripts/cycle_analytics/components/stage_staging_component.js.es6
View file @
a1386592
/* eslint-disable no-param-reassign */
((global) => {
global.cycleAnalytics = global.cycleAnalytics || {};
debugger;
global.cycleAnalytics.StageStagingComponent = Vue.extend({
props: {
items: Array,
...
...
app/assets/stylesheets/pages/cycle_analytics.scss
View file @
a1386592
...
...
@@ -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
{
...
...
app/views/projects/cycle_analytics/show.html.haml
View file @
a1386592
...
...
@@ -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 }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment