forked from doubanius/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
401 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,85 @@ | ||
|
||
@import 'application'; | ||
|
||
/* Wider compose area */ | ||
@media screen and (min-width: 1300px) { | ||
.drawer { | ||
width: 17%; /* Not part of the flex fun */ | ||
max-width: 400px; | ||
min-width: 330px; | ||
} | ||
.layout-multiple-columns .column { | ||
flex-grow: 1 !important; | ||
max-width: 400px; | ||
} | ||
} | ||
|
||
/* Don't show outline around statuses if we're in | ||
* mouse or touch mode (rather than keyboard) */ | ||
[data-whatinput="mouse"], [data-whatinput="touch"] { | ||
.status__content:focus, .status:focus, | ||
.status__wrapper:focus, .status__content__text:focus { | ||
outline: none; | ||
} | ||
} | ||
|
||
/* Less emphatic show more */ | ||
.status__content__read-more-button { | ||
font-size: 14px; | ||
color: $dark-text-color; | ||
|
||
.status__prepend-icon { | ||
padding-right: 4px; | ||
} | ||
} | ||
|
||
/* Show a little arrowey thing after the time in a | ||
* status to signal that you can click it to see | ||
* a detailed view */ | ||
.status time:after, | ||
.detailed-status__datetime span:after { | ||
font: normal normal normal 14px/1 FontAwesome; | ||
content: "\00a0\00a0\f08e"; | ||
} | ||
|
||
/* Don't display the elephant mascot (we have our | ||
* own, thanks) */ | ||
.drawer__inner__mastodon { | ||
display: none; | ||
} | ||
|
||
/* Let the compose area/drawer be short, but | ||
* expand if necessary */ | ||
.drawer .drawer__inner { | ||
overflow: visible; | ||
height:inherit; | ||
background-image: none; | ||
} | ||
.drawer__pager { | ||
overflow-y:auto; | ||
} | ||
|
||
/* Put a reasonable background on the single-column compose form */ | ||
.layout-single-column .compose-panel { | ||
height: auto; | ||
overflow-y: visible; | ||
margin-top: 65px; | ||
} | ||
|
||
/* Better distinguish the search bar */ | ||
.layout-single-column .compose-panel .search { | ||
position:relative; | ||
top: -55px; | ||
margin-bottom: -55px; | ||
} | ||
|
||
/* Use display: none instead of visibility:hidden | ||
* to hide the suggested follows list on non-mobile */ | ||
@media screen and (min-width: 630px) { | ||
.search-results .trends { | ||
display:none; | ||
} | ||
} | ||
|
||
@import 'fullwidth-media'; | ||
|
Oops, something went wrong.