General Everskies tweaks, for convenience's sake. Only works on the website version.
Tweaks for Everskies by pkpc99
Details
Authorpkpc99
LicenseNo License
Categoryhttps://everskies.com
Created
Updated
Size2.2 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Things this style does:
- Removes background clouds by default
- Removes Friend Activity on the homepage
- Changes the max height of the My Feed/Trending Posts/Watched Posts column on the homepage
- Changes the max height of Community/Club posts
- Changes the max image size of Community/Club posts
- Changes the height of Pinned posts in user blogs
If there are any issues, please let me know in the reviews
Source code
/* ==UserStyle==
@name Tweaks for Everskies
@namespace https://everskies.com
@version 1.0.0
@description General Everskies tweaks, for convenience's sake
@author pkpc99
==/UserStyle== */
@-moz-document domain("everskies.com") {
/* Remove clouds */
.bg-accent .clouds {
display: none!important;
max-width: 0px;
}
body>.background.background-dark .cloud,
body>.background.background-dark .planet,
body>.background.background-light .cloud,
body>.background.background-light .planet {
background: url(none) no-repeat;
}
/* Change Community/Club post height */
.feed-item[_ngcontent-es-c195]>.feed-inner[_ngcontent-es-c195] .feed-content[_ngcontent-es-c195],
.feed-item[_ngcontent-es-c210]>.feed-inner[_ngcontent-es-c210] .feed-content-short[_ngcontent-es-c210] {
width: 100%;
max-height: 700px;
overflow: hidden;
position: relative;
}
.feed-item[_ngcontent-es-c210]>.feed-inner[_ngcontent-es-c210] .read-more[_ngcontent-es-c210] {
position: absolute;
top: 0px;
opacity: 0;
height: 100%;
pointer-events: none;
}
/* Change Community/Club image size */
.markdown-content[_ngcontent-es-c139] img.attached {
max-width: 100%;
max-height: 400px;
border-radius: 3px;
margin-bottom: 8px;
}
/* Height of the POSTS column on the homepage */
x-custombar[_ngcontent-es-c314],
x-custombar[_ngcontent-es-c330] {
min-height: 686px;
display: block;
}
/* Remove friend activity */
body>x-root>div>x-home>div>div:nth-child(3)>div {
display: none!important;
}
/* Changes height of Pinned posts, makes them scrollable */
.wall-item[_ngcontent-es-c262]:has(.color1.mdi-pin.mdi) {
max-height: 150px!important;
overflow-y: scroll!important;
}
.wall-item::-webkit-scrollbar {
width: 5px;
}
.wall-item::-webkit-scrollbar-thumb {
background: #777;
border-radius: 30px;
}
.wall-item >.wall-top {
position: sticky;
top: 0;
z-index: 6;
}
/* Frontpage news carousel */
.carousel[_ngcontent-es-c326] .news-item .bottom {
font-size: 0.9em;
max-width: 45%;
}
}