-
Notifications
You must be signed in to change notification settings - Fork 860
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature-1736: Make right sidebar on tracks.html stay on page #2673
Changes from 1 commit
954d008
4c6840d
80e0416
14ce6c4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2480,3 +2480,21 @@ a.skip:hover { | |
} | ||
} | ||
} | ||
|
||
.track-room-names { | ||
color: $room-color; | ||
margin-top: 16%; | ||
padding-left: 30px; | ||
|
||
&.sticky{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Opening curly brace |
||
position: fixed; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Properties should be ordered margin-top, max-height, overflow-y, position, top |
||
top: 0; | ||
overflow-y: auto; | ||
max-height: calc(100vh - 10% - 60px); | ||
margin-top: 60px !important; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. !important should not be used |
||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
display: none; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merge rule
.track-room-names
with rule on line 987