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
Léo-Paul Géneau
gitlab-ce
Commits
2421fc7e
Commit
2421fc7e
authored
Dec 09, 2016
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor SCSS: fix SCSSLints, simplify specificity
parent
ff0c3fc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
111 additions
and
108 deletions
+111
-108
app/assets/stylesheets/pages/builds.scss
app/assets/stylesheets/pages/builds.scss
+111
-108
No files found.
app/assets/stylesheets/pages/builds.scss
View file @
2421fc7e
...
...
@@ -3,6 +3,32 @@
100
%
{
opacity
:
0
;
}
}
@keyframes
blinking-dots
{
0
%
{
background-color
:
rgba
(
$white-light
,
1
);
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
0
.2
)
,
24px
0
0
0
rgba
(
$white-light
,
0
.2
);
}
25
%
{
background-color
:
rgba
(
$white-light
,
0
.4
);
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
2
)
,
24px
0
0
0
rgba
(
$white-light
,
0
.2
);
}
75
%
{
background-color
:
rgba
(
$white-light
,
0
.4
);
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
0
.2
)
,
24px
0
0
0
rgba
(
$white-light
,
1
);
}
100
%
{
background-color
:
rgba
(
$white-light
,
1
);
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
0
.2
)
,
24px
0
0
0
rgba
(
$white-light
,
0
.2
);
}
}
.build-page
{
pre
.trace
{
background
:
$builds-trace-bg
;
...
...
@@ -19,109 +45,109 @@
}
}
.scroll-controls
{
height
:
100%
;
.environment-information
{
background-color
:
$gray-light
;
border
:
1px
solid
$border-color
;
padding
:
12px
$gl-padding
;
border-radius
:
$border-radius-default
;
.scroll-step
{
width
:
31px
;
margin
:
0
0
0
auto
;
svg
{
position
:
relative
;
top
:
1px
;
margin-right
:
5px
;
}
}
}
.scroll-link.sticky
,
.autoscroll-container
{
right
:
25px
;
z-index
:
1
;
}
.scroll-controls
{
height
:
100%
;
.scroll-link
{
display
:
block
;
margin-bottom
:
10px
;
width
:
16px
;
height
:
33px
;
.scroll-step
{
width
:
31px
;
margin
:
0
0
0
auto
;
}
&
.scroll-top
{
background-image
:
image-url
(
'scroll_up'
);
.scroll-link.sticky
,
.autoscroll-container
{
right
:
25px
;
z-index
:
1
;
}
&
:hover
{
background-image
:
image-url
(
'scroll_up_hover_active'
);
}
}
.scroll-link
{
display
:
block
;
margin-bottom
:
10px
;
width
:
16px
;
height
:
33px
;
&
.scroll-bottom
{
background-image
:
image-url
(
'scroll_down
'
);
&
.scroll-top
{
background-image
:
image-url
(
'scroll_up
'
);
&
:hover
{
background-image
:
image-url
(
'scroll_down_hover_active'
);
}
&
:hover
{
background-image
:
image-url
(
'scroll_up_hover_active'
);
}
}
&
.sticky
{
position
:
fixed
;
&
.scroll-top
{
top
:
110px
;
}
&
.scroll-bottom
{
background-image
:
image-url
(
'scroll_down'
);
&
.scroll-bottom
{
bottom
:
-2px
;
}
&
:hover
{
background-image
:
image-url
(
'scroll_down_hover_active'
);
}
}
.autoscroll-container
{
position
:
absolute
;
.status-message
{
display
:
inline-block
;
color
:
$white-light
;
&
.sticky
{
position
:
fixed
;
i
{
display
:
inline-block
;
width
:
16px
;
height
:
33px
;
background-image
:
image-url
(
'scroll_down_hover_active'
);
}
label
{
float
:
left
;
opacity
:
0
;
margin-right
:
10px
;
font-weight
:
normal
;
line-height
:
1
.8
;
transition
:
opacity
1s
ease-out
;
&
.animate
{
animation
:
fade-out-status
2s
ease
;
}
}
&
.scroll-top
{
top
:
110px
;
}
&
:hover
label
{
opacity
:
1
;
}
&
.scroll-bottom
{
bottom
:
-2px
;
}
}
}
&
.sidebar-expanded
{
.autoscroll-container
{
position
:
absolute
;
}
.scroll-link.sticky
,
.autoscroll-container
{
right
:
#{
$gutter_width
+
(
$gl-padding
*
2
)
}
;
}
&
.sidebar-expanded
{
.scroll-link.sticky
,
.autoscroll-container
{
right
:
(
$gutter_width
+
(
$gl-padding
*
2
));
}
}
}
.environment-information
{
background-color
:
$gray-light
;
border
:
1px
solid
$border-color
;
padding
:
12px
$gl-padding
;
border-radius
:
$border-radius-default
;
.status-message
{
display
:
inline-block
;
color
:
$white-light
;
svg
{
position
:
relative
;
top
:
1px
;
margin-right
:
5px
;
.status-icon
{
display
:
inline-block
;
width
:
16px
;
height
:
33px
;
background-image
:
image-url
(
'scroll_down_hover_active'
);
}
.status-text
{
float
:
left
;
opacity
:
0
;
margin-right
:
10px
;
font-weight
:
normal
;
line-height
:
1
.8
;
transition
:
opacity
1s
ease-out
;
&
.animate
{
animation
:
fade-out-status
2s
ease
;
}
}
&
:hover
.status-text
{
opacity
:
1
;
}
}
.build-header
{
...
...
@@ -179,37 +205,14 @@
display
:
block
;
}
.typing_loader
{
width
:
6px
;
height
:
6px
;
border-radius
:
50%
;
animation
:
typing
1s
linear
infinite
;
position
:
relative
;
margin-bottom
:
12px
;
margin-left
:
2px
;
}
@keyframes
typing
{
0
%
{
background-color
:
rgba
(
255
,
255
,
255
,
1
);
box-shadow
:
12px
0px
0px
0px
rgba
(
255
,
255
,
255
,
0
.2
)
,
24px
0px
0px
0px
rgba
(
255
,
255
,
255
,
0
.2
);
}
25
%
{
background-color
:
rgba
(
255
,
255
,
255
,
0
.4
);
box-shadow
:
12px
0px
0px
0px
rgba
(
255
,
255
,
255
,
2
)
,
24px
0px
0px
0px
rgba
(
255
,
255
,
255
,
0
.2
);
}
75
%
{
background-color
:
rgba
(
255
,
255
,
255
,
0
.4
);
box-shadow
:
12px
0px
0px
0px
rgba
(
255
,
255
,
255
,
0
.2
)
,
24px
0px
0px
0px
rgba
(
255
,
255
,
255
,
1
);
}
100
%
{
background-color
:
rgba
(
255
,
255
,
255
,
1
);
box-shadow
:
12px
0px
0px
0px
rgba
(
255
,
255
,
255
,
0
.2
)
,
24px
0px
0px
0px
rgba
(
255
,
255
,
255
,
0
.2
);
}
.build-loader-animation
{
position
:
relative
;
width
:
6px
;
height
:
6px
;
margin-bottom
:
12px
;
margin-left
:
2px
;
border-radius
:
50%
;
animation
:
blinking-dots
1s
linear
infinite
;
}
}
...
...
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