-
Notifications
You must be signed in to change notification settings - Fork 884
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements remaining styling and logic
- Loading branch information
Showing
5 changed files
with
203 additions
and
177 deletions.
There are no files selected for viewing
133 changes: 0 additions & 133 deletions
133
src/renderer/components/ft-subscribe-button/ft-subscribe-button.css
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
146 changes: 146 additions & 0 deletions
146
src/renderer/components/ft-subscribe-button/ft-subscribe-button.scss
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,146 @@ | ||
.buttonList { | ||
margin: 5px; | ||
margin-block-end: 10px; | ||
border-radius: 4px; | ||
block-size: fit-content; | ||
box-shadow: 0px 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; | ||
} | ||
|
||
/* Ensures style here overrides style of .btn */ | ||
.subscribeButton.btn { | ||
min-inline-size: 150px; | ||
white-space: initial; | ||
} | ||
|
||
.subscribeButton.btn, .profileDropdownToggle.btn { | ||
align-self: center; | ||
margin-block: 0; | ||
margin-inline: 0; | ||
} | ||
|
||
.dropdownOpened { | ||
.subscribeButton, .profileDropdownToggle { | ||
border-end-start-radius: 0; | ||
border-end-end-radius: 0; | ||
} | ||
} | ||
|
||
.profileDropdownToggle.btn { | ||
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; | ||
} | ||
|
||
.hasProfileDropdownToggle { | ||
.subscribeButton.btn { | ||
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; | ||
} | ||
} | ||
|
||
.hasProfileDropdownToggle > .subscribeButton.btn, .profileDropdownToggle.btn { | ||
padding-block: 5px; | ||
padding-inline: 6px; | ||
box-shadow: none; | ||
flex: auto; | ||
block-size: 2em; | ||
} | ||
|
||
.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; | ||
-webkit-user-select: none; | ||
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; | ||
-webkit-transition: background 0.2s ease-out; | ||
-moz-transition: background 0.2s ease-out; | ||
-o-transition: background 0.2s ease-out; | ||
transition: background 0.2s ease-out; | ||
|
||
&:hover { | ||
background-color: var(--side-nav-hover-color); | ||
color: var(--side-nav-hover-text-color); | ||
-moz-transition: background 0.2s ease-in; | ||
-o-transition: background 0.2s ease-in; | ||
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%; | ||
-webkit-border-radius: 50%; | ||
} | ||
|
||
.initial { | ||
font-size: 20px; | ||
line-height: 1em; | ||
text-align: center; | ||
user-select: none; | ||
-webkit-user-select: none; | ||
} | ||
|
||
.profileName { | ||
padding-inline-end: 1em; | ||
text-align: start; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
|
||
&.subscribed { | ||
background-color: var(--primary-color); | ||
|
||
.profileName { | ||
color: var(--text-with-main-color); | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.