Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
79727345
Commit
79727345
authored
Dec 05, 2014
by
Mathieu Giraud
Browse files
css: positionning 'div.stats'
parent
1c01b8e4
Changes
3
Hide whitespace changes
Inline
Side-by-side
browser/css/dark.css
View file @
79727345
...
...
@@ -780,9 +780,16 @@ span.logo {
position
:
relative
;
text-align
:
center
;
float
:
left
;
width
:
-moz-calc
(
100%
-
475px
);
width
:
-webkit-calc
(
100%
-
475px
);
width
:
calc
(
100%
-
475px
);
width
:
-moz-calc
(
100%
-
675px
);
width
:
-webkit-calc
(
100%
-
675px
);
width
:
calc
(
100%
-
675px
);
}
.stats
{
position
:
relative
;
text-align
:
right
;
float
:
right
;
width
:
197px
;
padding-right
:
3px
;
}
#segmenter
{
overflow-x
:
scroll
!important
;
...
...
browser/css/light.css
View file @
79727345
...
...
@@ -780,9 +780,16 @@ span.logo {
position
:
relative
;
text-align
:
center
;
float
:
left
;
width
:
-moz-calc
(
100%
-
475px
);
width
:
-webkit-calc
(
100%
-
475px
);
width
:
calc
(
100%
-
475px
);
width
:
-moz-calc
(
100%
-
675px
);
width
:
-webkit-calc
(
100%
-
675px
);
width
:
calc
(
100%
-
675px
);
}
.stats
{
position
:
relative
;
text-align
:
right
;
float
:
right
;
width
:
197px
;
padding-right
:
3px
;
}
#segmenter
{
overflow-x
:
scroll
!important
;
...
...
browser/css/vidjil.less
View file @
79727345
...
...
@@ -392,6 +392,7 @@ line {
/*Metric*/
@width_left_container : 475px;
@width_stats: 200px;
@width_scrollbar : 30px;
@width_clusterBox :16px;
@width_starBox : 16px;
...
...
@@ -922,9 +923,16 @@ span.logo
position: relative;
text-align: center;
float: left;
width: -moz-calc(~"100%" - @width_left_container);
width: -webkit-calc(~"100%" - @width_left_container);
width: calc(~"100%" - @width_left_container);
width: -moz-calc(~"100%" - (@width_left_container + @width_stats));
width: -webkit-calc(~"100%" - (@width_left_container + @width_stats));
width: calc(~"100%" - (@width_left_container + @width_stats));
}
.stats {
position: relative;
text-align: right;
float: right;
width: @width_stats - 3px;
padding-right: 3px;
}
#segmenter {
...
...
Vidjil Team
@vidjilteam
Mentioned in issue
#1043 (closed)
·
Nov 29, 2016
Mentioned in issue
#1043 (closed)
Mentioned in issue #1043
Toggle commit list
Write
Preview
Supports
Markdown
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