Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
b3700f96
Commit
b3700f96
authored
Nov 21, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix CSS declaration
parent
79659681
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
app/assets/javascripts/cycle_analytics/components/stage_staging_component.js.es6
...cycle_analytics/components/stage_staging_component.js.es6
+1
-1
app/assets/stylesheets/pages/cycle_analytics.scss
app/assets/stylesheets/pages/cycle_analytics.scss
+5
-5
app/views/projects/cycle_analytics/show.html.haml
app/views/projects/cycle_analytics/show.html.haml
+2
-2
No files found.
app/assets/javascripts/cycle_analytics/components/stage_staging_component.js.es6
View file @
b3700f96
/* 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 @
b3700f96
...
...
@@ -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 @
b3700f96
...
...
@@ -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-na
v-item-cell.stage-na
me
{{ 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