2016-02-27 04:48:20 +09:00
|
|
|
.activity-stream {
|
|
|
|
clear: both;
|
2016-03-07 01:52:23 +09:00
|
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
2016-02-27 04:48:20 +09:00
|
|
|
|
|
|
|
.entry {
|
2016-03-06 07:42:40 +09:00
|
|
|
border-bottom: 1px solid #d9e1e8;
|
|
|
|
background: #fff;
|
|
|
|
border-left: 2px solid #fff;
|
2016-02-27 04:48:20 +09:00
|
|
|
|
2016-02-27 05:11:52 +09:00
|
|
|
&.entry-reblog {
|
2016-03-06 20:34:39 +09:00
|
|
|
border-left-color: #2b90d9;
|
2016-02-27 04:48:20 +09:00
|
|
|
}
|
|
|
|
|
2016-02-28 22:02:53 +09:00
|
|
|
&.entry-predecessor, &.entry-successor {
|
2016-03-06 20:34:39 +09:00
|
|
|
background: #d9e1e8;
|
|
|
|
border-left-color: #d9e1e8;
|
2016-03-26 22:42:05 +09:00
|
|
|
border-bottom-color: darken(#d9e1e8, 10%);
|
2016-03-13 00:09:46 +09:00
|
|
|
|
|
|
|
.header {
|
|
|
|
.header__right {
|
|
|
|
.counter-btn {
|
|
|
|
color: darken(#d9e1e8, 15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 22:02:53 +09:00
|
|
|
}
|
|
|
|
|
2016-03-26 22:42:05 +09:00
|
|
|
&.entry-center {
|
|
|
|
border-bottom-color: darken(#d9e1e8, 10%);
|
|
|
|
}
|
|
|
|
|
2016-02-28 23:46:29 +09:00
|
|
|
&.entry-follow, &.entry-favourite {
|
|
|
|
.content {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
2016-03-06 20:34:39 +09:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2016-02-28 23:46:29 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-27 04:48:20 +09:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
2016-03-06 20:34:39 +09:00
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.activity-stream-headless {
|
|
|
|
.entry:first-child {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2016-02-27 04:48:20 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-03 07:26:00 +09:00
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
border-radius: 0;
|
2016-03-13 00:09:46 +09:00
|
|
|
box-shadow: none;
|
|
|
|
|
2016-10-03 07:26:00 +09:00
|
|
|
&.activity-stream-headless {
|
|
|
|
.entry:first-child {
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
2016-03-13 00:09:46 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 22:02:53 +09:00
|
|
|
.entry__container {
|
2016-02-28 08:51:05 +09:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
2016-03-07 01:52:23 +09:00
|
|
|
width: 56px;
|
2016-03-06 07:42:40 +09:00
|
|
|
padding: 15px;
|
2016-02-28 08:51:05 +09:00
|
|
|
|
|
|
|
img {
|
2016-03-07 01:52:23 +09:00
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
2016-02-28 08:51:05 +09:00
|
|
|
display: block;
|
2016-10-03 07:26:00 +09:00
|
|
|
border-radius: 4px;
|
2016-02-28 08:51:05 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 22:02:53 +09:00
|
|
|
.entry__container__container {
|
2016-02-28 08:51:05 +09:00
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2016-02-27 04:48:20 +09:00
|
|
|
.header {
|
2016-03-07 01:52:23 +09:00
|
|
|
margin-bottom: 10px;
|
2016-03-06 07:42:40 +09:00
|
|
|
padding: 15px;
|
2016-02-27 05:11:52 +09:00
|
|
|
padding-bottom: 0;
|
2016-03-01 03:42:08 +09:00
|
|
|
padding-left: 8px;
|
2016-03-07 01:52:23 +09:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.header__left {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__right {
|
|
|
|
|
|
|
|
}
|
2016-02-27 05:11:52 +09:00
|
|
|
|
|
|
|
.name {
|
|
|
|
text-decoration: none;
|
2016-03-06 07:42:40 +09:00
|
|
|
color: #9baec8;
|
2016-02-27 05:11:52 +09:00
|
|
|
|
|
|
|
strong {
|
2016-03-06 07:42:40 +09:00
|
|
|
color: #282c37;
|
|
|
|
font-weight: 500;
|
2016-02-27 05:11:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
strong {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-27 04:48:20 +09:00
|
|
|
}
|
|
|
|
|
2016-02-27 05:11:52 +09:00
|
|
|
.pre-header {
|
2016-03-06 07:42:40 +09:00
|
|
|
border-bottom: 1px solid #d9e1e8;
|
|
|
|
color: #2b90d9;
|
2016-02-27 05:11:52 +09:00
|
|
|
padding: 5px 10px;
|
|
|
|
padding-left: 8px;
|
2016-02-28 08:51:05 +09:00
|
|
|
clear: both;
|
2016-02-27 04:48:20 +09:00
|
|
|
|
2016-02-27 05:11:52 +09:00
|
|
|
.name {
|
2016-03-06 07:42:40 +09:00
|
|
|
color: #2b90d9;
|
|
|
|
font-weight: 500;
|
2016-02-27 05:11:52 +09:00
|
|
|
text-decoration: none;
|
2016-02-27 04:48:20 +09:00
|
|
|
|
2016-02-27 05:11:52 +09:00
|
|
|
&:hover {
|
2016-02-27 04:48:20 +09:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2016-03-01 03:42:08 +09:00
|
|
|
font-size: 14px;
|
2016-02-27 05:11:52 +09:00
|
|
|
padding: 0 10px;
|
|
|
|
padding-left: 8px;
|
2016-09-08 08:24:26 +09:00
|
|
|
padding-bottom: 15px;
|
2016-03-06 07:42:40 +09:00
|
|
|
color: #282c37;
|
2016-02-28 23:46:29 +09:00
|
|
|
|
2016-09-10 17:14:36 +09:00
|
|
|
p {
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 23:46:29 +09:00
|
|
|
a {
|
2016-03-06 07:42:40 +09:00
|
|
|
color: #2b90d9;
|
2016-02-28 23:46:29 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2016-03-07 01:52:23 +09:00
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 23:46:29 +09:00
|
|
|
}
|
2016-02-27 04:48:20 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.time {
|
|
|
|
text-decoration: none;
|
2016-03-06 07:42:40 +09:00
|
|
|
color: #9baec8;
|
2016-02-27 04:48:20 +09:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-09-08 08:24:26 +09:00
|
|
|
|
|
|
|
.media-attachments {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 10px;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 120px;
|
|
|
|
height: 100px;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-right: 4px;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
width: 120px;
|
|
|
|
height: 100px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: none;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-27 04:48:20 +09:00
|
|
|
}
|