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
Boxiang Sun
gitlab-ce
Commits
234076ab
Commit
234076ab
authored
May 29, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed style from components & moved to repo.scss
parent
552c0c99
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
98 additions
and
92 deletions
+98
-92
app/assets/javascripts/ide/components/jobs/item.vue
app/assets/javascripts/ide/components/jobs/item.vue
+0
-19
app/assets/javascripts/ide/components/jobs/stage.vue
app/assets/javascripts/ide/components/jobs/stage.vue
+2
-27
app/assets/javascripts/ide/components/panes/right.vue
app/assets/javascripts/ide/components/panes/right.vue
+0
-18
app/assets/javascripts/ide/components/pipelines/list.vue
app/assets/javascripts/ide/components/pipelines/list.vue
+0
-28
app/assets/stylesheets/pages/repo.scss
app/assets/stylesheets/pages/repo.scss
+96
-0
No files found.
app/assets/javascripts/ide/components/jobs/item.vue
View file @
234076ab
...
...
@@ -44,22 +44,3 @@ export default {
</span>
</div>
</
template
>
<
style
scoped
>
.ide-job-item
{
display
:
flex
;
padding
:
16px
;
}
.ide-job-item
:not
(
:last-child
)
{
border-bottom
:
1px
solid
#e5e5e5
;
}
.ide-job-item
.ci-status-icon
{
display
:
flex
;
justify-content
:
center
;
height
:
20px
;
margin-top
:
-2px
;
overflow
:
hidden
;
}
</
style
>
app/assets/javascripts/ide/components/jobs/stage.vue
View file @
234076ab
...
...
@@ -54,7 +54,7 @@ export default {
<
template
>
<div
class=
"card prepend-top-default"
class=
"
ide-stage
card prepend-top-default"
>
<div
class=
"card-header"
...
...
@@ -86,7 +86,7 @@ export default {
</div>
<icon
:name=
"collapseIcon"
css-classes=
"
pull-right
"
css-classes=
"
ide-stage-collapse-icon
"
/>
</div>
<div
...
...
@@ -106,28 +106,3 @@ export default {
</div>
</div>
</template>
<
style
scoped
>
.card-header
{
display
:
flex
;
cursor
:
pointer
;
}
.card-header
.ci-status-icon
{
display
:
flex
;
align-items
:
center
;
}
.card-header
.pull-right
{
margin
:
auto
0
auto
auto
;
}
.card-body
{
padding
:
0
;
}
.ide-stage-title
{
white-space
:
nowrap
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
}
</
style
>
app/assets/javascripts/ide/components/panes/right.vue
View file @
234076ab
...
...
@@ -63,21 +63,3 @@ export default {
</nav>
</div>
</
template
>
<
style
>
.ide-right-sidebar
{
width
:
auto
;
min-width
:
60px
;
}
.ide-right-sidebar
.ide-activity-bar
{
border-left
:
1px
solid
#eaeaea
;
}
.ide-right-sidebar
.multi-file-commit-panel-inner
{
width
:
350px
;
padding
:
8px
16px
;
background-color
:
#fff
;
border-left
:
1px
solid
#eaeaea
;
}
</
style
>
app/assets/javascripts/ide/components/pipelines/list.vue
View file @
234076ab
...
...
@@ -140,31 +140,3 @@ export default {
</template>
</div>
</template>
<
style
scoped
>
.ide-pipeline
{
display
:
flex
;
flex-direction
:
column
;
height
:
100%
;
}
.ide-pipeline-list
{
flex
:
1
;
overflow
:
auto
;
}
.ide-pipeline-header
{
min-height
:
50px
;
padding-left
:
16px
;
padding-right
:
16px
;
}
.ide-pipeline-header
.ci-status-icon
{
display
:
flex
;
}
.ide-pipeline
.empty-state
{
margin-top
:
auto
;
margin-bottom
:
auto
;
}
</
style
>
app/assets/stylesheets/pages/repo.scss
View file @
234076ab
...
...
@@ -1148,3 +1148,99 @@
}
}
}
.ide-right-sidebar
{
width
:
auto
;
min-width
:
60px
;
.ide-activity-bar
{
border-left
:
1px
solid
$white-dark
;
}
.multi-file-commit-panel-inner
{
width
:
350px
;
padding
:
$grid-size
$gl-padding
;
background-color
:
$white-light
;
border-left
:
1px
solid
$white-dark
;
}
}
.ide-pipeline
{
display
:
flex
;
flex-direction
:
column
;
height
:
100%
;
.empty-state
{
margin-top
:
auto
;
margin-bottom
:
auto
;
p
{
margin
:
$grid-size
0
;
text-align
:
center
;
line-height
:
24px
;
}
.btn
,
h4
{
margin
:
0
;
}
}
}
.ide-pipeline-list
{
flex
:
1
;
overflow
:
auto
;
}
.ide-pipeline-header
{
min-height
:
50px
;
padding-left
:
$gl-padding
;
padding-right
:
$gl-padding
;
.ci-status-icon
{
display
:
flex
;
}
}
.ide-job-item
{
display
:
flex
;
padding
:
16px
;
&
:not
(
:last-child
)
{
border-bottom
:
1px
solid
$border-color
;
}
.ci-status-icon
{
display
:
flex
;
justify-content
:
center
;
height
:
20px
;
margin-top
:
-2px
;
overflow
:
hidden
;
}
}
.ide-stage
{
.card-header
{
display
:
flex
;
cursor
:
pointer
;
.ci-status-icon
{
display
:
flex
;
align-items
:
center
;
}
}
.card-body
{
padding
:
0
;
}
}
.ide-stage-collapse-icon
{
margin
:
auto
0
auto
auto
;
}
.ide-stage-title
{
white-space
:
nowrap
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
}
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