Eliminate excess scrolling in Arlo's Ancient Artifacts digsites by bringing a specified plot to the top of the list.
Flight Rising: Arlo's Plot Focuser by meow
Imported and mirrored from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/252582.user.css
Details
Authormeow
LicenseNo License
Categoryflightrising.com
Created
Updated
Size3.0 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
How to use:
- Hover over the plot to get its number.
- Put that number into the style for the corresponding digsite.
- It's now at the beginning of the list of plots. Hooray!
Source code
/* ==UserStyle==
@name Arlo's Plot Focuser - Flight Rising
@namespace USO Archive
@author grr
@description `Eliminate excess scrolling by bringing a specified plot to the top of the plot list. Install via <a href="https://userstyles.world/style/9992/arlos-plot-focuser-flight-rising" target="_blank">Userstyles.World</a> or <a href="https://uso.kkx.one/style/252582" target="_blank">the USO archive</a> to customize on-the-fly.`
@version 20230528.15.40
@license NO-REDISTRIBUTION
@preprocessor uso
@advanced text plot1 "Digsite #1" "1"
@advanced text plot2 "Digsite #2" "1"
@advanced text plot3 "Digsite #3" "1"
@advanced text plot4 "Digsite #4" "1"
==/UserStyle== */
@-moz-document url-prefix("https://www1.flightrising.com/trading/archaeology/dig-site/") {
#archaeology-dig-plots {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
counter-reset: number;
}
.archaeology-dig-plot-frame {
margin: 0 auto 35px auto;
counter-increment: number;
}
.archaeology-dig-plot-frame::before {
content: counter(number)" ";
position: absolute;
top: 17px;
left: 37px;
font-size: 18px;
font-weight: bold;
font-family: monospace;
background: linear-gradient(180deg,#d5a24a,#c3853a);
color: #522104;
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
z-index: 3;
border-radius: 100%;
opacity: 0;
transition: 0.3s opacity;
box-sizing: border-box;
border: 3px solid #653b0f;
}
.archaeology-dig-plot-frame:hover::before {
opacity: 1;
}
.archaeology-dig-plot-frame[data-layout="4"]::before {
top: 16px;
left: 37px;
}
.archaeology-dig-plot-frame[data-layout="3"]::before {
top: 20px;
left: 30px;
}
.archaeology-dig-plot-frame[data-layout="2"]::before {
top: 17px;
left: 22px;
}
.archaeology-dig-plot-frame[data-layout="1"]::before {
top: 13px;
left: 32px;
}
}
@-moz-document url-prefix("https://www1.flightrising.com/trading/archaeology/dig-site/1") {
.archaeology-dig-plot-frame:nth-child(/*[[plot1]]*/) {
order: -1;
}
}
@-moz-document url-prefix("https://www1.flightrising.com/trading/archaeology/dig-site/2") {
.archaeology-dig-plot-frame:nth-child(/*[[plot2]]*/) {
order: -1;
}
}
@-moz-document url-prefix("https://www1.flightrising.com/trading/archaeology/dig-site/3") {
.archaeology-dig-plot-frame:nth-child(/*[[plot3]]*/) {
order: -1;
}
}
@-moz-document url-prefix("https://www1.flightrising.com/trading/archaeology/dig-site/4") {
.archaeology-dig-plot-frame:nth-child(/*[[plot4]]*/) {
order: -1;
}
}