-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Video length on page #4776
base: master
Are you sure you want to change the base?
Video length on page #4776
Conversation
Co-authored-by: syeopite <70992037+syeopite@users.noreply.github.com>
assets/css/default.css
Outdated
.dark-theme .length-watch-page{ | ||
position: relative; | ||
background-color: #fff; | ||
color: rgba(35, 35, 35, 1); | ||
border-radius: 2px; | ||
padding: 4px; | ||
font-size: 20px; | ||
right: 0.25em; | ||
bottom: 0.25em; | ||
margin-left: 10px; | ||
margin-right: 10px; | ||
} | ||
|
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.
You don't need to specify these twice! In CSS the styles will inherit from the first .length-watch-page
selector
background-color: #fff; | ||
color: rgba(35, 35, 35, 1); |
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.
You're going to have to specify these again under the @media (prefers-color-scheme: dark)
media query unfortunately as to support automatic theming
"Add to playlist": "Add to playlist", | ||
"Add to playlist: ": "Add to playlist: ", | ||
"Answer": "Answer", | ||
"Search for videos": "Search for videos", |
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.
Please do not change the indentation level in this file!
It will break out translation tool (Weblate)!
Good evening. This PR addresses the adjustments requested on this other (closed) PR that I was working on: #4274