Created
December 26, 2019 20:08
-
-
Save undergroundmonorail/092f15c5b60de23dcade75bc035985ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* hide list bullets on polls */ | |
.poll li | |
{ | |
list-style-type: none; | |
} | |
/* hide filtered posts */ | |
.status__wrapper--filtered { | |
display: none; | |
} | |
/* underline links */ | |
.status__content a:not(.mention):not(.hashtag) { | |
text-decoration: underline; | |
text-decoration-color: rgb(217, 225, 232, 0.5); | |
} | |
.muted .status__content a:not(.mention) { | |
text-decoration-color: rgb(96,105,132, 0.5); | |
} | |
.muted .status__content a:not(.mention):hover { | |
text-decoration-color: currentcolor; | |
} | |
/* glaceon emoji in local usernames */ | |
div.account__header > div > span.account__header__username { | |
display: inline-flex; | |
justify-content: center; | |
} | |
div[data-status-by]:not([data-status-by*="."]) span.display-name__account::after, | |
.account__header__wrapper:not([data-account-username*="."]) .account__header__username::after { | |
display: inline-block; | |
content: "@"; | |
background-image: url(https://pool.jortage.com/glaceonsocial/custom_emojis/images/000/003/095/original/glaceon.png); | |
background-position: right; | |
background-repeat: no-repeat; | |
background-size: contain; | |
width: 35px; | |
text-align: left; | |
} | |
div[data-status-by="monorail"]:not(.muted) span.display-name__account::after, | |
div[data-status-by="@monorail"]:not(.muted) span.display-name__account::after, | |
div[data-status-by="HollyFromTheBox"]:not(.muted) span.display-name__account::after, | |
div[data-status-by="@HollyFromTheBox"]:not(.muted) span.display-name__account::after, | |
.account__header__wrapper[data-account-username="monorail"] .account__header__username::after, | |
.account__header__wrapper[data-account-username="@monorail"] .account__header__username::after, | |
.account__header__wrapper[data-account-username="HollyFromTheBox"] .account__header__username::after, | |
.account__header__wrapper[data-account-username="@HollyFromTheBox"] .account__header__username::after { | |
background-image: url(https://pool.jortage.com/glaceonsocial/custom_emojis/images/000/001/005/original/shiny_glaceon_menu_sprite.png) !important; | |
div.muted[data-status-by^="@"]:not([data-status-by*="."]) span.display-name__account::after { | |
background-image: url("https://glaceon.social/glaceon transparent.png"); | |
} | |
div.muted[data-status-by="monorail"] span.display-name__account::after, | |
div.muted[data-status-by="@monorail"] span.display-name__account::after, | |
div.muted[data-status-by="HollyFromTheBox"] span.display-name__account::after, | |
div.muted[data-status-by="@HollyFromTheBox"] span.display-name__account::after { | |
background-image: url("https://glaceon.social/glaceon shiny transparent.png") !important; | |
} | |
.account__header__lock { | |
color: rgb(43, 144, 217); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment