2016-02-26 14:48:20 -05:00
|
|
|
.activity-stream {
|
2017-05-08 09:57:49 -04:00
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
2018-07-28 13:25:33 -04: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 14:48:20 -05:00
|
|
|
|
2018-07-17 12:54:07 -04:00
|
|
|
div[data-component] {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-02-26 14:48:20 -05:00
|
|
|
.entry {
|
2018-07-28 13:25:33 -04:00
|
|
|
background: $ui-base-color;
|
2016-12-20 18:13:13 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
.detailed-status,
|
|
|
|
.status,
|
|
|
|
.load-more {
|
2017-08-16 11:12:58 -04:00
|
|
|
animation: none;
|
2016-12-18 13:47:11 -05:00
|
|
|
}
|
2016-02-26 14:48:20 -05:00
|
|
|
|
2016-12-18 13:47:11 -05:00
|
|
|
&:last-child {
|
2018-07-28 13:25:33 -04:00
|
|
|
.detailed-status,
|
2018-08-18 06:48:27 -04:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2016-12-18 13:47:11 -05:00
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
2016-02-26 14:48:20 -05:00
|
|
|
}
|
|
|
|
|
2016-12-18 13:47:11 -05:00
|
|
|
&:first-child {
|
2018-07-28 13:25:33 -04:00
|
|
|
.detailed-status,
|
2018-08-18 06:48:27 -04:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2016-12-18 13:47:11 -05:00
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
2016-03-12 10:09:46 -05:00
|
|
|
|
2016-12-18 13:47:11 -05:00
|
|
|
&:last-child {
|
2018-07-28 13:25:33 -04:00
|
|
|
.detailed-status,
|
2018-08-18 06:48:27 -04:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2016-12-18 13:47:11 -05:00
|
|
|
border-radius: 4px;
|
2016-03-12 10:09:46 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-28 08:02:53 -05:00
|
|
|
}
|
2017-08-16 11:12:58 -04:00
|
|
|
|
|
|
|
@media screen and (max-width: 740px) {
|
2018-07-28 13:25:33 -04:00
|
|
|
.detailed-status,
|
2018-08-18 06:48:27 -04:00
|
|
|
.status,
|
|
|
|
.load-more {
|
2017-08-16 11:12:58 -04:00
|
|
|
border-radius: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
2016-12-18 13:47:11 -05:00
|
|
|
}
|
2018-08-17 21:03:12 -04:00
|
|
|
|
|
|
|
&--highlighted .entry {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
2018-07-28 13:25:33 -04:00
|
|
|
}
|
2016-02-28 08:02:53 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
.button.logo-button {
|
|
|
|
flex: 0 auto;
|
|
|
|
font-size: 14px;
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-transform: none;
|
|
|
|
line-height: 36px;
|
|
|
|
height: auto;
|
|
|
|
padding: 3px 15px;
|
|
|
|
border: 0;
|
2017-09-19 10:03:45 -04:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
svg {
|
|
|
|
width: 20px;
|
|
|
|
height: auto;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 5px;
|
2016-12-20 18:13:13 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
path:first-child {
|
|
|
|
fill: $primary-text-color;
|
2016-12-20 18:13:13 -05:00
|
|
|
}
|
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
path:last-child {
|
|
|
|
fill: $ui-highlight-color;
|
2016-12-20 18:13:13 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-30 17:01:37 -05:00
|
|
|
|
2019-03-29 19:43:29 -04:00
|
|
|
&:active:not(:disabled),
|
|
|
|
&:focus:not(:disabled),
|
|
|
|
&:hover:not(:disabled) {
|
2018-07-28 13:25:33 -04:00
|
|
|
background: lighten($ui-highlight-color, 10%);
|
2017-01-30 17:01:37 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
svg path:last-child {
|
|
|
|
fill: lighten($ui-highlight-color, 10%);
|
2017-01-30 17:01:37 -05:00
|
|
|
}
|
|
|
|
}
|
2018-04-11 06:35:09 -04:00
|
|
|
|
2018-08-18 21:28:43 -04:00
|
|
|
&.button--destructive {
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $error-red;
|
|
|
|
|
|
|
|
svg path:last-child {
|
|
|
|
fill: $error-red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
svg {
|
|
|
|
display: none;
|
2018-04-11 06:35:09 -04:00
|
|
|
}
|
|
|
|
}
|
2016-02-26 14:48:20 -05:00
|
|
|
}
|
2016-12-18 09:20:39 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
.embed,
|
|
|
|
.public-layout {
|
|
|
|
.detailed-status {
|
|
|
|
padding: 15px;
|
2018-07-07 16:20:14 -04:00
|
|
|
}
|
2016-12-18 09:20:39 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
.status {
|
|
|
|
padding: 15px 15px 15px (48px + 15px * 2);
|
|
|
|
min-height: 48px + 2px;
|
2016-12-18 09:20:39 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
&__avatar {
|
|
|
|
left: 15px;
|
|
|
|
top: 17px;
|
2018-07-07 16:20:14 -04:00
|
|
|
}
|
2016-12-18 09:20:39 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
&__content {
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
2017-09-05 06:31:24 -04:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
&__prepend {
|
|
|
|
margin-left: 48px + 15px * 2;
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
2018-07-07 16:20:14 -04:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
&__prepend-icon-wrapper {
|
|
|
|
left: -32px;
|
2017-08-30 04:23:43 -04:00
|
|
|
}
|
2018-07-07 16:20:14 -04:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
.media-gallery,
|
|
|
|
&__action-bar,
|
|
|
|
.video-player {
|
|
|
|
margin-top: 10px;
|
2018-07-07 16:20:14 -04:00
|
|
|
}
|
2017-08-30 04:23:43 -04:00
|
|
|
}
|
|
|
|
}
|