1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 01:56:55 +00:00

4.0.0-rc8

* Added: Initial support for chat on Clips.
* Fixed: Do not attempt to apply the dark theme to the Twitch Prime landing page.
* Fixed: Remove debug logging from Chat on Videos.
This commit is contained in:
SirStendec 2018-07-20 18:42:17 -04:00
parent ae9aa66799
commit 2297edb051
26 changed files with 962 additions and 34 deletions

View file

@ -1,6 +1,7 @@
@import 'icons';
@import 'tooltips';
@import 'widgets';
@import 'main_menu';
@import 'chat';

67
styles/main_menu.scss Normal file
View file

@ -0,0 +1,67 @@
.ffz-main-menu {
&:not(.maximized) {
position: absolute;
top: 25%;
left: 25%;
z-index: 99999999;
height: 50vh;
width: 50vw;
min-width: 640px;
min-height: 300px;
> header {
cursor: move;
}
&.faded {
opacity: 0.5;
&:hover {
opacity: 0.75;
}
}
}
&.maximized {
position: absolute;
top: 0 !important;
left: 0 !important;
width: 100%;
height: 100%;
&, .tw-theme--dark & {
border: none !important;
}
> header {
cursor: default;
padding: .9rem 3rem;
}
}
&.exclusive {
z-index: 1000;
}
.want-ps {
overflow-y: auto;
}
> header {
user-select: none;
padding: .9rem 1rem .9rem 2rem;
.tw-search-input {
max-width: 40rem
}
}
}
.ffz-has-menu > :not(.ffz-main-menu) {
visibility: hidden;
}