1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00
* Fixed: Navigating between channels with the audio compressor enabled (or having previously been enabled) causing the player to become stuck loading infinitely. (Closes #1317)
* Fixed: Features on the `clips` and `player` subdomains not working correctly. (Closes #1336)
* Changed: Finish implementing the initial emote effects.
This commit is contained in:
SirStendec 2023-03-06 17:08:47 -05:00
parent e433aa3340
commit 915ad89f58
33 changed files with 839 additions and 152 deletions

View file

@ -76,6 +76,7 @@
.ffz-i-mod:before { content: '\e84a'; } /* '' */
.ffz-i-flag:before { content: '\e84b'; } /* '' */
.ffz-i-mange-suspicious:before { content: '\e84c'; } /* '' */
.ffz-i-fx:before { content: '\e84d'; } /* '' */
.ffz-i-move:before { content: '\f047'; } /* '' */
.ffz-i-link-ext:before { content: '\f08e'; } /* '' */
.ffz-i-twitter:before { content: '\f099'; } /* '' */

File diff suppressed because one or more lines are too long

View file

@ -76,6 +76,7 @@
.ffz-i-mod { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-mange-suspicious { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-fx { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-move { *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 = ' '); }

View file

@ -87,6 +87,7 @@
.ffz-i-mod { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-mange-suspicious { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-fx { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
.ffz-i-move { *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 = ' '); }

View file

@ -1,11 +1,11 @@
@font-face {
font-family: 'ffz-fontello';
src: url('../font/ffz-fontello.eot?30569253');
src: url('../font/ffz-fontello.eot?30569253#iefix') format('embedded-opentype'),
url('../font/ffz-fontello.woff2?30569253') format('woff2'),
url('../font/ffz-fontello.woff?30569253') format('woff'),
url('../font/ffz-fontello.ttf?30569253') format('truetype'),
url('../font/ffz-fontello.svg?30569253#ffz-fontello') format('svg');
src: url('../font/ffz-fontello.eot?59946237');
src: url('../font/ffz-fontello.eot?59946237#iefix') format('embedded-opentype'),
url('../font/ffz-fontello.woff2?59946237') format('woff2'),
url('../font/ffz-fontello.woff?59946237') format('woff'),
url('../font/ffz-fontello.ttf?59946237') format('truetype'),
url('../font/ffz-fontello.svg?59946237#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?30569253#ffz-fontello') format('svg');
src: url('../font/ffz-fontello.svg?59946237#ffz-fontello') format('svg');
}
}
*/
@ -131,6 +131,7 @@
.ffz-i-mod:before { content: '\e84a'; } /* '' */
.ffz-i-flag:before { content: '\e84b'; } /* '' */
.ffz-i-mange-suspicious:before { content: '\e84c'; } /* '' */
.ffz-i-fx:before { content: '\e84d'; } /* '' */
.ffz-i-move:before { content: '\f047'; } /* '' */
.ffz-i-link-ext:before { content: '\f08e'; } /* '' */
.ffz-i-twitter:before { content: '\f099'; } /* '' */

View file

@ -60,6 +60,11 @@
}
}
.ffz-i-fx:before {
margin-top: 0.2rem;
vertical-align: middle;
}
.ffz-i-zreknarf:before {
width: 1.3em;
margin: .5rem .05rem 0;

View file

@ -215,6 +215,14 @@ body {
padding: .1rem .2rem;
}
.ffz-effect-tip {
margin: 3px auto 6px;
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
.ffz-badge-tip {
margin: .2rem .4rem;
}