Quick n dirty dress up previewing in the workshop or the dressing room
Flight Rising: Scry Dresser by meow
Details
Authormeow
LicenseNo License
Categoryflightrising.com
Created
Updated
Size1.6 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Simple userstyle that allows you to preview outfits/skins directly in the scrying workshop or the dressing room without having to save the scry or the outfits. Outfits MUST have a marva's invisibility cloak included.
Source code
/* ==UserStyle==
@name Quick Scry Dresser
@namespace userstyles.world/user/meow
@version 1.0.0
@description Quick n Dirty dress up previews
@author grr
@advanced text scry "Scry (Applies to Dressing Room)" "url"
@advanced text outfit "Outfit w/ Invis Cloak (Applies to Scrying Workshop)" "url"
@advanced text skin "Skin ID" "x"
==/UserStyle== */
@-moz-document url-prefix("https://www1.flightrising.com/dressing/outfit") {
#dragon-image-box {
background: url(/*[[scry]]*/) no-repeat;
position: relative;
}
#dragon-image-box::before {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
content: '';
background: url(https://flightrising.com/images/cms/skins/art//*[[skin]]*/.png) no-repeat;
z-index: 2;
}
#dragon-image-box img {
position: relative;
z-index: 4;
}
}
@-moz-document url-prefix("https://www1.flightrising.com/scrying/predict") {
#dragon-image {
position: relative;
}
#dragon-image::before {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
content: '';
background: url(https://flightrising.com/images/cms/skins/art//*[[skin]]*/.png) no-repeat;
z-index: 2;
}
#dragon-image::after {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
content: '';
background: url(/*[[outfit]]*/) no-repeat;
z-index: 4;
}
}