/* 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 */ }