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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
7643e666
Commit
7643e666
authored
Apr 11, 2019
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes stylelint issues for builds.scss
Replaces CSS with utility classes Removes unused CSS
parent
ec780444
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
47 deletions
+18
-47
app/assets/javascripts/jobs/components/job_app.vue
app/assets/javascripts/jobs/components/job_app.vue
+1
-1
app/assets/javascripts/jobs/components/job_container_item.vue
...assets/javascripts/jobs/components/job_container_item.vue
+6
-2
app/assets/javascripts/jobs/components/job_log_controllers.vue
...ssets/javascripts/jobs/components/job_log_controllers.vue
+5
-1
app/assets/javascripts/jobs/components/trigger_block.vue
app/assets/javascripts/jobs/components/trigger_block.vue
+1
-1
app/assets/stylesheets/pages/builds.scss
app/assets/stylesheets/pages/builds.scss
+5
-42
No files found.
app/assets/javascripts/jobs/components/job_app.vue
View file @
7643e666
...
...
@@ -275,7 +275,7 @@ export default {
<!-- job log -->
<div
v-if=
"hasTrace"
class=
"build-trace-container"
class=
"build-trace-container
position-relative
"
:class=
"
{ 'prepend-top-default': !job.archived }"
>
<log-top-bar
...
...
app/assets/javascripts/jobs/components/job_container_item.vue
View file @
7643e666
...
...
@@ -43,7 +43,7 @@ export default {
<
template
>
<div
class=
"build-job"
class=
"build-job
position-relative
"
:class=
"
{
retried: job.retried,
active: isActive,
...
...
@@ -56,7 +56,11 @@ export default {
data-boundary=
"viewport"
class=
"js-job-link"
>
<icon
v-if=
"isActive"
name=
"arrow-right"
class=
"js-arrow-right icon-arrow-right"
/>
<icon
v-if=
"isActive"
name=
"arrow-right"
class=
"js-arrow-right icon-arrow-right position-absolute d-block"
/>
<ci-icon
:status=
"job.status"
/>
...
...
app/assets/javascripts/jobs/components/job_log_controllers.vue
View file @
7643e666
...
...
@@ -75,7 +75,11 @@ export default {
<template
v-if=
"isTraceSizeVisible"
>
{{
jobLogSize
}}
<gl-link
v-if=
"rawPath"
:href=
"rawPath"
class=
"js-raw-link raw-link"
>
<gl-link
v-if=
"rawPath"
:href=
"rawPath"
class=
"js-raw-link text-plain text-underline prepend-left-5"
>
{{
s__
(
'
Job|Complete Raw
'
)
}}
</gl-link>
</
template
>
...
...
app/assets/javascripts/jobs/components/trigger_block.vue
View file @
7643e666
...
...
@@ -52,7 +52,7 @@ export default {
</p>
<template
v-if=
"hasVariables"
>
<p
class=
"trigger-variables-btn-container"
>
<p
class=
"trigger-variables-btn-container
d-flex
"
>
<span
class=
"font-weight-bold"
>
{{
__
(
'
Trigger variables:
'
)
}}
</span>
<gl-button
...
...
app/assets/stylesheets/pages/builds.scss
View file @
7643e666
...
...
@@ -46,10 +46,6 @@
}
.build-page
{
.build-trace-container
{
position
:
relative
;
}
.build-trace
{
@include
build-trace
();
}
...
...
@@ -104,18 +100,6 @@
top
:
0
;
}
.truncated-info
{
.truncated-info-size
{
margin
:
0
5px
;
}
.raw-link
{
color
:
$gl-text-color
;
margin-left
:
5px
;
text-decoration
:
underline
;
}
}
.controllers
{
@include
build-controllers
(
15px
,
center
,
false
,
0
,
inline
,
0
);
}
...
...
@@ -142,12 +126,6 @@
}
}
.with-performance-bar
.build-page
{
.top-bar.affix
{
top
:
$header-height
+
$performance-bar-height
;
}
}
.build-header
{
.ci-header-container
,
.header-action-buttons
{
...
...
@@ -233,7 +211,6 @@
}
.trigger-variables-btn-container
{
@extend
.d-flex
;
justify-content
:
space-between
;
align-items
:
center
;
...
...
@@ -277,12 +254,6 @@
.retry-link
{
display
:
block
;
.btn
{
i
{
margin-left
:
5px
;
}
}
.btn-inverted-secondary
{
color
:
$blue-500
;
...
...
@@ -329,16 +300,12 @@
}
}
.build-job
{
position
:
relative
;
.icon-arrow-right
{
position
:
absolute
;
left
:
15px
;
top
:
20px
;
display
:
block
;
}
.build-job
{
&
.active
{
font-weight
:
$gl-font-weight-bold
;
}
...
...
@@ -350,10 +317,6 @@
&
:hover
{
background-color
:
$gray-darker
;
}
.icon-retry
{
margin-left
:
3px
;
}
}
}
...
...
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