forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support multiple Web UI styles thanks to github.com/akane-blue/mastodon
Thanks to: - akane-blue@619998a - akane-blue@250ad2d - akane-blue@0ff156c - akane-blue@f7d3270 - akane-blue@0ec841b
- Loading branch information
1 parent
6585dfd
commit 85c0d8d
Showing
10 changed files
with
191 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.compact-padding { | ||
.status__prepend { | ||
padding-top: 6px; | ||
padding-bottom: 0; | ||
} | ||
|
||
.status { | ||
padding: 12px; | ||
padding-bottom: 6px; | ||
} | ||
|
||
.status-reply, .muted { | ||
padding-top: 6px; | ||
} | ||
|
||
.status__info { | ||
padding-bottom: 6px; | ||
} | ||
|
||
.status__content { | ||
padding-top: 0; | ||
} | ||
|
||
.status__action-bar { | ||
margin-top: 6px; | ||
justify-content: flex-start; | ||
} | ||
|
||
.status .media-gallery { | ||
margin-top: 6px; | ||
} | ||
|
||
.status .attachment-list { | ||
margin-top: 2px; | ||
} | ||
|
||
.notification__message { | ||
padding: 12px 12px 0; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
.legacy-style { | ||
.status__prepend { | ||
padding-top: 0.25em; | ||
padding-left: 2.15em; | ||
padding-bottom: 0; | ||
} | ||
.status__line { | ||
display: none; | ||
} | ||
.status:not(.status--in-thread) { | ||
padding: 0.5em 0.5em 0.5em 4.75em; | ||
position: relative; | ||
} | ||
.status .status__info, .status__content { | ||
padding-bottom: 0.25em; | ||
} | ||
.status--in-thread{ | ||
padding-top: 0.5em; | ||
} | ||
.status--in-thread .status__info { | ||
padding-left: 3.25em; | ||
padding-bottom: 0; | ||
} | ||
.status--in-thread .status__content { | ||
padding-top: 0.25em; | ||
padding-left: 3.25em; | ||
margin-right: 4em; | ||
} | ||
.status--in-thread .status__content { | ||
-webkit-margin-start: 0px; | ||
margin-inline-start: 0px; | ||
width: calc(100% - 3.5em); | ||
} | ||
.status__wrapper-direct .status--in-thread .status__avatar { | ||
padding-top: 2em; | ||
} | ||
.status--in-thread .status__action-bar { | ||
margin-left: 3.5em; | ||
} | ||
.status-reply { | ||
padding-top: 0.25em; | ||
} | ||
.status .status__info { | ||
margin-bottom: 0; | ||
} | ||
.status .status__relative-time { | ||
height: auto; | ||
line-height: normal; | ||
} | ||
.status .status__avatar { | ||
width: 3em; | ||
height: 3em; | ||
position: absolute; | ||
left: 0.5em; | ||
top: 0.5em; | ||
} | ||
.status .display-name:not(.detailed-status__display-name) bdi { | ||
padding-right: 0.25em; | ||
} | ||
.status .display-name:not(.detailed-status__display-name) { | ||
display: flex; | ||
} | ||
.detailed-status { | ||
padding-top: 0.25em; | ||
padding-left: 0.75em; | ||
padding-bottom: 0.5em; | ||
} | ||
.detailed-status .status__prepend { | ||
margin-left: 1.75em; | ||
margin-bottom: 0.5em; | ||
} | ||
.detailed-status__display-name { | ||
margin-bottom: 0.5em; | ||
} | ||
.detailed-status .status-card { | ||
padding: 0.25em; | ||
} | ||
.account { | ||
padding: 0.5em; | ||
} | ||
.account__wrapper .display-name, .detailed-status .display-name { | ||
padding-left: 0; | ||
} | ||
.status__action-bar { | ||
margin-top: 0.25em; | ||
justify-content: flex-start; | ||
} | ||
.status .media-gallery, .detailed-status .status-card, .detailed-status__meta { | ||
margin-top: 0.5em; | ||
} | ||
.status .attachment-list { | ||
margin-top: 0.25em; | ||
} | ||
.notification__message { | ||
padding: 0.5em 0.5em 0 2.35em; | ||
} | ||
.muted { | ||
padding-top: 0.5em; | ||
} | ||
.mods__announcements__item { | ||
margin: 10px; | ||
} | ||
.drawer__inner .navigation-bar, .drawer__inner .compose-form { | ||
padding: 10px; | ||
} | ||
.account__header__bar { | ||
padding: 0 12px; | ||
} | ||
.account__header__tabs__name { | ||
margin-top: 12px; | ||
margin-bottom: 12px; | ||
} | ||
.account__header__bio .account__header__fields { | ||
margin: 12px 0 0; | ||
} | ||
.account__header__bio .account__header__fields dl { | ||
padding: 8px 12px; | ||
} | ||
.account__header__extra__links { | ||
margin: 0 -8px; | ||
padding-top: 12px; | ||
} | ||
} |
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
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
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
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
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
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