Conversation
Add YUR Fit link in list view Update release notes Update Patreon Credits
Merge README to beta branch
Fix a quick typo
Remove unnecessary emergency mods list
Add new patron to credits
Add upload date in List View
Added timeouts in ms for warnings based on warning message length
| #resize-button, #minimize-button { | ||
| &:hover { | ||
| background: silver; | ||
| background: rgba(128, 128, 128, 0.3); |
There was a problem hiding this comment.
Color literals like rgba(128, 128, 128, 0.3) should only be used in variable declarations; they should be referred to via variable everywhere else.
| #close-button { | ||
| &:hover { | ||
| background: #e0021f; | ||
| background: #ff1938; |
There was a problem hiding this comment.
Color literals like #ff1938 should only be used in variable declarations; they should be referred to via variable everywhere else.
|
|
||
| &.theme-dark { | ||
| background: #252525; | ||
| background: rgba(0, 0, 0, 0.6); |
There was a problem hiding this comment.
Color literals like rgba(0, 0, 0, 0.6) should only be used in variable declarations; they should be referred to via variable everywhere else.
| } | ||
| } | ||
|
|
||
| h5.scanning-text { |
There was a problem hiding this comment.
Avoid qualifying class selectors with an element.
| text-align: center; | ||
|
|
||
| &::before { | ||
| &:first-child::before { |
| white-space: nowrap; | ||
| text-overflow: ellipsis; | ||
| } | ||
| .upload-date { |
There was a problem hiding this comment.
Selector should have depth of applicability no greater than 2, but was 3
| margin-bottom: 5px; | ||
| } | ||
|
|
||
| #dl-location, #theme-image-path { |
There was a problem hiding this comment.
Avoid using id selectors
Each selector in a comma sequence should be on its own single line
No description provided.