forked from FreeTubeApp/FreeTube
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make adding themes easier (FreeTubeApp#5071)
* Centralize styling in themes.css, add code commenting, and simplify destructive color logic * Add missing Invidious / YT logo theme overrides * Update theme ordering to reflect their ordering elsewhere in the codebase * Update src/renderer/themes.css Co-authored-by: ChunkyProgrammer <[email protected]> * remove .gray class --------- Co-authored-by: Jason <[email protected]> Co-authored-by: ChunkyProgrammer <[email protected]> Co-authored-by: efb4f5ff-1298-471a-8973-3d47447115dc <73130443+efb4f5ff-1298-471a-8973-3d47447115dc@users.noreply.github.com>
- Loading branch information
1 parent
adb8462
commit 0dc3e39
Showing
5 changed files
with
401 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
src/renderer/components/ft-share-button/ft-share-button.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
.shareLinks { | ||
display: grid; | ||
grid-auto-flow: column; | ||
grid-template-rows: auto auto; | ||
padding: 12px; | ||
inline-size: max-content; | ||
} | ||
|
||
.header { | ||
color: var(--primary-text-color); | ||
font-size: 18px; | ||
font-weight: bold; | ||
margin-block: 4px 8px; | ||
margin-inline: 0; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.buttons { | ||
display: flex; | ||
flex-direction: column; | ||
max-inline-size: min-content; | ||
min-inline-size: 150px; | ||
} | ||
|
||
.action { | ||
padding: 6px; | ||
white-space: initial; | ||
} | ||
|
||
.divider { | ||
background: var(--tertiary-text-color); | ||
grid-row: span 3; | ||
margin-block: 0; | ||
margin-inline: 12px; | ||
inline-size: 1px; | ||
} | ||
|
||
.youtubeLogo { | ||
block-size: 18px; | ||
inline-size: auto; | ||
} | ||
|
||
.invidious { | ||
letter-spacing: -0.4px; | ||
} | ||
|
||
.invidiousLogo { | ||
background-size: cover; | ||
display: inline-block; | ||
block-size: 20px; | ||
margin-inline-end: 2px; | ||
inline-size: 20px; | ||
} | ||
|
||
@media only screen and (width <= 450px) { | ||
.shareLinks { | ||
grid-auto-flow: row; | ||
margin-inline: auto; | ||
justify-items: center; | ||
max-inline-size: max-content; | ||
} | ||
|
||
.header.invidious { | ||
margin-block-start: 20px; | ||
} | ||
|
||
.buttons { | ||
max-inline-size: min-content; | ||
min-inline-size: 180px; | ||
} | ||
|
||
.divider { | ||
display: none; | ||
} | ||
} |
117 changes: 0 additions & 117 deletions
117
src/renderer/components/ft-share-button/ft-share-button.scss
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.