2017-03-02 18:55:15 +01:00
|
|
|
@import 'variables';
|
|
|
|
|
2017-04-24 00:38:37 +02:00
|
|
|
.app-body {
|
2017-05-07 20:47:31 +02:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2017-04-05 18:10:25 +02:00
|
|
|
}
|
|
|
|
|
2016-08-31 22:58:10 +02:00
|
|
|
.button {
|
2017-05-08 15:57:49 +02:00
|
|
|
background-color: darken($ui-highlight-color, 3%);
|
2016-09-27 23:12:33 +02:00
|
|
|
border: 10px none;
|
2017-04-23 04:26:55 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $primary-text-color;
|
2017-04-23 04:26:55 +02:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: inherit;
|
2016-09-27 23:12:33 +02:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
height: 36px;
|
2017-04-23 04:26:55 +02:00
|
|
|
letter-spacing: 0;
|
2016-09-27 23:12:33 +02:00
|
|
|
line-height: 36px;
|
2017-04-23 04:26:55 +02:00
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 16px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
2016-09-27 23:12:33 +02:00
|
|
|
text-decoration: none;
|
2017-04-23 04:26:55 +02:00
|
|
|
text-overflow: ellipsis;
|
2017-03-25 00:01:43 +01:00
|
|
|
transition: all 100ms ease-in;
|
2017-04-23 04:26:55 +02:00
|
|
|
white-space: nowrap;
|
2017-05-19 11:42:54 +02:00
|
|
|
width: auto;
|
2016-08-31 22:58:10 +02:00
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2017-05-08 15:57:49 +02:00
|
|
|
background-color: lighten($ui-highlight-color, 7%);
|
2017-03-25 00:01:43 +01:00
|
|
|
transition: all 200ms ease-out;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
2017-05-08 15:57:49 +02:00
|
|
|
background-color: $ui-primary-color;
|
2016-10-02 15:28:47 +02:00
|
|
|
cursor: default;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
2016-09-07 18:17:15 +02:00
|
|
|
|
2017-07-11 15:27:59 +02:00
|
|
|
&.button-alternative {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 36px;
|
|
|
|
height: auto;
|
|
|
|
color: $ui-base-color;
|
|
|
|
background: $ui-primary-color;
|
|
|
|
text-transform: none;
|
|
|
|
padding: 4px 16px;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-primary-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 18:17:15 +02:00
|
|
|
&.button-secondary {
|
2017-07-11 15:27:59 +02:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 36px;
|
|
|
|
height: auto;
|
|
|
|
color: $ui-primary-color;
|
|
|
|
text-transform: none;
|
|
|
|
background: transparent;
|
|
|
|
padding: 3px 15px;
|
|
|
|
border: 1px solid $ui-primary-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
border-color: lighten($ui-primary-color, 4%);
|
|
|
|
color: lighten($ui-primary-color, 4%);
|
|
|
|
}
|
2016-09-07 18:17:15 +02:00
|
|
|
}
|
2017-05-19 11:42:54 +02:00
|
|
|
|
|
|
|
&.button--block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.column__wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
|
|
|
|
2017-02-07 00:06:40 +01:00
|
|
|
.column-icon {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
color: $ui-primary-color;
|
2017-04-23 04:26:55 +02:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2017-05-10 20:32:26 +02:00
|
|
|
top: -48px;
|
2017-04-23 04:26:55 +02:00
|
|
|
z-index: 3;
|
2017-02-10 22:58:29 +01:00
|
|
|
|
2017-02-07 00:06:40 +01:00
|
|
|
&:hover {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-primary-color, 7%);
|
2017-02-07 00:06:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 22:58:10 +02:00
|
|
|
.icon-button {
|
2017-03-25 00:01:43 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
2017-07-24 15:09:08 +02:00
|
|
|
color: $ui-base-lighter-color;
|
2016-11-02 20:18:39 +01:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
2016-12-22 23:03:57 +01:00
|
|
|
cursor: pointer;
|
2017-04-24 04:49:08 +02:00
|
|
|
transition: color 100ms ease-in;
|
2016-08-31 22:58:10 +02:00
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 33%);
|
2017-04-24 04:49:08 +02:00
|
|
|
transition: color 200ms ease-out;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 13%);
|
2016-08-31 22:58:10 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
2016-09-01 13:21:48 +02:00
|
|
|
|
|
|
|
&.active {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-highlight-color;
|
2016-09-01 13:21:48 +02:00
|
|
|
}
|
2017-03-01 00:53:11 +01:00
|
|
|
|
2017-03-25 00:01:43 +01:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-25 00:01:43 +01:00
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inverted {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 33%);
|
2017-03-25 00:01:43 +01:00
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-07-24 15:09:08 +02:00
|
|
|
color: $ui-base-lighter-color;
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
2017-07-31 05:06:56 +02:00
|
|
|
&.disabled {
|
|
|
|
color: $ui-primary-color;
|
|
|
|
}
|
|
|
|
|
2017-03-25 00:01:43 +01:00
|
|
|
&.active {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-highlight-color;
|
2017-03-25 00:01:43 +01:00
|
|
|
|
2017-07-31 05:06:56 +02:00
|
|
|
&.disabled {
|
|
|
|
color: lighten($ui-highlight-color, 13%);
|
|
|
|
}
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
}
|
2017-04-13 17:01:09 +02:00
|
|
|
|
|
|
|
&.overlayed {
|
|
|
|
box-sizing: content-box;
|
2017-05-08 15:57:49 +02:00
|
|
|
background: rgba($base-overlay-background, 0.6);
|
|
|
|
color: rgba($primary-text-color, 0.7);
|
2017-04-13 17:01:09 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: rgba($base-overlay-background, 0.9);
|
2017-04-13 17:01:09 +02:00
|
|
|
}
|
|
|
|
}
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-icon-button {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 33%);
|
2017-03-25 00:01:43 +01:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 600;
|
2017-03-26 13:08:15 +02:00
|
|
|
font-size: 11px;
|
2017-03-25 00:01:43 +01:00
|
|
|
padding: 0 3px;
|
|
|
|
line-height: 27px;
|
|
|
|
outline: 0;
|
2017-04-24 04:49:08 +02:00
|
|
|
transition: color 100ms ease-in;
|
2017-03-25 00:01:43 +01:00
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-07-24 15:09:08 +02:00
|
|
|
color: $ui-base-lighter-color;
|
2017-04-24 04:49:08 +02:00
|
|
|
transition: color 200ms ease-out;
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 13%);
|
2017-03-25 00:01:43 +01:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-highlight-color;
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-25 00:01:43 +01:00
|
|
|
outline: 0 !important;
|
2017-03-01 00:53:11 +01:00
|
|
|
}
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
|
|
|
|
2017-03-02 00:57:55 +01:00
|
|
|
.dropdown--active .icon-button {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-highlight-color;
|
2017-03-02 00:57:55 +01:00
|
|
|
}
|
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
.dropdown--active::after {
|
2017-07-27 22:31:59 +02:00
|
|
|
@media screen and (min-width: 1025px) {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 4.5px 7.8px;
|
|
|
|
border-color: transparent transparent $ui-secondary-color;
|
|
|
|
bottom: 8px;
|
|
|
|
right: 104px;
|
|
|
|
}
|
2017-05-01 18:13:10 +02:00
|
|
|
}
|
|
|
|
|
2017-01-24 17:05:44 +01:00
|
|
|
.invisible {
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
2017-01-24 20:07:46 +01:00
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
2017-08-21 17:59:34 +02:00
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
2017-01-24 17:05:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ellipsis {
|
2017-05-07 20:47:31 +02:00
|
|
|
&::after {
|
2017-01-24 17:05:44 +01:00
|
|
|
content: "…";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-07 18:23:36 +01:00
|
|
|
.lightbox .icon-button {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-base-color;
|
2016-11-07 18:23:36 +01:00
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.compose-form {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2017-02-13 18:38:00 +01:00
|
|
|
.compose-form__warning {
|
2017-05-12 17:46:36 +02:00
|
|
|
color: darken($ui-secondary-color, 65%);
|
2017-02-13 18:38:00 +01:00
|
|
|
margin-bottom: 15px;
|
2017-05-08 15:57:49 +02:00
|
|
|
background: $ui-primary-color;
|
|
|
|
box-shadow: 0 2px 6px rgba($base-shadow-color, 0.3);
|
2017-02-13 18:38:00 +01:00
|
|
|
padding: 8px 10px;
|
|
|
|
border-radius: 4px;
|
2017-04-24 00:38:37 +02:00
|
|
|
font-size: 13px;
|
2017-02-13 18:38:00 +01:00
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
strong {
|
2017-05-12 20:19:39 +02:00
|
|
|
color: darken($ui-secondary-color, 65%);
|
2017-02-13 18:38:00 +01:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-04-24 00:38:37 +02:00
|
|
|
|
|
|
|
a {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: darken($ui-primary-color, 33%);
|
2017-04-24 00:38:37 +02:00
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-04-24 00:38:37 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2017-02-13 18:38:00 +01:00
|
|
|
}
|
|
|
|
|
2017-03-25 00:01:43 +01:00
|
|
|
.compose-form__modifiers {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-base-color;
|
2017-03-25 00:01:43 +01:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
2017-05-08 15:57:49 +02:00
|
|
|
background: $simple-background-color;
|
2017-05-07 20:47:31 +02:00
|
|
|
border-radius: 0 0 4px;
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.compose-form__buttons-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2017-03-25 00:01:43 +01:00
|
|
|
.compose-form__buttons {
|
|
|
|
padding: 10px;
|
2017-05-08 15:57:49 +02:00
|
|
|
background: darken($simple-background-color, 8%);
|
|
|
|
box-shadow: inset 0 5px 5px rgba($base-shadow-color, 0.05);
|
2017-03-25 00:01:43 +01:00
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
box-sizing: content-box;
|
|
|
|
padding: 0 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.compose-form__upload-button-icon {
|
|
|
|
line-height: 27px;
|
|
|
|
}
|
|
|
|
|
2017-06-20 19:43:09 +02:00
|
|
|
.compose-form__sensitive-button {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.compose-form__sensitive-button--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__sensitive-button__icon {
|
|
|
|
line-height: 27px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.compose-form__upload-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__uploads-wrapper {
|
|
|
|
display: flex;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__upload {
|
|
|
|
flex: 1 1 0;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2017-04-23 14:18:58 +02:00
|
|
|
.compose-form__upload-thumbnail {
|
|
|
|
border-radius: 4px;
|
2017-04-29 14:29:13 +02:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2017-04-23 14:18:58 +02:00
|
|
|
height: 100px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.compose-form__upload-cancel {
|
|
|
|
background-size: cover;
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
2017-02-09 01:20:09 +01:00
|
|
|
.compose-form__label {
|
|
|
|
display: block;
|
|
|
|
line-height: 24px;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&.with-border {
|
2017-05-08 15:57:49 +02:00
|
|
|
border-top: 1px solid $ui-base-color;
|
2017-02-09 01:20:09 +01:00
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__label__text {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
margin-left: 8px;
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-primary-color;
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
.compose-form__textarea,
|
|
|
|
.follow-form__input {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: $simple-background-color;
|
2016-08-31 22:58:10 +02:00
|
|
|
|
|
|
|
&:disabled {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: $ui-secondary-color;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.compose-form__autosuggest-wrapper {
|
|
|
|
position: relative;
|
2017-05-01 18:13:10 +02:00
|
|
|
|
2017-05-19 11:42:54 +02:00
|
|
|
.emoji-picker__dropdown {
|
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
top: 5px;
|
|
|
|
|
|
|
|
&.dropdown--active::after {
|
|
|
|
border-color: transparent transparent $base-border-color;
|
|
|
|
bottom: -1px;
|
|
|
|
right: 8px;
|
|
|
|
}
|
2017-08-10 13:41:12 +02:00
|
|
|
|
|
|
|
::-webkit-scrollbar-track:hover,
|
|
|
|
::-webkit-scrollbar-track:active {
|
|
|
|
background-color: rgba($base-overlay-background, 0.3);
|
|
|
|
}
|
2017-05-01 18:13:10 +02:00
|
|
|
}
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__publish {
|
|
|
|
display: flex;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__publish-button-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
2016-11-08 21:45:51 +01:00
|
|
|
.emojione {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: inherit;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: -.2ex .15em .2ex;
|
2016-11-15 18:38:57 +01:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2016-11-08 21:45:51 +01:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-09 01:20:09 +01:00
|
|
|
.reply-indicator {
|
2017-03-25 00:01:43 +01:00
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
position: relative;
|
|
|
|
bottom: -2px;
|
2017-05-08 15:57:49 +02:00
|
|
|
background: $ui-primary-color;
|
2017-02-09 01:20:09 +01:00
|
|
|
padding: 10px;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
2017-02-09 01:20:09 +01:00
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.reply-indicator__header {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__cancel {
|
|
|
|
float: right;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__display-name {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-base-color;
|
2017-04-23 04:26:55 +02:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
line-height: 24px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-right: 25px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__display-avatar {
|
|
|
|
float: left;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2017-06-19 18:27:07 +02:00
|
|
|
.status__content--with-action {
|
2017-04-23 04:26:55 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.reply-indicator__content {
|
2016-08-31 16:48:21 +02:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
2017-01-26 23:34:40 +01:00
|
|
|
font-weight: 400;
|
2016-10-06 21:56:07 +02:00
|
|
|
overflow: hidden;
|
2016-12-11 23:08:46 +01:00
|
|
|
white-space: pre-wrap;
|
2016-08-31 16:48:21 +02:00
|
|
|
|
2016-11-08 21:45:51 +01:00
|
|
|
.emojione {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
2016-09-10 10:14:36 +02:00
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-24 21:08:00 +02:00
|
|
|
a {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-secondary-color;
|
2016-08-24 21:08:00 +02:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
2017-02-05 15:25:55 +01:00
|
|
|
|
|
|
|
.fa {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 40%);
|
2017-02-05 15:25:55 +01:00
|
|
|
}
|
2016-08-24 21:08:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-05 15:25:55 +01:00
|
|
|
|
|
|
|
.fa {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 30%);
|
2017-02-05 15:25:55 +01:00
|
|
|
}
|
2016-08-24 21:08:00 +02:00
|
|
|
}
|
2017-01-26 14:52:07 +01:00
|
|
|
|
|
|
|
.status__content__spoiler-link {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: lighten($ui-base-color, 30%);
|
2017-01-26 14:52:07 +01:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: lighten($ui-base-color, 33%);
|
2017-01-26 14:52:07 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2017-05-19 11:42:54 +02:00
|
|
|
|
|
|
|
.status__content__text {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.status__content__text--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2016-08-24 21:08:00 +02:00
|
|
|
}
|
2016-08-31 22:58:10 +02:00
|
|
|
|
2017-05-11 00:28:10 +02:00
|
|
|
.status__content__spoiler-link {
|
2017-02-09 01:20:09 +01:00
|
|
|
display: inline-block;
|
|
|
|
border-radius: 2px;
|
2017-05-11 00:28:10 +02:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2017-05-08 15:57:49 +02:00
|
|
|
color: lighten($ui-base-color, 8%);
|
2017-02-09 01:20:09 +01:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 11px;
|
2017-05-07 20:47:31 +02:00
|
|
|
padding: 0 6px;
|
2017-02-09 01:20:09 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
line-height: inherit;
|
2017-05-11 00:28:10 +02:00
|
|
|
cursor: pointer;
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.status__prepend-icon-wrapper {
|
|
|
|
left: -26px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2017-02-09 01:20:09 +01:00
|
|
|
.status {
|
|
|
|
padding: 8px 10px;
|
|
|
|
padding-left: 68px;
|
|
|
|
position: relative;
|
|
|
|
min-height: 48px;
|
2017-05-08 15:57:49 +02:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-02-09 01:20:09 +01:00
|
|
|
cursor: default;
|
|
|
|
|
2017-05-24 17:55:00 +02:00
|
|
|
@keyframes fade {
|
|
|
|
0% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
opacity: 1;
|
2017-05-27 00:53:25 +02:00
|
|
|
animation: fade 150ms linear;
|
2017-05-24 17:55:00 +02:00
|
|
|
|
2017-09-14 03:39:10 +02:00
|
|
|
.video-player {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
2017-05-13 01:38:51 +02:00
|
|
|
&.status-direct {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
.icon-button.disabled {
|
|
|
|
color: lighten($ui-base-color, 16%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-11 21:24:17 +02:00
|
|
|
&.light {
|
|
|
|
.status__relative-time {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-primary-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-base-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
strong {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-base-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-primary-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-base-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
|
|
|
|
a {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $ui-highlight-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a.status__content__spoiler-link {
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-primary-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: lighten($ui-primary-color, 8%);
|
2017-04-11 21:24:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
|
|
|
|
2017-05-24 04:22:46 +02:00
|
|
|
.notification-favourite {
|
|
|
|
.status.status-direct {
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
.icon-button.disabled {
|
|
|
|
color: lighten($ui-base-color, 13%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
.status__relative-time {
|
|