mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-16 18:06:55 +00:00
4.20.6
* Added: Settings for replacing the native Twitch viewer count with a custom display that doesn't animate when changing. (Closes #841) * Fixed: Replace rendering for the Chat Paused footer so that we can render the correct text and disable mouse interaction when appropriate. * Fixed: Hiding Recommended Channels causing the Online Friends section of the side navigation bar to disappear. (Closes #482)
This commit is contained in:
parent
0532357eae
commit
bc1ca88a1e
17 changed files with 140 additions and 25 deletions
|
@ -63,6 +63,7 @@
|
|||
.ffz-i-fast-fw:before { content: '\e83d'; } /* '' */
|
||||
.ffz-i-comp-on:before { content: '\e83e'; } /* '' */
|
||||
.ffz-i-comp-off:before { content: '\e83f'; } /* '' */
|
||||
.ffz-i-viewers:before { content: '\e840'; } /* '' */
|
||||
.ffz-i-link-ext:before { content: '\f08e'; } /* '' */
|
||||
.ffz-i-twitter:before { content: '\f099'; } /* '' */
|
||||
.ffz-i-github:before { content: '\f09b'; } /* '' */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -63,6 +63,7 @@
|
|||
.ffz-i-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-comp-on { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-comp-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-viewers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-github { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
.ffz-i-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-comp-on { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-comp-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-viewers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
.ffz-i-github { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
@font-face {
|
||||
font-family: 'ffz-fontello';
|
||||
src: url('../font/ffz-fontello.eot?47364399');
|
||||
src: url('../font/ffz-fontello.eot?47364399#iefix') format('embedded-opentype'),
|
||||
url('../font/ffz-fontello.woff2?47364399') format('woff2'),
|
||||
url('../font/ffz-fontello.woff?47364399') format('woff'),
|
||||
url('../font/ffz-fontello.ttf?47364399') format('truetype'),
|
||||
url('../font/ffz-fontello.svg?47364399#ffz-fontello') format('svg');
|
||||
src: url('../font/ffz-fontello.eot?75662346');
|
||||
src: url('../font/ffz-fontello.eot?75662346#iefix') format('embedded-opentype'),
|
||||
url('../font/ffz-fontello.woff2?75662346') format('woff2'),
|
||||
url('../font/ffz-fontello.woff?75662346') format('woff'),
|
||||
url('../font/ffz-fontello.ttf?75662346') format('truetype'),
|
||||
url('../font/ffz-fontello.svg?75662346#ffz-fontello') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
@ -15,7 +15,7 @@
|
|||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
@font-face {
|
||||
font-family: 'ffz-fontello';
|
||||
src: url('../font/ffz-fontello.svg?47364399#ffz-fontello') format('svg');
|
||||
src: url('../font/ffz-fontello.svg?75662346#ffz-fontello') format('svg');
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
@ -24,7 +24,7 @@
|
|||
font-family: "ffz-fontello";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
speak: none;
|
||||
speak: never;
|
||||
|
||||
display: inline-block;
|
||||
text-decoration: inherit;
|
||||
|
@ -119,6 +119,7 @@
|
|||
.ffz-i-fast-fw:before { content: '\e83d'; } /* '' */
|
||||
.ffz-i-comp-on:before { content: '\e83e'; } /* '' */
|
||||
.ffz-i-comp-off:before { content: '\e83f'; } /* '' */
|
||||
.ffz-i-viewers:before { content: '\e840'; } /* '' */
|
||||
.ffz-i-link-ext:before { content: '\f08e'; } /* '' */
|
||||
.ffz-i-twitter:before { content: '\f099'; } /* '' */
|
||||
.ffz-i-github:before { content: '\f09b'; } /* '' */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue