diff options
author | Starfall <us@starfall.systems> | 2021-07-31 11:35:21 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2021-07-31 11:35:21 -0500 |
commit | 0d0c26b589a0fedb4cf336683da4c0272a4391d1 (patch) | |
tree | 8eebf94705a1fc646d23f9dcfa41d7430817657a /useful.css | |
parent | 2cd0b58531236e367656853cabb80d666b60ed33 (diff) |
Haven't been keeping this updated, our bad
Diffstat (limited to 'useful.css')
-rwxr-xr-x | useful.css | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/useful.css b/useful.css new file mode 100755 index 0000000..141d643 --- /dev/null +++ b/useful.css @@ -0,0 +1,106 @@ +/* why is this not default? */ +.status__display-name { + unicode-bidi: isolate; +} + + +/* make single-column masto a little more breathable by adding some space between toots */ +.status, +.status__wrapper--filtered { + border-bottom: 10px solid #191b22; +} + + +/* hide federated timeline buttons */ +a[href="/web/timelines/public"] { + display: none; +} + + +/* hide action bar for faves/boosts in notifications +(and polls since there's currently no way to distinguish them...) */ +.status.muted .status__action-bar { + display: none !important; +} + + +/* increase font sizes slightly */ +body { + font-size: 14px; /* was 13px */ +} +.status__content { + font-size: 16px; /* was 15px */ + line-height: 22px; /* was 20px */ +} +.status__content__spoiler-link { + font-size: 12px; /* was 11px */ + /* inherits line-height from status__content */ +} +.column-header, +.column-link /* the "Getting started" sidebar */{ + font-size: 17px; /* was 16px */ +} +.status__prepend /* "$user boosted" */, +.notification__message /* "$user favourited your toot", etc. */ { + font-size: 15px; /* was 14px for status__prepend, 15px for notification__message */ +} +.compose-form__autosuggest-wrapper label .autosuggest-textarea__textarea, +.composer--spoiler input { + font-size: 16px; /* was 14px */ +} +/* in settings menu */ +.admin-wrapper .sidebar { + font-size: 15px; +} +.admin-wrapper .content h4 { + font-size: 14px; +} +.simple_form span.hint { + font-size: 13px; /* was 12px */ +} + + +/* turn action bars into popups */ +.status__action-bar { + margin: 0; + padding: 0; + overflow: hidden; + transition: height 0.6s; + transition-delay: 0.4s; + height: 0px; + width: 100%; + position: absolute; + bottom: 0; + left: 0; +} +.status__action-bar button:first-child { + margin-left: 8px; +} +.status__action-bar .status__relative-time { + padding-right: 8px; +} +.status:hover .status__action-bar { + height: 32px; +} +.status__action-bar, +.detailed-status__action-bar { + background: #0009; +} + + +/* https://github.com/psydwannabe/mastodon-snippets/blob/master/CSS/embiggen-emojos.css */ +/* Emojos in the "reply" box that appears above the status update text box when + * you click the "reply" button on a toot */ +.reply-indicator__content .emojione, + +/* Emojos in toots across the rest of the entire web client */ +.status__content .emojione { + width: 25px; /* Stock is 20px */ + height: 25px; /* Stock is 20px */ +} + +/* Emojos in the "Emoji Mart" (pop-out from emoji button) in compose window */ +.emoji-mart-category .emoji-mart-emoji span { + width: 33px !important; /* stock: 20px; defined inline */ + height: 33px !important; /* stock: 20px; defined inline */ +} \ No newline at end of file |