2016-02-26 19:48:20 +00:00
|
|
|
.activity-stream {
|
2017-05-08 13:57:49 +00:00
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
2018-07-31 20:54:18 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--headless {
|
|
|
|
border-radius: 0;
|
|
|
|
margin: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
.detailed-status,
|
|
|
|
.status {
|
|
|
|
border-radius: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
2016-02-26 19:48:20 +00:00
|
|
|
|
2018-07-18 19:56:31 +00:00
|
|
|
div[data-component] {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-02-26 19:48:20 +00:00
|
|
|
.entry {
|
2018-07-31 20:54:18 +00:00
|
|
|
background: $ui-base-color;
|
2016-12-20 23:13:13 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.detailed-status,
|
|
|
|
.status,
|
|
|
|
.load-more {
|
2017-08-16 15:12:58 +00:00
|
|
|
animation: none;
|
2016-12-18 18:47:11 +00:00
|
|
|
}
|
2016-02-26 19:48:20 +00:00
|
|
|
|
2016-12-18 18:47:11 +00:00
|
|
|
&:last-child {
|
2018-07-31 20:54:18 +00:00
|
|
|
.detailed-status,
|
2018-09-05 09:42:04 +00:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2016-12-18 18:47:11 +00:00
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
2016-02-26 19:48:20 +00:00
|
|
|
}
|
|
|
|
|
2016-12-18 18:47:11 +00:00
|
|
|
&:first-child {
|
2018-07-31 20:54:18 +00:00
|
|
|
.detailed-status,
|
2018-09-05 09:42:04 +00:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2016-12-18 18:47:11 +00:00
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
2016-03-12 15:09:46 +00:00
|
|
|
|
2016-12-18 18:47:11 +00:00
|
|
|
&:last-child {
|
2018-07-31 20:54:18 +00:00
|
|
|
.detailed-status,
|
2018-09-05 09:42:04 +00:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2016-12-18 18:47:11 +00:00
|
|
|
border-radius: 4px;
|
2016-03-12 15:09:46 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-28 13:02:53 +00:00
|
|
|
}
|
2017-08-16 15:12:58 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 740px) {
|
2018-07-31 20:54:18 +00:00
|
|
|
.detailed-status,
|
2018-09-05 09:42:04 +00:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2017-08-16 15:12:58 +00:00
|
|
|
border-radius: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
2016-12-18 18:47:11 +00:00
|
|
|
}
|
2018-09-05 09:36:24 +00:00
|
|
|
|
|
|
|
&--highlighted .entry {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
2018-07-31 20:54:18 +00:00
|
|
|
}
|
2016-02-28 13:02:53 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.button.logo-button {
|
|
|
|
flex: 0 auto;
|
|
|
|
font-size: 14px;
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-transform: none;
|
2020-12-30 22:18:39 +00:00
|
|
|
line-height: 1.2;
|
2018-07-31 20:54:18 +00:00
|
|
|
height: auto;
|
2020-12-26 22:50:34 +00:00
|
|
|
min-height: 36px;
|
|
|
|
min-width: 88px;
|
|
|
|
white-space: normal;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
hyphens: auto;
|
|
|
|
padding: 0 15px;
|
2018-07-31 20:54:18 +00:00
|
|
|
border: 0;
|
2017-07-06 19:31:03 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
svg {
|
|
|
|
width: 20px;
|
|
|
|
height: auto;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 5px;
|
2019-05-27 01:33:39 +00:00
|
|
|
fill: $primary-text-color;
|
2016-12-20 23:13:13 +00:00
|
|
|
}
|
2017-01-30 22:01:37 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-highlight-color, 10%);
|
2017-01-30 22:01:37 +00:00
|
|
|
}
|
2018-05-11 12:43:26 +00:00
|
|
|
|
2019-04-07 02:59:13 +00:00
|
|
|
&:disabled,
|
|
|
|
&.disabled {
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $ui-primary-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-05 09:42:54 +00:00
|
|
|
&.button--destructive {
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $error-red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
svg {
|
|
|
|
display: none;
|
2018-05-11 12:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-26 19:48:20 +00:00
|
|
|
}
|
2016-12-18 14:20:39 +00:00
|
|
|
|
2020-12-30 22:18:39 +00:00
|
|
|
a.button.logo-button {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.embed,
|
|
|
|
.public-layout {
|
2020-04-28 08:16:55 +00:00
|
|
|
.status__content[data-spoiler=folded] {
|
|
|
|
.e-content {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
p:first-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.detailed-status {
|
|
|
|
padding: 15px;
|
2020-06-25 20:41:12 +00:00
|
|
|
|
|
|
|
.detailed-status__display-avatar .account__avatar {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
2018-07-11 16:06:52 +00:00
|
|
|
}
|
2016-12-18 14:20:39 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.status {
|
|
|
|
padding: 15px 15px 15px (48px + 15px * 2);
|
|
|
|
min-height: 48px + 2px;
|
2017-08-30 08:23:43 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&__avatar {
|
|
|
|
left: 15px;
|
|
|
|
top: 17px;
|
2020-05-13 19:20:34 +00:00
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
2018-07-11 16:06:52 +00:00
|
|
|
}
|
2017-08-30 08:23:43 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&__content {
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
2017-08-30 08:23:43 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&__prepend {
|
2018-08-02 10:08:41 +00:00
|
|
|
padding: 8px 0;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
margin: initial;
|
2018-07-31 20:54:18 +00:00
|
|
|
margin-left: 48px + 15px * 2;
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
2017-09-05 10:31:24 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&__prepend-icon-wrapper {
|
2018-08-02 10:08:41 +00:00
|
|
|
position: absolute;
|
|
|
|
margin: initial;
|
|
|
|
float: initial;
|
|
|
|
width: auto;
|
2018-07-31 20:54:18 +00:00
|
|
|
left: -32px;
|
2017-08-30 08:23:43 +00:00
|
|
|
}
|
2018-07-11 16:06:52 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.media-gallery,
|
|
|
|
&__action-bar,
|
|
|
|
.video-player {
|
|
|
|
margin-top: 10px;
|
2018-07-11 16:06:52 +00:00
|
|
|
}
|
2020-04-28 08:16:55 +00:00
|
|
|
|
|
|
|
&__action-bar-button {
|
|
|
|
font-size: 18px;
|
|
|
|
width: 23.1429px;
|
|
|
|
height: 23.1429px;
|
|
|
|
line-height: 23.15px;
|
|
|
|
}
|
2017-08-30 08:23:43 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-31 21:59:17 +00:00
|
|
|
|
|
|
|
// Styling from upstream's WebUI, as public pages use the same layout
|
|
|
|
.embed,
|
|
|
|
.public-layout {
|
|
|
|
.status {
|
|
|
|
.status__info {
|
|
|
|
font-size: 15px;
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
2020-10-27 02:00:47 +00:00
|
|
|
.status__relative-time {
|
2018-07-31 21:59:17 +00:00
|
|
|
color: $dark-text-color;
|
|
|
|
float: right;
|
|
|
|
font-size: 14px;
|
|
|
|
width: auto;
|
|
|
|
margin: initial;
|
|
|
|
padding: initial;
|
2020-10-27 02:00:47 +00:00
|
|
|
padding-bottom: 1px;
|
2018-07-31 21:59:17 +00:00
|
|
|
}
|
|
|
|
|
2020-06-26 11:45:02 +00:00
|
|
|
.status__visibility-icon {
|
2020-10-27 02:00:47 +00:00
|
|
|
padding: 0 4px;
|
2020-06-26 11:45:02 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 21:59:17 +00:00
|
|
|
.status__info .status__display-name {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
2019-03-28 14:03:54 +00:00
|
|
|
padding: 6px 0;
|
2018-07-31 21:59:17 +00:00
|
|
|
padding-right: 25px;
|
|
|
|
margin: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
|
|
|
height: 48px;
|
|
|
|
position: absolute;
|
|
|
|
width: 48px;
|
|
|
|
margin: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-31 10:10:51 +00:00
|
|
|
|
|
|
|
.rtl {
|
2019-07-17 18:25:26 +00:00
|
|
|
.embed,
|
|
|
|
.public-layout {
|
|
|
|
.status {
|
2019-07-17 19:20:55 +00:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 68px;
|
|
|
|
|
2019-07-17 18:25:26 +00:00
|
|
|
.status__info .status__display-name {
|
|
|
|
padding-left: 25px;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
2020-06-26 11:45:02 +00:00
|
|
|
.status__relative-time,
|
|
|
|
.status__visibility-icon {
|
2019-07-17 18:25:26 +00:00
|
|
|
float: left;
|
|
|
|
}
|
2018-10-31 10:10:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 16:35:54 +00:00
|
|
|
|
|
|
|
.status__content__read-more-button {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
padding-top: 8px;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|