-
Notifications
You must be signed in to change notification settings - Fork 913
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert FtSubscribeButton and watch-video-info SCSS to CSS (#6814)
* Convert FtSubscribeButton SCSS to CSS * Convert watch-video-info SCSS to CSS * Fix CSS formatting Co-authored-by: PikachuEXE <git@pikachuexe.net> --------- Co-authored-by: PikachuEXE <git@pikachuexe.net>
- Loading branch information
1 parent
0b9361f
commit c213904
Showing
6 changed files
with
278 additions
and
293 deletions.
There are no files selected for viewing
139 changes: 139 additions & 0 deletions
139
src/renderer/components/FtSubscribeButton/FtSubscribeButton.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,139 @@ | ||
.buttonList { | ||
margin: 5px; | ||
margin-block-end: 10px; | ||
border-radius: 4px; | ||
block-size: fit-content; | ||
box-shadow: 0 1px 2px rgb(0 0 0 / 50%); | ||
display: flex; | ||
flex-wrap: nowrap; | ||
|
||
/* addresses odd clipping behavior when adjusting window size */ | ||
background-color: var(--primary-color); | ||
} | ||
|
||
.ftSubscribeButton { | ||
position: relative; | ||
text-align: start; | ||
inline-size: fit-content; | ||
} | ||
|
||
.subscribeButton { | ||
min-inline-size: 150px; | ||
white-space: initial; | ||
} | ||
|
||
.subscribeButton, | ||
.profileDropdownToggle { | ||
align-self: center; | ||
margin-block: 0; | ||
margin-inline: 0; | ||
} | ||
|
||
.profileDropdownToggle { | ||
border-inline-start: none !important; | ||
border-start-start-radius: 0; | ||
border-end-start-radius: 0; | ||
display: inline-block; | ||
min-inline-size: 1em; | ||
padding-inline: 10px; | ||
box-sizing: content-box; | ||
} | ||
|
||
.subscribeButton.hasProfileDropdownToggle { | ||
min-inline-size: 100px; | ||
padding-inline: 5px; | ||
border-inline-end: 2px solid var(--primary-color-active) !important; | ||
border-start-end-radius: 0; | ||
border-end-end-radius: 0; | ||
box-sizing: content-box; | ||
} | ||
|
||
.subscribeButton.hasProfileDropdownToggle, | ||
.profileDropdownToggle { | ||
padding-block: 5px; | ||
padding-inline: 6px; | ||
box-shadow: none; | ||
flex: auto; | ||
block-size: 2em; | ||
} | ||
|
||
.subscribeButton.dropdownOpened, | ||
.profileDropdownToggle.dropdownOpened { | ||
border-end-start-radius: 0; | ||
border-end-end-radius: 0; | ||
} | ||
|
||
.profileDropdown { | ||
background-color: var(--side-nav-color); | ||
box-shadow: 0 1px 2px rgb(0 0 0 / 50%); | ||
color: var(--secondary-text-color); | ||
display: inline; | ||
font-size: 12px; | ||
max-block-size: 200px; | ||
margin-block: -10px 0; | ||
margin-inline: 5px 0; | ||
overflow-y: scroll; | ||
position: absolute; | ||
text-align: center; | ||
user-select: none; | ||
z-index: 3; | ||
|
||
/* accounts for parent's left and right margins */ | ||
inline-size: calc(100% - 10px); | ||
} | ||
|
||
.profileList { | ||
list-style-type: none; | ||
margin: 0; | ||
padding-inline: 0; | ||
} | ||
|
||
.profile { | ||
cursor: pointer; | ||
display: flex; | ||
gap: 0.5em; | ||
padding-inline-start: 0.5em; | ||
block-size: 50px; | ||
align-items: center; | ||
transition: background 0.2s ease-out; | ||
} | ||
|
||
.profile:hover { | ||
background-color: var(--side-nav-hover-color); | ||
color: var(--side-nav-hover-text-color); | ||
transition: background 0.2s ease-in; | ||
} | ||
|
||
.colorOption { | ||
inline-size: 40px; | ||
block-size: 40px; | ||
cursor: pointer; | ||
align-items: center; | ||
display: flex; | ||
justify-content: center; | ||
flex-shrink: 0; | ||
border-radius: 50%; | ||
} | ||
|
||
.initial { | ||
font-size: 20px; | ||
line-height: 1em; | ||
text-align: center; | ||
user-select: none; | ||
} | ||
|
||
.profileName { | ||
padding-inline-end: 1em; | ||
text-align: start; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
|
||
.profile.subscribed { | ||
background-color: var(--primary-color); | ||
} | ||
|
||
.profile.subscribed > .profileName { | ||
color: var(--text-with-main-color); | ||
} |
143 changes: 0 additions & 143 deletions
143
src/renderer/components/FtSubscribeButton/FtSubscribeButton.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.