mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-17 18:26:57 +00:00
4.8.2
Fixed: The Add Action menu for Chat Actions being too tall to fit within the FFZ Control Center at some resolutions. Fixed: Styling for various hover-able UI elements. Fixed: User Context Chat Actions set to show/hide based upon a message's deleted state not properly doing so. Fixed: The FFZ emote menu appearing too tall at times. Fixed: Remove debug logging. Changed: The `Delete All` button in the Chat Actions editors will now not immediately clear all actions, but rather show another button asking the user to confirm. Changed: Add a page rule for dashboard pop-out chat so that profiles can be made for it. Changed: Update `CHAT_TYPES` from Twitch.
This commit is contained in:
parent
056cc9c401
commit
39fb185ecf
27 changed files with 130 additions and 83 deletions
|
@ -256,14 +256,14 @@ textarea.tw-input {
|
|||
}
|
||||
}
|
||||
|
||||
@mixin button-colors($color, $text, $shadow) {
|
||||
&:hover, &:focus {
|
||||
@mixin button-colors($color, $border, $text, $shadow) {
|
||||
&:hover, &:focus, &:active {
|
||||
background: $color !important;
|
||||
border-color: $color !important;
|
||||
border-color: $border !important;
|
||||
color: $text !important;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
&:focus, &:active {
|
||||
box-shadow: 0 0 $shadow $color !important;
|
||||
}
|
||||
}
|
||||
|
@ -273,12 +273,28 @@ textarea.tw-input {
|
|||
color: #fff !important;
|
||||
}
|
||||
|
||||
.ffz-button--hollow {
|
||||
border-color: #dad8de !important;
|
||||
background-color: transparent !important;
|
||||
color: #000 !important;
|
||||
|
||||
@include button-colors(#6441a4, #9a7fcc, #fff, #7d5bbc);
|
||||
|
||||
.tw-root--theme-dark & {
|
||||
border-color: #424242 !important;
|
||||
color: #dadada !important;
|
||||
|
||||
@include button-colors(#7d5bbe, #9a7fcc, #eeeeee, #7d5bbe)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.ffz--button-enable {
|
||||
@include button-colors(#007600, #fff, 6px);
|
||||
@include button-colors(#007600, #007600, #fff, 6px);
|
||||
}
|
||||
|
||||
.ffz--button-disable {
|
||||
@include button-colors(#bd0f0f, #fff, 6px);
|
||||
@include button-colors(#bd0f0f, #bd0f0f, #fff, 6px);
|
||||
}
|
||||
|
||||
.ffz--example-report {
|
||||
|
@ -299,4 +315,9 @@ textarea.tw-input {
|
|||
position: absolute;
|
||||
top: 1rem;
|
||||
right: 3rem;
|
||||
}
|
||||
|
||||
|
||||
.ffz-mh-30 {
|
||||
max-height: 30rem;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue