-
Notifications
You must be signed in to change notification settings - Fork 861
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
Conversation
src/backend/_scss/application.scss
Outdated
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 comment
The reason will be displayed to describe this comment to others. Learn more.
!important should not be used
src/backend/_scss/application.scss
Outdated
padding-left: 30px; | ||
|
||
&.sticky{ | ||
position: fixed; |
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.
Properties should be ordered margin-top, max-height, overflow-y, position, top
src/backend/_scss/application.scss
Outdated
margin-top: 16%; | ||
padding-left: 30px; | ||
|
||
&.sticky{ |
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.
Opening curly brace {
should be preceded by one space
src/backend/_scss/application.scss
Outdated
@@ -2480,3 +2480,21 @@ a.skip:hover { | |||
} | |||
} | |||
} | |||
|
|||
.track-room-names { |
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
Checklist
development
branch.Short description of what this resolves:
Changes proposed in this pull request:
Fixes #1736