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
a91aeafa
Commit
a91aeafa
authored
Nov 29, 2018
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix order by dropdown alignment in mobile screens
parent
7928b1ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
9 deletions
+14
-9
ee/app/assets/stylesheets/pages/roadmap.scss
ee/app/assets/stylesheets/pages/roadmap.scss
+14
-9
No files found.
ee/app/assets/stylesheets/pages/roadmap.scss
View file @
a91aeafa
...
...
@@ -44,11 +44,16 @@ $column-right-gradient: linear-gradient(
@include
media-breakpoint-down
(
xs
)
{
display
:
flex
;
.dropdown-toggle
.fa-chevron-down
{
position
:
relative
;
top
:
5px
;
right
:
0
;
float
:
right
;
.dropdown-menu-sort
{
// This is a hack to fix dropdown alignment in small screens
// where Bootstrap applies inline `transform: translate3d(...)`
// and since our dropdown button has sort direction button
// present, alignment needs to compensate for that space
// without which it appears shifted towards left.
//
// One more approach is to override `transform` using `!important`
// but that too involves using magic number
margin-left
:
27px
;
}
}
}
...
...
@@ -92,7 +97,7 @@ $column-right-gradient: linear-gradient(
.
roadmap-timeline-section
.
timeline-header-blank
:
:
after
,
.
epics-list-section
.
epic-details-cell
::
after
{
content
:
''
;
content
:
""
;
position
:
absolute
;
top
:
0
;
right
:
-
$grid-size
;
...
...
@@ -176,7 +181,7 @@ $column-right-gradient: linear-gradient(
}
.
today-bar
:
:
before
{
content
:
''
;
content
:
""
;
position
:
absolute
;
top
:
-2px
;
left
:
-3px
;
...
...
@@ -190,7 +195,7 @@ $column-right-gradient: linear-gradient(
&.
scroll-top-shadow
.
timeline-header-blank
:
:
before
{
@include
roadmap-scroll-mixin
;
content
:
''
;
content
:
""
;
position
:
absolute
;
left
:
0
;
bottom
:
-
$grid-size
;
...
...
@@ -296,7 +301,7 @@ $column-right-gradient: linear-gradient(
&.
start-date-outside
:
:
before
,
&.
end-date-outside
::
after
{
content
:
''
;
content
:
""
;
position
:
absolute
;
top
:
0
;
height
:
100%
;
...
...
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