To be used standalone OR with the JS script that hard codes some translations!
[ Arca translation++ ] for tampermoneky / violentmonkey / irl monkey 🐒
Tullius Tweaks EN by ozzymand
Details
Authorozzymand
LicenseNo License
Categoryarca
Created
Updated
Size1.0 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Fixes the hardcoded width on some dropdowns to be automatically handled by the browser instead of the, lesser well made, css from the site authors.
Source code
/* ==UserStyle==
@name Tullius Tweaks EN
@version 20230606.13.27
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://arca.live/b/tullius") {
/*
Everything is HARD hard coded, like seriously, I don't reccomend using this on other
boards other than tullius since that is why I even made this in the first place.
If you do choose to use it someplace else, good luck.
You can add links this can work on DOWN BELOW IN THE
"URLs starting with" thing. Just edit it to "https://arca.live" if you want it global
*/
div.btns-board:nth-child(2) > div:nth-child(2) > select:nth-child(3),
div.btns-board:nth-child(2) > div:nth-child(2) > select:nth-child(4),
.article-view > div:nth-child(4) > div:nth-child(2) > select:nth-child(3),
.article-view > div:nth-child(4) > div:nth-child(2) > select:nth-child(4){
width: auto;
}
div.btns-board:nth-child(2) > div:nth-child(1) > a:nth-child(1),
.article-view > div:nth-child(4) > div:nth-child(1) > a:nth-child(1){
width: 90px;
}
}