2017-04-24 07:38:37 +09:00
|
|
|
.app-body {
|
2017-05-08 03:47:31 +09:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2017-04-06 01:10:25 +09:00
|
|
|
}
|
|
|
|
|
2020-01-25 13:23:05 +09:00
|
|
|
.animated-number {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:24:03 +09:00
|
|
|
.inline-alert {
|
|
|
|
color: $valid-value-color;
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: opacity 200ms ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-15 22:13:26 +09:00
|
|
|
.link-button {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
2022-10-26 01:47:21 +09:00
|
|
|
color: $highlight-text-color;
|
2019-08-15 22:13:26 +09:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
2022-10-22 18:44:41 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&--destructive {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
2019-08-15 22:13:26 +09:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
color: $ui-primary-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 05:58:10 +09:00
|
|
|
.button {
|
2023-07-03 18:32:31 +09:00
|
|
|
background-color: $ui-button-background-color;
|
2016-09-28 06:12:33 +09:00
|
|
|
border: 10px none;
|
2017-04-23 11:26:55 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
2023-07-03 18:32:31 +09:00
|
|
|
color: $ui-button-color;
|
2017-04-23 11:26:55 +09:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: inherit;
|
2022-03-07 19:38:52 +09:00
|
|
|
font-size: 15px;
|
2016-09-28 06:12:33 +09:00
|
|
|
font-weight: 500;
|
2017-04-23 11:26:55 +09:00
|
|
|
letter-spacing: 0;
|
2022-02-24 04:03:46 +09:00
|
|
|
line-height: 22px;
|
2017-04-23 11:26:55 +09:00
|
|
|
overflow: hidden;
|
2022-02-24 04:03:46 +09:00
|
|
|
padding: 7px 18px;
|
2017-04-23 11:26:55 +09:00
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2016-09-28 06:12:33 +09:00
|
|
|
text-decoration: none;
|
2017-04-23 11:26:55 +09:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-05-19 18:42:54 +09:00
|
|
|
width: auto;
|
2016-09-01 05:58:10 +09:00
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 18:32:31 +09:00
|
|
|
background-color: $ui-button-focus-background-color;
|
2016-09-01 05:58:10 +09:00
|
|
|
}
|
|
|
|
|
2018-08-19 10:28:43 +09:00
|
|
|
&--destructive {
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 18:32:31 +09:00
|
|
|
background-color: $ui-button-destructive-focus-background-color;
|
2018-08-19 10:28:43 +09:00
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 11:59:13 +09:00
|
|
|
&:disabled,
|
|
|
|
&.disabled {
|
2017-05-08 22:57:49 +09:00
|
|
|
background-color: $ui-primary-color;
|
2016-10-02 22:28:47 +09:00
|
|
|
cursor: default;
|
2016-09-01 05:58:10 +09:00
|
|
|
}
|
2016-09-08 01:17:15 +09:00
|
|
|
|
2022-10-23 06:18:32 +09:00
|
|
|
&.copyable {
|
|
|
|
transition: background 300ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
background: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2018-04-19 09:36:31 +09:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:17:15 +09:00
|
|
|
&.button-secondary {
|
2023-07-03 18:32:31 +09:00
|
|
|
color: $ui-button-secondary-color;
|
2017-07-11 22:27:59 +09:00
|
|
|
background: transparent;
|
2022-02-24 04:03:46 +09:00
|
|
|
padding: 6px 17px;
|
2023-07-03 18:32:31 +09:00
|
|
|
border: 1px solid $ui-button-secondary-border-color;
|
2017-07-11 22:27:59 +09:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 18:32:31 +09:00
|
|
|
border-color: $ui-button-secondary-focus-background-color;
|
|
|
|
color: $ui-button-secondary-focus-color;
|
|
|
|
background-color: $ui-button-secondary-focus-background-color;
|
2022-09-29 11:39:33 +09:00
|
|
|
text-decoration: none;
|
2017-07-11 22:27:59 +09:00
|
|
|
}
|
2019-03-04 06:18:23 +09:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2016-09-08 01:17:15 +09:00
|
|
|
}
|
2017-05-19 18:42:54 +09:00
|
|
|
|
2022-09-29 13:21:51 +09:00
|
|
|
&.button-tertiary {
|
|
|
|
background: transparent;
|
|
|
|
padding: 6px 17px;
|
2023-07-03 18:32:31 +09:00
|
|
|
color: $ui-button-tertiary-color;
|
|
|
|
border: 1px solid $ui-button-tertiary-border-color;
|
2022-09-29 13:21:51 +09:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 18:32:31 +09:00
|
|
|
background-color: $ui-button-tertiary-focus-background-color;
|
|
|
|
color: $ui-button-tertiary-focus-color;
|
2022-09-29 13:21:51 +09:00
|
|
|
border: 0;
|
|
|
|
padding: 7px 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2022-12-16 02:50:11 +09:00
|
|
|
|
|
|
|
&.button--confirmation {
|
|
|
|
color: $valid-value-color;
|
|
|
|
border-color: $valid-value-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $valid-value-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.button--destructive {
|
|
|
|
color: $error-value-color;
|
|
|
|
border-color: $error-value-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $error-value-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 13:21:51 +09:00
|
|
|
}
|
|
|
|
|
2017-05-19 18:42:54 +09:00
|
|
|
&.button--block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-12-27 07:50:34 +09:00
|
|
|
|
|
|
|
.layout-multiple-columns &.button--with-bell {
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 0 8px;
|
|
|
|
}
|
2017-05-19 18:42:54 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.column__wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2016-09-01 05:58:10 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
2020-10-04 22:02:36 +09:00
|
|
|
display: inline-block;
|
2017-03-25 08:01:43 +09:00
|
|
|
padding: 0;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $action-button-color;
|
2019-06-07 01:51:46 +09:00
|
|
|
border: 0;
|
2019-08-04 02:10:50 +09:00
|
|
|
border-radius: 4px;
|
2016-11-03 04:18:39 +09:00
|
|
|
background: transparent;
|
2016-12-23 07:03:57 +09:00
|
|
|
cursor: pointer;
|
2019-08-04 02:10:50 +09:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2020-10-04 22:02:36 +09:00
|
|
|
text-decoration: none;
|
2016-09-01 05:58:10 +09:00
|
|
|
|
2022-02-25 09:20:41 +09:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: lighten($action-button-color, 7%);
|
2019-08-04 02:10:50 +09:00
|
|
|
background-color: rgba($action-button-color, 0.15);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($action-button-color, 0.3);
|
2016-09-01 05:58:10 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: darken($action-button-color, 13%);
|
2019-08-04 02:10:50 +09:00
|
|
|
background-color: transparent;
|
2016-09-01 05:58:10 +09:00
|
|
|
cursor: default;
|
|
|
|
}
|
2016-09-01 20:21:48 +09:00
|
|
|
|
|
|
|
&.active {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2016-09-01 20:21:48 +09:00
|
|
|
}
|
2017-03-01 08:53:11 +09:00
|
|
|
|
2017-03-25 08:01:43 +09:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-25 08:01:43 +09:00
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inverted {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-04 02:10:50 +09:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($lighter-text-color, 0.3);
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
2017-07-31 12:06:56 +09:00
|
|
|
&.disabled {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: lighten($lighter-text-color, 7%);
|
2019-08-04 02:10:50 +09:00
|
|
|
background-color: transparent;
|
2017-07-31 12:06:56 +09:00
|
|
|
}
|
|
|
|
|
2017-03-25 08:01:43 +09:00
|
|
|
&.active {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
2017-07-31 12:06:56 +09:00
|
|
|
&.disabled {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: lighten($highlight-text-color, 13%);
|
2017-07-31 12:06:56 +09:00
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
}
|
2017-04-14 00:01:09 +09:00
|
|
|
|
|
|
|
&.overlayed {
|
|
|
|
box-sizing: content-box;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: rgba($base-overlay-background, 0.6);
|
|
|
|
color: rgba($primary-text-color, 0.7);
|
2017-04-14 00:01:09 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: rgba($base-overlay-background, 0.9);
|
2017-04-14 00:01:09 +09:00
|
|
|
}
|
|
|
|
}
|
2020-09-28 20:29:43 +09:00
|
|
|
|
2020-10-04 22:02:36 +09:00
|
|
|
&--with-counter {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
width: auto !important;
|
2022-10-28 19:46:41 +09:00
|
|
|
padding: 0 4px 0 2px;
|
2020-10-04 22:02:36 +09:00
|
|
|
}
|
|
|
|
|
2020-09-28 20:29:43 +09:00
|
|
|
&__counter {
|
|
|
|
display: inline-block;
|
2022-10-28 19:46:41 +09:00
|
|
|
width: auto;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 4px;
|
2020-09-28 20:29:43 +09:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-icon-button {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2019-06-07 01:51:46 +09:00
|
|
|
border: 0;
|
2019-08-04 02:10:50 +09:00
|
|
|
border-radius: 4px;
|
2017-03-25 08:01:43 +09:00
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 600;
|
2017-03-26 20:08:15 +09:00
|
|
|
font-size: 11px;
|
2017-03-25 08:01:43 +09:00
|
|
|
padding: 0 3px;
|
|
|
|
line-height: 27px;
|
|
|
|
outline: 0;
|
2019-08-04 02:10:50 +09:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-04 02:10:50 +09:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($lighter-text-color, 0.3);
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: lighten($lighter-text-color, 20%);
|
2019-08-04 02:10:50 +09:00
|
|
|
background-color: transparent;
|
2017-03-25 08:01:43 +09:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-25 08:01:43 +09:00
|
|
|
outline: 0 !important;
|
2017-03-01 08:53:11 +09:00
|
|
|
}
|
2016-09-01 05:58:10 +09:00
|
|
|
}
|
|
|
|
|
2023-01-12 05:58:46 +09:00
|
|
|
body > [data-popper-placement] {
|
|
|
|
z-index: 3;
|
2017-09-22 11:59:17 +09:00
|
|
|
}
|
|
|
|
|
2017-01-25 01:05:44 +09:00
|
|
|
.invisible {
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
2017-01-25 04:07:46 +09:00
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
2017-08-22 00:59:34 +09:00
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
2017-11-05 21:05:50 +09:00
|
|
|
|
|
|
|
img,
|
|
|
|
svg {
|
|
|
|
margin: 0 !important;
|
|
|
|
border: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
width: 0 !important;
|
|
|
|
height: 0 !important;
|
|
|
|
}
|
2017-01-25 01:05:44 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.ellipsis {
|
2017-05-08 03:47:31 +09:00
|
|
|
&::after {
|
2023-02-13 12:57:03 +09:00
|
|
|
content: '…';
|
2017-01-25 01:05:44 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.compose-form {
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 15px;
|
2017-02-14 02:38:00 +09:00
|
|
|
|
2019-05-03 11:34:55 +09:00
|
|
|
&__sensitive-button {
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 0;
|
2019-05-11 00:59:57 +09:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2023-02-13 12:57:03 +09:00
|
|
|
input[type='checkbox'] {
|
2023-02-20 19:32:27 +09:00
|
|
|
appearance: none;
|
2019-05-11 00:59:57 +09:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid $ui-primary-color;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
flex: 0 0 auto;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2019-05-11 00:59:57 +09:00
|
|
|
top: -1px;
|
|
|
|
border-radius: 4px;
|
|
|
|
vertical-align: middle;
|
2023-02-20 19:32:27 +09:00
|
|
|
cursor: inherit;
|
2019-05-11 00:59:57 +09:00
|
|
|
|
2023-02-20 19:32:27 +09:00
|
|
|
&:checked {
|
2019-05-11 00:59:57 +09:00
|
|
|
border-color: $highlight-text-color;
|
2023-02-13 12:57:03 +09:00
|
|
|
background: $highlight-text-color
|
|
|
|
url("data:image/svg+xml;utf8,<svg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4.5 8.5L8 12l6-6' stroke='white' stroke-width='1.5'/></svg>")
|
|
|
|
center center no-repeat;
|
2019-05-11 00:59:57 +09:00
|
|
|
}
|
2019-05-04 03:44:20 +09:00
|
|
|
}
|
2019-05-03 11:34:55 +09:00
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__warning {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2018-06-02 02:19:30 +09:00
|
|
|
margin-bottom: 10px;
|
2017-12-14 01:37:23 +09:00
|
|
|
background: $ui-primary-color;
|
|
|
|
box-shadow: 0 2px 6px rgba($base-shadow-color, 0.3);
|
|
|
|
padding: 8px 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 400;
|
2017-12-08 00:01:52 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
strong {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2017-12-14 01:37:23 +09:00
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2017-12-14 01:37:23 +09:00
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
2017-12-08 00:01:52 +09:00
|
|
|
}
|
|
|
|
}
|
2017-02-14 02:38:00 +09:00
|
|
|
}
|
2017-04-24 07:38:37 +09:00
|
|
|
|
2019-06-02 17:05:54 +09:00
|
|
|
.emoji-picker-dropdown {
|
|
|
|
position: absolute;
|
2020-03-08 23:36:50 +09:00
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 0;
|
2019-06-02 17:05:54 +09:00
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__autosuggest-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autosuggest-textarea,
|
2019-05-10 05:10:27 +09:00
|
|
|
.autosuggest-input,
|
2017-12-14 01:37:23 +09:00
|
|
|
.spoiler-input {
|
|
|
|
position: relative;
|
2019-11-07 16:06:06 +09:00
|
|
|
width: 100%;
|
2017-12-14 01:37:23 +09:00
|
|
|
}
|
|
|
|
|
2018-05-31 22:16:31 +09:00
|
|
|
.spoiler-input {
|
|
|
|
height: 0;
|
|
|
|
transform-origin: bottom;
|
2019-06-07 01:51:46 +09:00
|
|
|
opacity: 0;
|
2018-05-31 22:16:31 +09:00
|
|
|
|
|
|
|
&.spoiler-input--visible {
|
2019-06-02 17:05:54 +09:00
|
|
|
height: 36px;
|
|
|
|
margin-bottom: 11px;
|
2019-06-07 01:51:46 +09:00
|
|
|
opacity: 1;
|
2018-05-31 22:16:31 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.autosuggest-textarea__textarea,
|
|
|
|
.spoiler-input__input {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2017-12-14 01:37:23 +09:00
|
|
|
background: $simple-background-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
resize: vertical;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
2017-04-24 07:38:37 +09:00
|
|
|
|
2019-09-20 02:58:40 +09:00
|
|
|
&::placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:focus {
|
2017-12-14 01:37:23 +09:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 600px) {
|
2017-12-14 01:37:23 +09:00
|
|
|
font-size: 16px;
|
2017-04-24 07:38:37 +09:00
|
|
|
}
|
|
|
|
}
|
2017-02-14 02:38:00 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.spoiler-input__input {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.autosuggest-textarea__textarea {
|
|
|
|
min-height: 100px;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
padding-bottom: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-right: 10px + 22px; // Cannot use inline-end because of dir=auto
|
2017-12-14 01:37:23 +09:00
|
|
|
resize: none;
|
2019-03-17 04:10:42 +09:00
|
|
|
scrollbar-color: initial;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
all: unset;
|
|
|
|
}
|
2017-12-14 01:37:23 +09:00
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 600px) {
|
2023-03-27 17:56:25 +09:00
|
|
|
height: 100px !important; // Prevent auto-resize textarea
|
2017-12-14 01:37:23 +09:00
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2019-06-02 17:05:54 +09:00
|
|
|
.autosuggest-textarea__suggestions-wrapper {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.autosuggest-textarea__suggestions {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 99;
|
|
|
|
box-shadow: 4px 4px 6px rgba($base-shadow-color, 0.4);
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
border-radius: 0 0 4px 4px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $inverted-text-color;
|
2017-12-14 01:37:23 +09:00
|
|
|
font-size: 14px;
|
|
|
|
padding: 6px;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
&.autosuggest-textarea__suggestions--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.autosuggest-textarea__suggestions__item {
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 4px;
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active,
|
|
|
|
&.selected {
|
|
|
|
background: darken($ui-secondary-color, 10%);
|
|
|
|
}
|
|
|
|
}
|
2017-06-21 02:43:09 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.autosuggest-account,
|
2019-07-28 21:37:52 +09:00
|
|
|
.autosuggest-emoji,
|
|
|
|
.autosuggest-hashtag {
|
2017-12-14 01:37:23 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
line-height: 18px;
|
|
|
|
font-size: 14px;
|
2017-06-21 02:43:09 +09:00
|
|
|
}
|
|
|
|
|
2019-07-28 21:37:52 +09:00
|
|
|
.autosuggest-hashtag {
|
|
|
|
justify-content: space-between;
|
|
|
|
|
2019-08-18 05:04:31 +09:00
|
|
|
&__name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2019-09-05 13:14:06 +09:00
|
|
|
white-space: nowrap;
|
2019-08-18 05:04:31 +09:00
|
|
|
}
|
|
|
|
|
2019-07-28 21:37:52 +09:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2019-08-18 05:04:31 +09:00
|
|
|
|
|
|
|
&__uses {
|
|
|
|
flex: 0 0 auto;
|
2023-03-27 17:56:25 +09:00
|
|
|
text-align: end;
|
2019-09-05 13:14:06 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2019-08-18 05:04:31 +09:00
|
|
|
}
|
2019-07-28 21:37:52 +09:00
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.autosuggest-account-icon,
|
|
|
|
.autosuggest-emoji img {
|
|
|
|
display: block;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 8px;
|
2017-12-14 01:37:23 +09:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2017-06-21 02:43:09 +09:00
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.autosuggest-account .display-name__account {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2017-12-14 01:37:23 +09:00
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__modifiers {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2017-12-14 01:37:23 +09:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
background: $simple-background-color;
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__upload-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2017-09-28 22:31:31 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__uploads-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 5px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2017-09-28 22:31:31 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__upload {
|
|
|
|
flex: 1 1 0;
|
|
|
|
min-width: 40%;
|
|
|
|
margin: 5px;
|
|
|
|
|
2018-02-22 08:35:46 +09:00
|
|
|
&__actions {
|
2023-02-13 12:57:03 +09:00
|
|
|
background: linear-gradient(
|
|
|
|
180deg,
|
|
|
|
rgba($base-shadow-color, 0.8) 0,
|
|
|
|
rgba($base-shadow-color, 0.35) 80%,
|
|
|
|
transparent
|
|
|
|
);
|
2018-02-22 08:35:46 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
2022-03-22 17:48:12 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
2018-02-22 08:35:46 +09:00
|
|
|
|
2022-03-22 17:48:12 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: lighten($secondary-text-color, 7%);
|
2018-02-22 08:35:46 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 17:48:12 +09:00
|
|
|
&__warning {
|
2017-12-14 01:37:23 +09:00
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
bottom: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-12-14 01:37:23 +09:00
|
|
|
box-sizing: border-box;
|
2023-02-13 12:57:03 +09:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
rgba($base-shadow-color, 0.8) 0,
|
|
|
|
rgba($base-shadow-color, 0.35) 80%,
|
|
|
|
transparent
|
|
|
|
);
|
2017-09-28 22:31:31 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__upload-thumbnail {
|
|
|
|
border-radius: 4px;
|
2019-06-22 05:59:44 +09:00
|
|
|
background-color: $base-shadow-color;
|
2017-12-14 01:37:23 +09:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2018-02-22 08:35:46 +09:00
|
|
|
height: 140px;
|
2017-12-14 01:37:23 +09:00
|
|
|
width: 100%;
|
2018-02-22 08:35:46 +09:00
|
|
|
overflow: hidden;
|
2017-09-28 22:31:31 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__buttons-wrapper {
|
|
|
|
padding: 10px;
|
|
|
|
background: darken($simple-background-color, 8%);
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2019-06-02 17:05:54 +09:00
|
|
|
flex: 0 0 auto;
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__buttons {
|
|
|
|
display: flex;
|
2017-04-23 21:18:58 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__upload-button-icon {
|
|
|
|
line-height: 27px;
|
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__sensitive-button {
|
|
|
|
display: none;
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
&.compose-form__sensitive-button--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__sensitive-button__icon {
|
|
|
|
line-height: 27px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-01 05:58:10 +09:00
|
|
|
|
2019-08-04 02:10:50 +09:00
|
|
|
.icon-button,
|
|
|
|
.text-icon-button {
|
2017-12-14 01:37:23 +09:00
|
|
|
box-sizing: content-box;
|
|
|
|
padding: 0 3px;
|
|
|
|
}
|
2016-09-01 05:58:10 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.character-counter__wrapper {
|
|
|
|
align-self: center;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 4px;
|
2017-12-14 01:37:23 +09:00
|
|
|
}
|
2017-05-02 01:13:10 +09:00
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__publish {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
min-width: 0;
|
2019-06-02 17:05:54 +09:00
|
|
|
flex: 0 0 auto;
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2017-12-14 01:37:23 +09:00
|
|
|
.compose-form__publish-button-wrapper {
|
|
|
|
overflow: hidden;
|
2022-10-26 02:02:21 +09:00
|
|
|
padding-top: 15px;
|
2017-12-14 01:37:23 +09:00
|
|
|
}
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:13:26 +09:00
|
|
|
.character-counter {
|
|
|
|
cursor: default;
|
|
|
|
font-family: $font-sans-serif, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
color: $lighter-text-color;
|
|
|
|
|
|
|
|
&.character-counter--over {
|
|
|
|
color: $warning-red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-22 06:05:01 +09:00
|
|
|
.no-reduce-motion .spoiler-input {
|
|
|
|
transition: height 0.4s ease, opacity 0.4s ease;
|
|
|
|
}
|
|
|
|
|
2022-09-29 11:39:33 +09:00
|
|
|
.sign-in-banner {
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 20px;
|
2022-11-06 02:28:13 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
unicode-bidi: isolate;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
color: lighten($dark-text-color, 7%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 11:39:33 +09:00
|
|
|
}
|
2022-09-29 13:21:51 +09:00
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2022-09-29 11:39:33 +09:00
|
|
|
}
|
|
|
|
|
2016-11-09 05:45:51 +09:00
|
|
|
.emojione {
|
|
|
|
font-size: inherit;
|
|
|
|
vertical-align: middle;
|
2017-09-20 10:38:38 +09:00
|
|
|
object-fit: contain;
|
2022-06-02 02:22:35 +09:00
|
|
|
margin: -0.2ex 0.15em 0.2ex;
|
2016-11-16 02:38:57 +09:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2016-11-09 05:45:51 +09:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-09 09:20:09 +09:00
|
|
|
.reply-indicator {
|
2018-05-31 22:16:31 +09:00
|
|
|
border-radius: 4px;
|
2018-06-02 02:19:30 +09:00
|
|
|
margin-bottom: 10px;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-primary-color;
|
2017-02-09 09:20:09 +09:00
|
|
|
padding: 10px;
|
2019-06-02 17:05:54 +09:00
|
|
|
min-height: 23px;
|
|
|
|
overflow-y: auto;
|
|
|
|
flex: 0 2 auto;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.reply-indicator__header {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__cancel {
|
2023-04-04 23:48:34 +09:00
|
|
|
float: right;
|
2017-04-23 11:26:55 +09:00
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__display-name {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $inverted-text-color;
|
2017-04-23 11:26:55 +09:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
line-height: 24px;
|
|
|
|
overflow: hidden;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 25px;
|
2017-04-23 11:26:55 +09:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__display-avatar {
|
2023-04-04 23:48:34 +09:00
|
|
|
float: left;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2017-06-20 01:27:07 +09:00
|
|
|
.status__content--with-action {
|
2017-04-23 11:26:55 +09:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-10-27 21:34:02 +09:00
|
|
|
.status__content {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status__content,
|
|
|
|
.reply-indicator__content {
|
2018-09-28 00:04:33 +09:00
|
|
|
position: relative;
|
2016-08-31 23:48:21 +09:00
|
|
|
font-size: 15px;
|
2022-10-26 02:02:21 +09:00
|
|
|
line-height: 22px;
|
2016-08-31 23:48:21 +09:00
|
|
|
word-wrap: break-word;
|
2017-01-27 07:34:40 +09:00
|
|
|
font-weight: 400;
|
2016-10-07 04:56:07 +09:00
|
|
|
overflow: hidden;
|
2018-09-28 00:04:33 +09:00
|
|
|
text-overflow: ellipsis;
|
2017-12-14 06:58:31 +09:00
|
|
|
padding-top: 2px;
|
2018-08-18 10:03:12 +09:00
|
|
|
color: $primary-text-color;
|
2016-08-31 23:48:21 +09:00
|
|
|
|
2017-12-08 08:03:25 +09:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2017-10-18 03:07:44 +09:00
|
|
|
&.status__content--with-spoiler {
|
|
|
|
white-space: normal;
|
|
|
|
|
|
|
|
.status__content__text {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-09 05:45:51 +09:00
|
|
|
.emojione {
|
2017-11-08 03:09:53 +09:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2017-12-07 01:53:25 +09:00
|
|
|
margin: -3px 0 0;
|
2016-11-09 05:45:51 +09:00
|
|
|
}
|
|
|
|
|
2016-09-10 17:14:36 +09:00
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
2019-02-05 12:46:18 +09:00
|
|
|
white-space: pre-wrap;
|
2020-12-15 20:56:43 +09:00
|
|
|
unicode-bidi: plaintext;
|
2016-09-10 17:14:36 +09:00
|
|
|
|
|
|
|
&:last-child {
|
2019-07-31 17:06:58 +09:00
|
|
|
margin-bottom: 0;
|
2016-09-10 17:14:36 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-25 04:08:00 +09:00
|
|
|
a {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2016-08-25 04:08:00 +09:00
|
|
|
text-decoration: none;
|
2020-12-15 20:56:43 +09:00
|
|
|
unicode-bidi: isolate;
|
2016-08-25 04:08:00 +09:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
2017-02-05 23:25:55 +09:00
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: lighten($dark-text-color, 7%);
|
2017-02-05 23:25:55 +09:00
|
|
|
}
|
2016-08-25 04:08:00 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-05 23:25:55 +09:00
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-02-05 23:25:55 +09:00
|
|
|
}
|
2016-08-25 04:08:00 +09:00
|
|
|
}
|
2017-01-26 22:52:07 +09:00
|
|
|
|
2019-07-28 13:00:51 +09:00
|
|
|
a.unhandled-link {
|
2022-06-19 15:18:08 +09:00
|
|
|
color: $highlight-text-color;
|
2019-07-28 13:00:51 +09:00
|
|
|
}
|
|
|
|
|
2017-01-26 22:52:07 +09:00
|
|
|
.status__content__spoiler-link {
|
2018-04-18 23:52:15 +09:00
|
|
|
background: $action-button-color;
|
2017-01-26 22:52:07 +09:00
|
|
|
|
2022-03-22 14:08:05 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-04-18 23:52:15 +09:00
|
|
|
background: lighten($action-button-color, 7%);
|
2017-01-26 22:52:07 +09:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2018-04-19 09:36:31 +09:00
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
2017-01-26 22:52:07 +09:00
|
|
|
}
|
2017-05-19 18:42:54 +09:00
|
|
|
|
|
|
|
.status__content__text {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.status__content__text--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2016-08-25 04:08:00 +09:00
|
|
|
}
|
2016-09-01 05:58:10 +09:00
|
|
|
|
2020-01-24 06:00:13 +09:00
|
|
|
.announcements__item__content {
|
|
|
|
word-wrap: break-word;
|
2020-03-06 23:20:14 +09:00
|
|
|
overflow-y: auto;
|
2020-01-24 06:00:13 +09:00
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin: -3px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2020-01-27 06:26:50 +09:00
|
|
|
color: $secondary-text-color;
|
2020-01-24 06:00:13 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-27 06:26:50 +09:00
|
|
|
|
|
|
|
&.unhandled-link {
|
2022-06-19 15:18:08 +09:00
|
|
|
color: $highlight-text-color;
|
2020-01-27 06:26:50 +09:00
|
|
|
}
|
2020-01-24 06:00:13 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-28 00:04:33 +09:00
|
|
|
.status__content.status__content--collapsed {
|
2022-11-14 08:43:24 +09:00
|
|
|
max-height: 22px * 15; // 15 lines is roughly above 500 characters
|
2018-09-28 00:04:33 +09:00
|
|
|
}
|
|
|
|
|
2023-07-08 07:12:31 +09:00
|
|
|
.status__content__read-more-button,
|
|
|
|
.status__content__translate-button {
|
2018-09-28 00:04:33 +09:00
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
2022-10-26 02:02:21 +09:00
|
|
|
line-height: 22px;
|
2022-06-19 15:18:08 +09:00
|
|
|
color: $highlight-text-color;
|
2018-09-28 00:04:33 +09:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
2022-10-26 02:02:21 +09:00
|
|
|
padding-top: 16px;
|
2020-01-30 01:35:54 +09:00
|
|
|
text-decoration: none;
|
2018-09-28 00:04:33 +09:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-26 01:47:21 +09:00
|
|
|
.translate-button {
|
|
|
|
margin-top: 16px;
|
2022-01-20 06:37:27 +09:00
|
|
|
font-size: 15px;
|
2022-10-26 02:02:21 +09:00
|
|
|
line-height: 22px;
|
2022-10-26 01:47:21 +09:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-01-20 06:37:27 +09:00
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
2017-05-11 07:28:10 +09:00
|
|
|
.status__content__spoiler-link {
|
2017-02-09 09:20:09 +09:00
|
|
|
display: inline-block;
|
|
|
|
border-radius: 2px;
|
2017-05-11 07:28:10 +09:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2018-04-22 21:29:40 +09:00
|
|
|
color: $inverted-text-color;
|
2018-02-19 10:39:18 +09:00
|
|
|
font-weight: 700;
|
2020-01-27 21:44:29 +09:00
|
|
|
font-size: 11px;
|
2017-05-08 03:47:31 +09:00
|
|
|
padding: 0 6px;
|
2020-01-27 21:44:29 +09:00
|
|
|
text-transform: uppercase;
|
2018-02-19 10:39:18 +09:00
|
|
|
line-height: 20px;
|
2017-05-11 07:28:10 +09:00
|
|
|
cursor: pointer;
|
2022-03-22 14:08:05 +09:00
|
|
|
vertical-align: top;
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
|
|
|
|
2018-06-29 22:34:36 +09:00
|
|
|
.status__wrapper--filtered {
|
|
|
|
color: $dark-text-color;
|
|
|
|
border: 0;
|
|
|
|
font-size: inherit;
|
|
|
|
text-align: center;
|
|
|
|
line-height: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 16:42:13 +09:00
|
|
|
|
|
|
|
&__button {
|
|
|
|
display: inline;
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2018-06-29 22:34:36 +09:00
|
|
|
}
|
|
|
|
|
2017-10-06 08:07:59 +09:00
|
|
|
.focusable {
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-09 09:20:09 +09:00
|
|
|
.status {
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 16px;
|
2018-10-20 09:23:58 +09:00
|
|
|
min-height: 54px;
|
2017-05-08 22:57:49 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2020-07-01 20:52:05 +09:00
|
|
|
cursor: auto;
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2017-05-25 00:55:00 +09:00
|
|
|
@keyframes fade {
|
2023-02-13 12:57:03 +09:00
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-05-25 00:55:00 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
opacity: 1;
|
2017-05-27 07:53:25 +09:00
|
|
|
animation: fade 150ms linear;
|
2017-05-25 00:55:00 +09:00
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
.media-gallery,
|
2019-08-24 05:38:02 +09:00
|
|
|
.video-player,
|
2022-10-26 02:02:21 +09:00
|
|
|
.audio-player,
|
|
|
|
.attachment-list {
|
|
|
|
margin-top: 16px;
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
2022-03-30 05:55:37 +09:00
|
|
|
|
|
|
|
&.light {
|
|
|
|
.status__relative-time,
|
|
|
|
.status__visibility-icon {
|
|
|
|
color: $light-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
color: $light-text-color;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
&__spoiler-link {
|
2022-03-30 05:55:37 +09:00
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-primary-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-primary-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-24 15:07:03 +09:00
|
|
|
|
|
|
|
&--in-thread {
|
2023-07-04 21:57:46 +09:00
|
|
|
$thread-margin: 46px + 10px;
|
|
|
|
|
2023-04-24 15:07:03 +09:00
|
|
|
border-bottom: 0;
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.status__action-bar,
|
|
|
|
.media-gallery,
|
2023-04-28 18:15:43 +09:00
|
|
|
.video-player,
|
|
|
|
.audio-player,
|
2023-04-27 08:45:19 +09:00
|
|
|
.attachment-list,
|
2023-04-30 13:42:43 +09:00
|
|
|
.picture-in-picture-placeholder,
|
2023-04-28 14:50:31 +09:00
|
|
|
.status-card {
|
2023-07-04 21:57:46 +09:00
|
|
|
margin-inline-start: $thread-margin;
|
|
|
|
width: calc(100% - ($thread-margin));
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__read-more-button {
|
|
|
|
margin-inline-start: $thread-margin;
|
2023-04-24 15:07:03 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--first-in-thread {
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__line {
|
|
|
|
height: 16px - 4px;
|
|
|
|
border-inline-start: 2px solid lighten($ui-base-color, 8%);
|
|
|
|
width: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-04-26 05:15:00 +09:00
|
|
|
inset-inline-start: 16px + ((46px - 2px) * 0.5);
|
2023-04-24 15:07:03 +09:00
|
|
|
|
|
|
|
&--full {
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 16px - 4px;
|
|
|
|
height: 46px + 4px + 4px;
|
|
|
|
width: 2px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
inset-inline-start: -2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--first {
|
|
|
|
top: 16px + 46px + 4px;
|
|
|
|
height: calc(100% - (16px + 46px + 4px));
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
.status__relative-time {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
height: 40px;
|
|
|
|
order: 2;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
2018-12-08 08:40:11 +09:00
|
|
|
.notification__relative_time {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2023-04-04 23:48:34 +09:00
|
|
|
float: right;
|
2017-05-20 23:48:49 +09:00
|
|
|
font-size: 14px;
|
2020-10-27 11:00:47 +09:00
|
|
|
padding-bottom: 1px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2020-06-26 05:43:59 +09:00
|
|
|
.status__visibility-icon {
|
2020-10-27 11:00:47 +09:00
|
|
|
padding: 0 4px;
|
2020-06-26 05:43:59 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status__display-name {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-04-24 04:34:33 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__info .status__display-name {
|
2017-04-23 11:26:55 +09:00
|
|
|
max-width: 100%;
|
2022-10-26 02:02:21 +09:00
|
|
|
display: flex;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
bdi {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__account {
|
|
|
|
white-space: nowrap;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__info {
|
|
|
|
font-size: 15px;
|
2023-02-20 16:11:23 +09:00
|
|
|
padding-bottom: 10px;
|
2022-10-26 02:02:21 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 10px;
|
2023-02-20 16:11:23 +09:00
|
|
|
cursor: pointer;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
.status-check-box__status {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 10px;
|
2017-02-15 04:59:26 +09:00
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
.detailed-status__display-name {
|
|
|
|
color: lighten($inverted-text-color, 16%);
|
2018-03-05 04:29:12 +09:00
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
span {
|
|
|
|
display: inline;
|
2018-03-05 04:29:12 +09:00
|
|
|
}
|
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
&:hover strong {
|
|
|
|
text-decoration: none;
|
2018-03-05 04:29:12 +09:00
|
|
|
}
|
2022-02-24 04:03:46 +09:00
|
|
|
}
|
2018-03-05 04:29:12 +09:00
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
.media-gallery,
|
|
|
|
.audio-player,
|
|
|
|
.video-player {
|
2022-03-10 05:15:24 +09:00
|
|
|
margin-top: 15px;
|
2022-02-24 04:03:46 +09:00
|
|
|
max-width: 250px;
|
|
|
|
}
|
2018-03-05 04:29:12 +09:00
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
.status__content {
|
|
|
|
padding: 0;
|
|
|
|
white-space: normal;
|
2017-02-15 04:59:26 +09:00
|
|
|
}
|
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
.media-gallery__item-thumbnail {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2017-02-09 09:20:09 +09:00
|
|
|
.status__prepend {
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 16px;
|
|
|
|
padding-bottom: 0;
|
2023-03-30 22:16:20 +09:00
|
|
|
display: inline-flex;
|
2022-10-26 02:02:21 +09:00
|
|
|
gap: 10px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-weight: 500;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-02-09 09:20:09 +09:00
|
|
|
|
|
|
|
.status__display-name strong {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
2017-10-07 03:40:17 +09:00
|
|
|
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
|
|
|
|
2023-03-30 22:16:20 +09:00
|
|
|
.status__wrapper-direct {
|
|
|
|
background: mix($ui-base-color, $ui-highlight-color, 95%);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: mix(lighten($ui-base-color, 4%), $ui-highlight-color, 95%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__prepend {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status__action-bar {
|
2017-04-25 22:16:09 +09:00
|
|
|
display: flex;
|
2022-10-26 02:02:21 +09:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
gap: 18px;
|
|
|
|
margin-top: 16px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2017-05-11 07:28:10 +09:00
|
|
|
.detailed-status__action-bar-dropdown {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-09-25 21:20:29 +09:00
|
|
|
.detailed-status {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 16px;
|
2023-04-24 15:07:03 +09:00
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
2017-02-11 06:58:29 +09:00
|
|
|
|
2018-07-29 02:25:33 +09:00
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.detailed-status__meta {
|
|
|
|
flex: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-25 21:20:29 +09:00
|
|
|
.status__content {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
2016-11-09 05:45:51 +09:00
|
|
|
|
|
|
|
.emojione {
|
2017-11-08 03:09:53 +09:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2017-12-11 01:56:05 +09:00
|
|
|
margin: -1px 0 0;
|
2016-11-09 05:45:51 +09:00
|
|
|
}
|
2018-02-19 10:39:18 +09:00
|
|
|
|
|
|
|
.status__content__spoiler-link {
|
|
|
|
line-height: 24px;
|
|
|
|
margin: -1px 0 0;
|
|
|
|
}
|
2016-09-25 21:20:29 +09:00
|
|
|
}
|
2017-09-14 10:39:10 +09:00
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
.media-gallery,
|
2019-08-24 05:38:02 +09:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2022-10-26 02:02:21 +09:00
|
|
|
margin-top: 16px;
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
2023-03-30 22:16:20 +09:00
|
|
|
|
|
|
|
.status__prepend {
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
2016-09-25 21:20:29 +09:00
|
|
|
}
|
|
|
|
|
2017-02-11 06:58:29 +09:00
|
|
|
.detailed-status__meta {
|
2022-10-26 02:02:21 +09:00
|
|
|
margin-top: 16px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-02-11 06:58:29 +09:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
2017-02-09 09:20:09 +09:00
|
|
|
.detailed-status__action-bar {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-04-25 22:16:09 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-02-09 09:20:09 +09:00
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
2023-03-30 22:16:20 +09:00
|
|
|
.detailed-status__wrapper-direct {
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: mix($ui-base-color, $ui-highlight-color, 95%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: mix(lighten($ui-base-color, 4%), $ui-highlight-color, 95%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
border-top-color: mix(
|
|
|
|
lighten($ui-base-color, 8%),
|
|
|
|
$ui-highlight-color,
|
|
|
|
95%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__prepend {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.detailed-status__link {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__favorites,
|
|
|
|
.detailed-status__reblogs {
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 12px;
|
2022-11-10 16:49:59 +09:00
|
|
|
line-height: 17px;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 6px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2016-09-01 05:58:10 +09:00
|
|
|
.reply-indicator__content {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2016-09-01 05:58:10 +09:00
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
a {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2016-09-01 05:58:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 19:38:00 +09:00
|
|
|
.domain {
|
|
|
|
padding: 10px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
.domain__domain-name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: block;
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.domain__wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.domain_buttons {
|
|
|
|
height: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2017-02-09 09:20:09 +09:00
|
|
|
.account {
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 16px;
|
2017-05-08 22:57:49 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-02-09 09:20:09 +09:00
|
|
|
|
|
|
|
.account__display-name {
|
|
|
|
flex: 1 1 auto;
|
2022-10-26 02:02:21 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-02-09 09:20:09 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
2021-04-19 21:45:15 +09:00
|
|
|
|
2023-03-25 16:46:32 +09:00
|
|
|
.display-name {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name strong {
|
|
|
|
display: inline;
|
2021-04-19 21:45:15 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-01 16:27:23 +09:00
|
|
|
&--minimal {
|
|
|
|
.account__display-name {
|
|
|
|
.display-name {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name strong {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-19 21:45:15 +09:00
|
|
|
&__note {
|
2023-06-23 23:34:27 +09:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
2021-04-19 21:45:15 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-04-24 05:33:08 +09:00
|
|
|
display: -webkit-box;
|
2023-06-23 23:34:27 +09:00
|
|
|
-webkit-line-clamp: 1;
|
2023-04-24 05:33:08 +09:00
|
|
|
-webkit-box-orient: vertical;
|
2023-06-23 23:34:27 +09:00
|
|
|
margin-top: 10px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
&--missing {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2021-04-19 21:45:15 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.account__wrapper {
|
|
|
|
display: flex;
|
2022-10-26 02:02:21 +09:00
|
|
|
gap: 10px;
|
2023-06-06 11:14:28 +09:00
|
|
|
align-items: center;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
2019-06-07 01:51:46 +09:00
|
|
|
@include avatar-radius;
|
2022-06-02 02:22:35 +09:00
|
|
|
|
2020-05-04 05:04:18 +09:00
|
|
|
display: block;
|
2017-04-23 11:26:55 +09:00
|
|
|
position: relative;
|
2022-10-28 07:48:45 +09:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
2020-05-04 05:04:18 +09:00
|
|
|
|
2017-05-03 18:43:37 +09:00
|
|
|
&-inline {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2017-05-03 18:43:37 +09:00
|
|
|
}
|
2018-10-20 09:23:58 +09:00
|
|
|
|
|
|
|
&-composite {
|
2019-09-22 03:01:16 +09:00
|
|
|
border-radius: 50%;
|
2018-10-20 09:23:58 +09:00
|
|
|
overflow: hidden;
|
2019-09-22 03:01:16 +09:00
|
|
|
position: relative;
|
2018-10-20 09:23:58 +09:00
|
|
|
|
|
|
|
& > div {
|
2023-04-04 23:48:34 +09:00
|
|
|
float: left;
|
2018-10-20 09:23:58 +09:00
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2019-09-22 03:01:16 +09:00
|
|
|
|
2022-10-28 07:48:45 +09:00
|
|
|
.account__avatar {
|
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
&__label {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 50%;
|
2019-09-22 03:01:16 +09:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-shadow: 1px 1px 2px $base-shadow-color;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
2018-10-20 09:23:58 +09:00
|
|
|
}
|
2017-05-03 18:43:37 +09:00
|
|
|
}
|
|
|
|
|
2018-04-20 09:28:48 +09:00
|
|
|
a .account__avatar {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-05-03 18:43:37 +09:00
|
|
|
.account__avatar-overlay {
|
2022-06-27 16:30:15 +09:00
|
|
|
position: relative;
|
|
|
|
|
2017-05-03 18:43:37 +09:00
|
|
|
&-overlay {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 0;
|
2017-05-03 18:43:37 +09:00
|
|
|
z-index: 1;
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__relationship {
|
2017-11-15 11:56:41 +09:00
|
|
|
white-space: nowrap;
|
2023-06-06 11:14:28 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-authorize {
|
|
|
|
padding: 14px 10px;
|
|
|
|
|
|
|
|
.detailed-status__display-name {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-authorize__avatar {
|
2023-04-04 23:48:34 +09:00
|
|
|
float: left;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name,
|
|
|
|
.status__relative-time,
|
|
|
|
.detailed-status__display-name,
|
|
|
|
.detailed-status__datetime,
|
|
|
|
.detailed-status__application,
|
|
|
|
.account__display-name {
|
2016-09-01 05:58:10 +09:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status__display-name,
|
|
|
|
.account__display-name {
|
2023-03-25 16:46:32 +09:00
|
|
|
.display-name strong {
|
2017-05-08 22:57:49 +09:00
|
|
|
color: $primary-text-color;
|
2016-09-01 21:12:11 +09:00
|
|
|
}
|
2017-10-06 08:07:59 +09:00
|
|
|
}
|
2016-11-19 08:28:42 +09:00
|
|
|
|
2017-10-06 08:07:59 +09:00
|
|
|
.muted {
|
|
|
|
.emojione {
|
|
|
|
opacity: 0.5;
|
2016-11-19 08:28:42 +09:00
|
|
|
}
|
2016-09-01 21:12:11 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status__display-name,
|
|
|
|
.reply-indicator__display-name,
|
|
|
|
.detailed-status__display-name,
|
2018-04-20 09:28:48 +09:00
|
|
|
a.account__display-name {
|
2023-03-25 16:46:32 +09:00
|
|
|
&:hover .display-name strong {
|
2017-04-23 11:26:55 +09:00
|
|
|
text-decoration: underline;
|
2016-09-01 05:58:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-25 16:46:32 +09:00
|
|
|
.account__display-name .display-name strong {
|
2017-04-23 11:26:55 +09:00
|
|
|
display: block;
|
2017-10-07 03:40:17 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__application,
|
|
|
|
.detailed-status__datetime {
|
|
|
|
color: inherit;
|
2016-10-29 03:05:44 +09:00
|
|
|
}
|
|
|
|
|
2016-09-25 21:20:29 +09:00
|
|
|
.detailed-status__display-name {
|
2022-10-26 02:02:21 +09:00
|
|
|
color: $darker-text-color;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-bottom: 16px;
|
2017-04-23 11:26:55 +09:00
|
|
|
overflow: hidden;
|
2016-09-25 21:20:29 +09:00
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
strong,
|
|
|
|
span {
|
2016-09-25 21:20:29 +09:00
|
|
|
display: block;
|
2017-08-28 07:01:07 +09:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2016-09-25 21:20:29 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2017-05-08 22:57:49 +09:00
|
|
|
color: $primary-text-color;
|
2016-09-25 21:20:29 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status__avatar {
|
2022-10-26 02:02:21 +09:00
|
|
|
width: 46px;
|
|
|
|
height: 46px;
|
2019-05-15 13:53:23 +09:00
|
|
|
}
|
|
|
|
|
2016-11-21 03:39:18 +09:00
|
|
|
.muted {
|
2019-09-29 23:54:24 +09:00
|
|
|
.status__content,
|
2017-04-23 11:26:55 +09:00
|
|
|
.status__content p,
|
|
|
|
.status__content a {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2016-11-21 03:39:18 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name strong {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2016-11-21 03:39:18 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2017-01-27 02:48:56 +09:00
|
|
|
|
2017-04-24 04:34:33 +09:00
|
|
|
a.status__content__spoiler-link {
|
2018-04-22 04:35:55 +09:00
|
|
|
background: $ui-base-lighter-color;
|
|
|
|
color: $inverted-text-color;
|
2017-01-27 02:48:56 +09:00
|
|
|
|
2022-03-22 14:08:05 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-04-22 04:35:55 +09:00
|
|
|
background: lighten($ui-base-lighter-color, 7%);
|
2017-01-27 02:48:56 +09:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2016-11-21 03:39:18 +09:00
|
|
|
}
|
|
|
|
|
2022-06-27 16:30:15 +09:00
|
|
|
.notification__report {
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 16px;
|
2022-06-27 16:30:15 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2022-10-26 02:02:21 +09:00
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
&__avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2022-06-27 16:30:15 +09:00
|
|
|
|
|
|
|
&__details {
|
2022-10-26 02:02:21 +09:00
|
|
|
flex: 1 1 auto;
|
2022-06-27 16:30:15 +09:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
color: $darker-text-color;
|
2022-10-26 02:02:21 +09:00
|
|
|
gap: 10px;
|
2022-06-27 16:30:15 +09:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
2022-10-26 02:02:21 +09:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-06-27 16:30:15 +09:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
&__actions {
|
|
|
|
flex: 0 0 auto;
|
2022-06-27 16:30:15 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-11 06:58:29 +09:00
|
|
|
.notification__message {
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 16px;
|
|
|
|
padding-bottom: 0;
|
2017-02-11 06:58:29 +09:00
|
|
|
cursor: default;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $darker-text-color;
|
2017-02-11 06:58:29 +09:00
|
|
|
font-size: 15px;
|
2018-12-05 13:08:43 +09:00
|
|
|
line-height: 22px;
|
2022-10-26 02:02:21 +09:00
|
|
|
font-weight: 500;
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
2017-02-11 06:58:29 +09:00
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2017-02-11 06:58:29 +09:00
|
|
|
}
|
2017-10-07 03:40:17 +09:00
|
|
|
|
|
|
|
> span {
|
2018-12-05 13:08:43 +09:00
|
|
|
display: inline;
|
2017-10-07 03:40:17 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2017-02-11 06:58:29 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.notification__favourite-icon-wrapper {
|
2017-04-24 04:34:33 +09:00
|
|
|
.star-icon {
|
2017-05-08 22:57:49 +09:00
|
|
|
color: $gold-star;
|
2017-04-24 04:34:33 +09:00
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
.icon-button.star-icon.active {
|
2017-05-08 22:57:49 +09:00
|
|
|
color: $gold-star;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
.icon-button.bookmark-icon.active {
|
2019-11-14 07:02:10 +09:00
|
|
|
color: $red-bookmark;
|
|
|
|
}
|
|
|
|
|
2019-10-25 05:47:48 +09:00
|
|
|
.no-reduce-motion .icon-button.star-icon {
|
|
|
|
&.activate {
|
|
|
|
& > .fa-star {
|
|
|
|
animation: spring-rotate-in 1s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.deactivate {
|
|
|
|
& > .fa-star {
|
|
|
|
animation: spring-rotate-out 1s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-21 03:39:18 +09:00
|
|
|
.notification__display-name {
|
|
|
|
color: inherit;
|
2017-04-23 11:26:55 +09:00
|
|
|
font-weight: 500;
|
2016-11-21 03:39:18 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.display-name {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2023-04-24 05:24:53 +09:00
|
|
|
|
|
|
|
&__account {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name__html {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__relative-time,
|
|
|
|
.detailed-status__datetime {
|
2016-09-01 05:58:10 +09:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-09-08 01:17:15 +09:00
|
|
|
|
2017-06-07 02:30:17 +09:00
|
|
|
.image-loader {
|
|
|
|
position: relative;
|
2018-03-05 04:32:24 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-03-26 20:59:21 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-07-15 08:18:09 +09:00
|
|
|
flex-direction: column;
|
2020-11-03 05:16:38 +09:00
|
|
|
scrollbar-width: none; /* Firefox */
|
2023-02-13 12:57:03 +09:00
|
|
|
-ms-overflow-style: none; /* IE 10+ */
|
2020-11-03 05:16:38 +09:00
|
|
|
|
|
|
|
* {
|
|
|
|
scrollbar-width: none; /* Firefox */
|
2023-02-13 12:57:03 +09:00
|
|
|
-ms-overflow-style: none; /* IE 10+ */
|
2020-11-03 05:16:38 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar,
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
background: transparent; /* Chrome/Safari/Webkit */
|
|
|
|
}
|
2016-09-30 07:00:45 +09:00
|
|
|
|
2018-03-26 20:59:21 +09:00
|
|
|
.image-loader__preview-canvas {
|
|
|
|
max-width: $media-modal-media-max-width;
|
|
|
|
max-height: $media-modal-media-max-height;
|
|
|
|
background: url('../images/void.png') repeat;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2018-03-05 04:32:24 +09:00
|
|
|
|
2022-07-20 20:56:44 +09:00
|
|
|
.loading-bar__container {
|
2018-07-15 08:18:09 +09:00
|
|
|
position: relative;
|
2017-06-27 20:43:53 +09:00
|
|
|
}
|
2017-06-07 02:30:17 +09:00
|
|
|
|
2022-07-20 20:56:44 +09:00
|
|
|
.loading-bar {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2018-03-05 04:32:24 +09:00
|
|
|
&.image-loader--amorphous .image-loader__preview-canvas {
|
|
|
|
display: none;
|
2017-06-27 20:43:53 +09:00
|
|
|
}
|
2018-03-05 04:32:24 +09:00
|
|
|
}
|
2017-07-09 00:21:59 +09:00
|
|
|
|
2018-03-05 04:32:24 +09:00
|
|
|
.zoomable-image {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-04-04 18:58:15 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-03-26 20:59:21 +09:00
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: $media-modal-media-max-width;
|
|
|
|
max-height: $media-modal-media-max-height;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2017-01-28 12:04:09 +09:00
|
|
|
}
|
|
|
|
|
2017-02-09 09:20:09 +09:00
|
|
|
.navigation-bar {
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 15px;
|
2017-02-09 09:20:09 +09:00
|
|
|
display: flex;
|
2018-06-16 01:00:03 +09:00
|
|
|
align-items: center;
|
2017-02-09 09:20:09 +09:00
|
|
|
flex-shrink: 0;
|
|
|
|
cursor: default;
|
2022-10-26 02:02:21 +09:00
|
|
|
gap: 10px;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-02-09 09:20:09 +09:00
|
|
|
|
|
|
|
strong {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
|
2018-01-20 09:32:37 +09:00
|
|
|
a {
|
|
|
|
color: inherit;
|
2017-04-23 11:26:55 +09:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-07-21 08:38:24 +09:00
|
|
|
|
2018-06-13 21:44:50 +09:00
|
|
|
.navigation-bar__actions {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.icon-button.close {
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
2019-06-07 01:51:46 +09:00
|
|
|
transform: scale(0, 1) translate(-100%, 0);
|
2018-06-13 21:44:50 +09:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose__action-bar .icon-button {
|
|
|
|
pointer-events: auto;
|
2019-06-07 01:51:46 +09:00
|
|
|
transform: scale(1, 1) translate(0, 0);
|
2018-06-13 21:44:50 +09:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-07-21 08:38:24 +09:00
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile {
|
|
|
|
flex: 1 1 auto;
|
2018-06-16 01:00:03 +09:00
|
|
|
line-height: 20px;
|
2017-10-07 03:40:17 +09:00
|
|
|
overflow: hidden;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile-account {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
2017-10-07 03:40:17 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile-edit {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
|
|
|
|
2023-01-12 05:58:46 +09:00
|
|
|
.dropdown-animation {
|
2023-06-07 04:49:49 +09:00
|
|
|
animation: dropdown 150ms cubic-bezier(0.1, 0.7, 0.1, 1);
|
2023-01-12 05:58:46 +09:00
|
|
|
|
|
|
|
@keyframes dropdown {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reduce-motion & {
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-30 07:00:45 +09:00
|
|
|
.dropdown {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown__content {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2017-09-22 11:59:17 +09:00
|
|
|
.dropdown-menu__separator {
|
2023-06-07 04:49:49 +09:00
|
|
|
border-bottom: 1px solid var(--dropdown-border-color);
|
|
|
|
margin: 5px 0;
|
2017-09-22 11:59:17 +09:00
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
2023-06-07 04:49:49 +09:00
|
|
|
background: var(--dropdown-background-color);
|
|
|
|
border: 1px solid var(--dropdown-border-color);
|
|
|
|
padding: 4px;
|
2017-09-22 11:59:17 +09:00
|
|
|
border-radius: 4px;
|
2023-06-07 04:49:49 +09:00
|
|
|
box-shadow: var(--dropdown-shadow);
|
2018-10-28 14:39:59 +09:00
|
|
|
z-index: 9999;
|
2017-09-22 11:59:17 +09:00
|
|
|
|
2022-02-09 09:17:07 +09:00
|
|
|
&__text-button {
|
|
|
|
display: inline;
|
|
|
|
color: inherit;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 1px dotted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
&__header {
|
2023-06-07 04:49:49 +09:00
|
|
|
border-bottom: 1px solid var(--dropdown-border-color);
|
|
|
|
padding: 10px 14px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
margin-bottom: 4px;
|
2022-02-09 09:17:07 +09:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
2023-06-07 04:49:49 +09:00
|
|
|
color: $darker-text-color;
|
2022-02-09 09:17:07 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__list {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
&--scrollable {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--loading {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 30px 45px;
|
|
|
|
}
|
2017-09-22 11:59:17 +09:00
|
|
|
}
|
2018-08-20 00:11:12 +09:00
|
|
|
|
|
|
|
&.left {
|
|
|
|
transform-origin: 100% 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
transform-origin: 50% 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
transform-origin: 0 50%;
|
|
|
|
}
|
2017-09-22 11:59:17 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu__item {
|
2022-02-09 09:17:07 +09:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
2023-06-07 04:49:49 +09:00
|
|
|
font-weight: 500;
|
2022-02-09 09:17:07 +09:00
|
|
|
display: block;
|
2023-06-07 04:49:49 +09:00
|
|
|
|
|
|
|
&--dangerous {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
2022-02-09 09:17:07 +09:00
|
|
|
|
|
|
|
a,
|
|
|
|
button {
|
2023-06-07 04:49:49 +09:00
|
|
|
font: inherit;
|
2017-09-22 11:59:17 +09:00
|
|
|
display: block;
|
2022-02-09 09:17:07 +09:00
|
|
|
width: 100%;
|
2023-06-07 04:49:49 +09:00
|
|
|
padding: 10px 14px;
|
2022-02-09 09:17:07 +09:00
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
2023-06-07 04:49:49 +09:00
|
|
|
background: transparent;
|
2017-09-22 11:59:17 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
2022-02-09 09:17:07 +09:00
|
|
|
color: inherit;
|
2017-09-22 11:59:17 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2022-02-09 09:17:07 +09:00
|
|
|
text-align: inherit;
|
2023-06-07 04:49:49 +09:00
|
|
|
border-radius: 4px;
|
2017-09-22 11:59:17 +09:00
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2023-06-07 04:49:49 +09:00
|
|
|
background: var(--dropdown-border-color);
|
2017-09-22 11:59:17 +09:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-03-01 08:53:11 +09:00
|
|
|
}
|
|
|
|
|
2022-02-09 09:17:07 +09:00
|
|
|
.inline-account {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
.account__avatar {
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2022-02-09 09:17:07 +09:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-12 20:17:17 +09:00
|
|
|
.columns-area {
|
2017-04-23 11:26:55 +09:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
2016-10-13 02:14:47 +09:00
|
|
|
flex-direction: row;
|
2017-01-27 02:48:56 +09:00
|
|
|
justify-content: flex-start;
|
2017-04-23 11:26:55 +09:00
|
|
|
overflow-x: auto;
|
2017-05-08 03:47:31 +09:00
|
|
|
position: relative;
|
2018-01-15 14:51:00 +09:00
|
|
|
|
|
|
|
&.unscrollable {
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
2019-05-24 03:01:10 +09:00
|
|
|
|
|
|
|
&__panels {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-07-19 16:25:22 +09:00
|
|
|
min-height: 100vh;
|
2019-05-24 03:01:10 +09:00
|
|
|
|
|
|
|
&__pane {
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
pointer-events: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2019-09-20 17:51:52 +09:00
|
|
|
min-width: 285px;
|
2019-05-24 03:01:10 +09:00
|
|
|
|
2019-05-26 04:27:00 +09:00
|
|
|
&--start {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2019-05-24 03:01:10 +09:00
|
|
|
&__inner {
|
2019-07-19 16:25:22 +09:00
|
|
|
position: fixed;
|
2019-05-26 04:27:00 +09:00
|
|
|
width: 285px;
|
2019-05-24 03:01:10 +09:00
|
|
|
pointer-events: auto;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__main {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2019-09-20 17:51:52 +09:00
|
|
|
flex: 0 0 auto;
|
2019-05-24 03:01:10 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2019-06-09 05:32:59 +09:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-05-24 03:01:10 +09:00
|
|
|
padding: 0 10px;
|
2022-10-05 03:13:23 +09:00
|
|
|
max-width: 600px;
|
2019-05-24 03:01:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-12 20:17:17 +09:00
|
|
|
}
|
|
|
|
|
2022-10-05 03:13:23 +09:00
|
|
|
$ui-header-height: 55px;
|
|
|
|
|
|
|
|
.ui__header {
|
|
|
|
display: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: $ui-header-height;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
2023-04-28 17:00:33 +09:00
|
|
|
z-index: 3;
|
2022-10-05 03:13:23 +09:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__logo {
|
|
|
|
display: inline-flex;
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
height: $ui-header-height - 30px;
|
|
|
|
width: auto;
|
|
|
|
}
|
2023-04-28 17:00:33 +09:00
|
|
|
|
|
|
|
.logo--wordmark {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width >= 320px) {
|
2023-04-28 17:00:33 +09:00
|
|
|
.logo--wordmark {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo--icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-10-05 03:13:23 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__links {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
padding: 0 10px;
|
2022-12-07 08:40:18 +09:00
|
|
|
overflow: hidden;
|
2022-10-05 03:13:23 +09:00
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2022-12-07 08:40:18 +09:00
|
|
|
|
|
|
|
.button-tertiary {
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
2022-10-05 03:13:23 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-01 19:26:58 +09:00
|
|
|
.tabs-bar__wrapper {
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
position: sticky;
|
2022-10-05 03:13:23 +09:00
|
|
|
top: $ui-header-height;
|
2019-08-01 19:26:58 +09:00
|
|
|
z-index: 2;
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
padding-top: 10px;
|
2022-10-05 03:13:23 +09:00
|
|
|
top: 0;
|
2019-08-01 19:26:58 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-bar {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-09 22:02:26 +09:00
|
|
|
.react-swipeable-view-container {
|
|
|
|
&,
|
|
|
|
.columns-area,
|
|
|
|
.drawer,
|
|
|
|
.column {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-swipeable-view-container > * {
|
2017-07-14 07:49:01 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-07-15 05:31:25 +09:00
|
|
|
justify-content: center;
|
2017-07-09 22:02:26 +09:00
|
|
|
height: 100%;
|
2017-01-05 10:25:48 +09:00
|
|
|
}
|
|
|
|
|
2016-10-12 20:17:17 +09:00
|
|
|
.column {
|
2018-11-08 15:42:17 +09:00
|
|
|
width: 350px;
|
2016-12-28 07:30:11 +09:00
|
|
|
position: relative;
|
2017-02-09 09:20:09 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-04-10 23:27:30 +09:00
|
|
|
|
|
|
|
> .scrollable {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-base-color;
|
2022-10-08 13:01:11 +09:00
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
2017-04-10 23:27:30 +09:00
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-10-12 20:17:17 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.drawer {
|
2017-03-26 20:08:15 +09:00
|
|
|
width: 300px;
|
2017-02-09 09:20:09 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__tab {
|
|
|
|
display: block;
|
|
|
|
flex: 1 1 auto;
|
2017-07-11 21:36:27 +09:00
|
|
|
padding: 15px 5px 13px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $darker-text-color;
|
2017-02-09 09:20:09 +09:00
|
|
|
text-decoration: none;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
border-bottom: 2px solid transparent;
|
2016-10-12 20:17:17 +09:00
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
.column,
|
|
|
|
.drawer {
|
2017-04-10 23:27:30 +09:00
|
|
|
flex: 1 1 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width >= 631px) {
|
2017-04-10 23:27:30 +09:00
|
|
|
.columns-area {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
.column,
|
|
|
|
.drawer {
|
2017-04-10 23:27:30 +09:00
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 5px;
|
|
|
|
padding-inline-end: 5px;
|
2017-04-10 23:27:30 +09:00
|
|
|
|
|
|
|
&:first-child {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 10px;
|
2017-04-10 23:27:30 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 10px;
|
2017-04-10 23:27:30 +09:00
|
|
|
}
|
|
|
|
}
|
2017-04-26 11:40:27 +09:00
|
|
|
|
|
|
|
.columns-area > div {
|
2017-05-08 03:47:31 +09:00
|
|
|
.column,
|
|
|
|
.drawer {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 5px;
|
|
|
|
padding-inline-end: 5px;
|
2017-04-26 11:40:27 +09:00
|
|
|
}
|
|
|
|
}
|
2017-04-10 23:27:30 +09:00
|
|
|
}
|
|
|
|
|
2019-05-23 08:35:22 +09:00
|
|
|
.tabs-bar {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
flex: 0 0 auto;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-bar__link {
|
|
|
|
display: block;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 15px 10px;
|
2019-05-26 04:27:00 +09:00
|
|
|
padding-bottom: 13px;
|
2019-05-23 08:35:22 +09:00
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 8%);
|
|
|
|
transition: all 50ms linear;
|
|
|
|
transition-property: border-bottom, background, color;
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width >= 631px) {
|
2019-05-23 08:35:22 +09:00
|
|
|
background: lighten($ui-base-color, 14%);
|
2019-05-26 04:27:00 +09:00
|
|
|
border-bottom-color: lighten($ui-base-color, 14%);
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 07:14:27 +09:00
|
|
|
&.active {
|
|
|
|
border-bottom: 2px solid $highlight-text-color;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2019-05-23 08:35:22 +09:00
|
|
|
span {
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 5px;
|
2019-05-23 08:35:22 +09:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width >= 600px) {
|
2019-05-23 08:35:22 +09:00
|
|
|
.tabs-bar__link {
|
|
|
|
span {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area--mobile {
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
2019-05-29 18:03:56 +09:00
|
|
|
height: 100%;
|
2019-05-23 08:35:22 +09:00
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
.column,
|
|
|
|
.drawer {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-07 19:38:52 +09:00
|
|
|
.account-card {
|
2019-08-30 07:14:36 +09:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-form {
|
|
|
|
display: flex;
|
|
|
|
}
|
2019-08-01 19:26:58 +09:00
|
|
|
|
2019-05-23 08:35:22 +09:00
|
|
|
.autosuggest-textarea__textarea {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2019-05-26 04:27:00 +09:00
|
|
|
.search__input {
|
|
|
|
line-height: 18px;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 30px;
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.search__icon .fa {
|
|
|
|
top: 15px;
|
|
|
|
}
|
|
|
|
|
2019-07-19 16:25:22 +09:00
|
|
|
.scrollable {
|
|
|
|
overflow: visible;
|
2019-07-23 22:47:18 +09:00
|
|
|
|
2022-06-02 02:22:35 +09:00
|
|
|
@supports (display: grid) {
|
2019-07-23 22:47:18 +09:00
|
|
|
contain: content;
|
|
|
|
}
|
2019-07-19 16:25:22 +09:00
|
|
|
}
|
|
|
|
|
2019-06-09 05:32:59 +09:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-05-24 03:01:10 +09:00
|
|
|
padding: 10px 0;
|
2019-08-01 19:26:58 +09:00
|
|
|
padding-top: 0;
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
2019-06-09 05:32:59 +09:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-05-23 08:35:22 +09:00
|
|
|
.tabs-bar {
|
2019-05-24 03:01:10 +09:00
|
|
|
width: 100%;
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-swipeable-view-container .columns-area--mobile {
|
2019-08-01 19:26:58 +09:00
|
|
|
height: calc(100% - 10px) !important;
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
|
2022-12-16 01:24:38 +09:00
|
|
|
.getting-started__wrapper {
|
2019-05-23 08:35:22 +09:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2022-10-05 03:13:23 +09:00
|
|
|
.tabs-bar__link.optional {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-page .search {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel__legal {
|
2019-05-26 04:27:00 +09:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-05 03:13:23 +09:00
|
|
|
}
|
2022-05-07 04:40:49 +09:00
|
|
|
|
2022-10-05 03:13:23 +09:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
2022-10-09 22:55:32 +09:00
|
|
|
$sidebar-width: 285px;
|
|
|
|
|
2022-10-05 03:13:23 +09:00
|
|
|
.columns-area__panels__main {
|
2022-10-09 22:55:32 +09:00
|
|
|
width: calc(100% - $sidebar-width);
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
2022-10-05 03:13:23 +09:00
|
|
|
.columns-area__panels {
|
|
|
|
min-height: calc(100vh - $ui-header-height);
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area__panels__pane--navigational {
|
2022-10-09 22:55:32 +09:00
|
|
|
min-width: $sidebar-width;
|
2022-10-05 03:13:23 +09:00
|
|
|
|
|
|
|
.columns-area__panels__pane__inner {
|
2022-10-09 22:55:32 +09:00
|
|
|
width: $sidebar-width;
|
2022-10-05 03:13:23 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel {
|
|
|
|
margin: 0;
|
|
|
|
background: $ui-base-color;
|
2023-04-04 23:48:34 +09:00
|
|
|
border-inline-start: 1px solid lighten($ui-base-color, 8%);
|
2022-10-05 03:13:23 +09:00
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel__sign-in-banner,
|
|
|
|
.navigation-panel__logo,
|
|
|
|
.getting-started__trends {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-link__icon {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-16 00:40:45 +09:00
|
|
|
.layout-single-column .ui__header {
|
2022-10-05 03:13:23 +09:00
|
|
|
display: flex;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-header,
|
|
|
|
.column-back-button,
|
2022-10-23 06:18:32 +09:00
|
|
|
.scrollable,
|
|
|
|
.error-column {
|
2022-10-05 03:13:23 +09:00
|
|
|
border-radius: 0 !important;
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-09 22:55:32 +09:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 285px - 1px) {
|
|
|
|
$sidebar-width: 55px;
|
|
|
|
|
|
|
|
.columns-area__panels__main {
|
|
|
|
width: calc(100% - $sidebar-width);
|
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area__panels__pane--navigational {
|
|
|
|
min-width: $sidebar-width;
|
|
|
|
|
|
|
|
.columns-area__panels__pane__inner {
|
|
|
|
width: $sidebar-width;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-link span {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-11 04:41:25 +09:00
|
|
|
|
|
|
|
.list-panel {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-09 22:55:32 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-05 03:13:23 +09:00
|
|
|
.explore__search-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-09 22:55:32 +09:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
2022-10-05 03:13:23 +09:00
|
|
|
.columns-area__panels__pane--compositional {
|
2019-05-26 04:27:00 +09:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-05 03:13:23 +09:00
|
|
|
|
|
|
|
.explore__search-header {
|
|
|
|
display: flex;
|
|
|
|
}
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
2019-05-23 08:35:22 +09:00
|
|
|
.icon-with-badge {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__badge {
|
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 9px;
|
2019-05-23 08:35:22 +09:00
|
|
|
top: -13px;
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
border: 2px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 1px 6px;
|
|
|
|
border-radius: 6px;
|
|
|
|
font-size: 10px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 14px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
2020-10-13 07:37:21 +09:00
|
|
|
|
|
|
|
&__issue-badge {
|
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 11px;
|
2020-10-13 07:37:21 +09:00
|
|
|
bottom: 1px;
|
|
|
|
display: block;
|
|
|
|
background: $error-red;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
}
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
|
2019-05-26 04:27:00 +09:00
|
|
|
.column-link--transparent .icon-with-badge__badge {
|
|
|
|
border-color: darken($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2021-04-19 21:45:15 +09:00
|
|
|
.column-title {
|
|
|
|
text-align: center;
|
2023-04-24 05:24:53 +09:00
|
|
|
padding-bottom: 40px;
|
2021-04-19 21:45:15 +09:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
2023-04-24 05:24:53 +09:00
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width >= 600px) {
|
2023-04-24 05:24:53 +09:00
|
|
|
padding: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__footer {
|
|
|
|
margin-top: 30px;
|
|
|
|
color: $dark-text-color;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
.link-button {
|
|
|
|
display: inline-block;
|
|
|
|
color: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
2021-04-19 21:45:15 +09:00
|
|
|
}
|
|
|
|
|
2023-04-24 05:24:53 +09:00
|
|
|
.onboarding__link {
|
2021-05-12 04:16:24 +09:00
|
|
|
display: flex;
|
2023-04-24 05:24:53 +09:00
|
|
|
align-items: center;
|
2023-06-23 23:34:27 +09:00
|
|
|
justify-content: space-between;
|
2023-04-24 05:24:53 +09:00
|
|
|
gap: 10px;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
2023-06-23 23:34:27 +09:00
|
|
|
padding: 10px 15px;
|
2023-04-24 05:24:53 +09:00
|
|
|
box-sizing: border-box;
|
2023-06-23 23:34:27 +09:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2023-04-24 05:24:53 +09:00
|
|
|
height: 56px;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
height: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__illustration {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
max-height: 200px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__lead {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__links {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__steps {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border: 0;
|
|
|
|
border-radius: 8px;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
padding: 10px;
|
2023-06-23 23:34:27 +09:00
|
|
|
padding-inline-end: 15px;
|
2023-04-24 05:24:53 +09:00
|
|
|
margin-bottom: 2px;
|
|
|
|
text-decoration: none;
|
|
|
|
text-align: start;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: none;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2023-06-23 23:34:27 +09:00
|
|
|
color: $highlight-text-color;
|
|
|
|
font-size: 1.2rem;
|
2023-04-24 05:24:53 +09:00
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width >= 600px) {
|
2023-04-24 05:24:53 +09:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__progress {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
background: $valid-value-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 21px;
|
|
|
|
height: 21px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
height: 14px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-23 23:34:27 +09:00
|
|
|
&__go {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 21px;
|
|
|
|
height: 21px;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
font-size: 17px;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
height: 1.5em;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-24 05:24:53 +09:00
|
|
|
&__description {
|
|
|
|
flex: 1 1 auto;
|
2023-06-23 23:34:27 +09:00
|
|
|
line-height: 20px;
|
2023-04-24 05:24:53 +09:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
h6 {
|
2023-06-23 23:34:27 +09:00
|
|
|
color: $highlight-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
2023-04-24 05:24:53 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-12 04:16:24 +09:00
|
|
|
}
|
|
|
|
|
2023-04-24 05:24:53 +09:00
|
|
|
.onboarding__progress-indicator {
|
2021-04-19 21:45:15 +09:00
|
|
|
display: flex;
|
2023-04-24 05:24:53 +09:00
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
position: sticky;
|
|
|
|
background: $ui-base-color;
|
2021-04-19 21:45:15 +09:00
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width >= 600) {
|
2023-04-24 05:24:53 +09:00
|
|
|
padding: 0 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__line {
|
|
|
|
height: 4px;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__step {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 50%;
|
|
|
|
color: $primary-text-color;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 15px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: $valid-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__step.active,
|
|
|
|
&__line.active {
|
|
|
|
background: $valid-value-color;
|
|
|
|
background-image: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
$valid-value-color,
|
|
|
|
lighten($valid-value-color, 8%),
|
|
|
|
$valid-value-color
|
|
|
|
);
|
|
|
|
background-size: 200px 100%;
|
|
|
|
animation: skeleton 1.2s ease-in-out infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.follow-recommendations {
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
.account:last-child {
|
|
|
|
border-bottom: 0;
|
2021-04-19 21:45:15 +09:00
|
|
|
}
|
2023-04-25 18:12:37 +09:00
|
|
|
|
|
|
|
&__empty {
|
|
|
|
text-align: center;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tip-carousel {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 16px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
border-color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__pagination {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-05-06 06:57:29 +09:00
|
|
|
}
|
|
|
|
|
2023-04-24 05:24:53 +09:00
|
|
|
.copy-paste-text {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
2021-05-06 06:57:29 +09:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2023-04-24 05:24:53 +09:00
|
|
|
padding: 16px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-end;
|
|
|
|
transition: border-color 300ms linear;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&.focused {
|
|
|
|
transition: none;
|
|
|
|
outline: 0;
|
|
|
|
border-color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
border-color: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
background: transparent;
|
|
|
|
color: inherit;
|
|
|
|
font: inherit;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
resize: none;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__highlightable {
|
2023-05-06 01:58:58 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 0 1 auto;
|
2021-05-06 06:57:29 +09:00
|
|
|
border-radius: 4px;
|
2023-04-24 05:24:53 +09:00
|
|
|
transition: box-shadow 300ms linear;
|
2023-06-06 18:05:25 +09:00
|
|
|
min-height: 0;
|
2021-05-06 06:57:29 +09:00
|
|
|
|
2023-04-24 05:24:53 +09:00
|
|
|
&.active {
|
|
|
|
transition: none;
|
2023-05-16 21:59:44 +09:00
|
|
|
box-shadow: 0 0 0 6px rgba(lighten($highlight-text-color, 8%), 0.7);
|
2021-05-06 06:57:29 +09:00
|
|
|
}
|
2021-04-19 21:45:15 +09:00
|
|
|
}
|
|
|
|
|
2019-05-26 04:27:00 +09:00
|
|
|
.compose-panel {
|
|
|
|
width: 285px;
|
|
|
|
margin-top: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-06-02 17:05:54 +09:00
|
|
|
height: calc(100% - 10px);
|
|
|
|
overflow-y: hidden;
|
2019-05-26 04:27:00 +09:00
|
|
|
|
2022-09-29 11:39:33 +09:00
|
|
|
.hero-widget {
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
&__text,
|
|
|
|
&__img,
|
|
|
|
&__img img {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
padding: 15px;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-26 04:27:00 +09:00
|
|
|
.navigation-bar {
|
2019-06-02 17:05:54 +09:00
|
|
|
flex: 0 1 48px;
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
2019-06-02 17:05:54 +09:00
|
|
|
.compose-form {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 310px;
|
|
|
|
padding-bottom: 71px;
|
|
|
|
margin-bottom: -71px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__autosuggest-wrapper {
|
|
|
|
overflow-y: auto;
|
|
|
|
background-color: $white;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
}
|
|
|
|
|
2019-05-26 04:27:00 +09:00
|
|
|
.autosuggest-textarea__textarea {
|
2019-06-02 17:05:54 +09:00
|
|
|
overflow-y: hidden;
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__upload-thumbnail {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel {
|
|
|
|
margin-top: 10px;
|
2019-06-02 17:05:54 +09:00
|
|
|
margin-bottom: 10px;
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
overflow-y: auto;
|
2019-08-07 00:57:52 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2019-05-26 04:27:00 +09:00
|
|
|
|
2022-09-29 11:39:33 +09:00
|
|
|
.logo {
|
|
|
|
height: 30px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel,
|
|
|
|
.compose-panel {
|
2019-05-26 04:27:00 +09:00
|
|
|
hr {
|
2019-08-07 00:57:52 +09:00
|
|
|
flex: 0 0 auto;
|
2019-05-26 04:27:00 +09:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2019-08-07 00:57:52 +09:00
|
|
|
|
|
|
|
.flex-spacer {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
|
2017-04-01 02:59:54 +09:00
|
|
|
.drawer__pager {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-01-07 06:09:55 +09:00
|
|
|
.drawer__inner {
|
2017-04-01 02:59:54 +09:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2018-02-02 18:32:41 +09:00
|
|
|
background: lighten($ui-base-color, 13%);
|
2017-02-09 09:20:09 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-03-30 05:27:24 +09:00
|
|
|
overflow: hidden;
|
2017-02-09 09:20:09 +09:00
|
|
|
overflow-y: auto;
|
2017-04-01 02:59:54 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&.darker {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-base-color;
|
2017-04-01 02:59:54 +09:00
|
|
|
}
|
2018-02-02 18:32:41 +09:00
|
|
|
}
|
|
|
|
|
2018-02-02 19:56:50 +09:00
|
|
|
.drawer__inner__mastodon {
|
2023-02-13 12:57:03 +09:00
|
|
|
background: lighten($ui-base-color, 13%)
|
|
|
|
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 234.80078 31.757813" width="234.80078" height="31.757812"><path d="M19.599609 0c-1.05 0-2.10039.375-2.90039 1.125L0 16.925781v14.832031h234.80078V17.025391l-16.5-15.900391c-1.6-1.5-4.20078-1.5-5.80078 0l-13.80078 13.099609c-1.6 1.5-4.19883 1.5-5.79883 0L179.09961 1.125c-1.6-1.5-4.19883-1.5-5.79883 0L159.5 14.224609c-1.6 1.5-4.20078 1.5-5.80078 0L139.90039 1.125c-1.6-1.5-4.20078-1.5-5.80078 0l-13.79883 13.099609c-1.6 1.5-4.20078 1.5-5.80078 0L100.69922 1.125c-1.600001-1.5-4.198829-1.5-5.798829 0l-13.59961 13.099609c-1.6 1.5-4.200781 1.5-5.800781 0L61.699219 1.125c-1.6-1.5-4.198828-1.5-5.798828 0L42.099609 14.224609c-1.6 1.5-4.198828 1.5-5.798828 0L22.5 1.125C21.7.375 20.649609 0 19.599609 0z" fill="#{hex-color($ui-base-color)}"/></svg>')
|
|
|
|
no-repeat bottom / 100% auto;
|
2018-02-02 19:56:50 +09:00
|
|
|
flex: 1;
|
|
|
|
min-height: 47px;
|
2019-05-23 08:35:22 +09:00
|
|
|
display: none;
|
2017-12-27 11:31:30 +09:00
|
|
|
|
2018-02-10 07:04:47 +09:00
|
|
|
> img {
|
2018-02-02 19:56:50 +09:00
|
|
|
display: block;
|
|
|
|
object-fit: contain;
|
|
|
|
object-position: bottom left;
|
2020-01-30 00:18:33 +09:00
|
|
|
width: 85%;
|
2018-02-02 19:56:50 +09:00
|
|
|
height: 100%;
|
2018-03-19 04:32:44 +09:00
|
|
|
pointer-events: none;
|
|
|
|
user-select: none;
|
2017-12-27 11:31:30 +09:00
|
|
|
}
|
2019-05-23 08:35:22 +09:00
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (height >= 640px) {
|
2019-05-23 08:35:22 +09:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 03:32:00 +09:00
|
|
|
.pseudo-drawer {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 13%);
|
2017-04-17 03:32:00 +09:00
|
|
|
font-size: 13px;
|
2023-03-27 17:56:25 +09:00
|
|
|
text-align: start;
|
2017-04-17 03:32:00 +09:00
|
|
|
}
|
|
|
|
|
2017-01-07 06:09:55 +09:00
|
|
|
.drawer__header {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 16px;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-01-07 06:09:55 +09:00
|
|
|
margin-bottom: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-04-04 18:41:05 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
2017-01-07 06:09:55 +09:00
|
|
|
|
|
|
|
a {
|
2017-04-24 11:49:08 +09:00
|
|
|
transition: background 100ms ease-in;
|
2017-01-07 06:09:55 +09:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 3%);
|
2017-04-24 11:49:08 +09:00
|
|
|
transition: background 200ms ease-out;
|
2017-01-07 06:09:55 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-04 21:32:14 +09:00
|
|
|
.scrollable {
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2017-01-05 11:14:33 +09:00
|
|
|
|
|
|
|
&.optionally-scrollable {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2017-10-02 10:01:01 +09:00
|
|
|
|
2023-02-13 12:57:03 +09:00
|
|
|
@supports (display: grid) {
|
|
|
|
// hack to fix Chrome <57
|
2017-10-02 10:01:01 +09:00
|
|
|
contain: strict;
|
|
|
|
}
|
2018-11-09 05:35:06 +09:00
|
|
|
|
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__append {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2018-12-18 01:02:59 +09:00
|
|
|
min-height: 120px;
|
2018-11-09 05:35:06 +09:00
|
|
|
}
|
2022-02-25 08:34:33 +09:00
|
|
|
|
|
|
|
.scrollable {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-10-02 10:01:01 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollable.fullscreen {
|
2023-02-13 12:57:03 +09:00
|
|
|
@supports (display: grid) {
|
|
|
|
// hack to fix Chrome <57
|
2017-10-02 10:01:01 +09:00
|
|
|
contain: none;
|
|
|
|
}
|
2016-11-04 21:32:14 +09:00
|
|
|
}
|
2016-11-11 07:21:24 +09:00
|
|
|
|
|
|
|
.column-back-button {
|
2019-08-02 02:17:17 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2023-06-26 12:27:07 +09:00
|
|
|
background: $ui-base-color;
|
2022-09-29 11:39:33 +09:00
|
|
|
border-radius: 4px 4px 0 0;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2017-04-23 21:18:58 +09:00
|
|
|
cursor: pointer;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 16px;
|
2018-07-26 11:49:45 +09:00
|
|
|
line-height: inherit;
|
2017-07-31 07:18:15 +09:00
|
|
|
border: 0;
|
2023-06-26 12:27:07 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-08-02 20:09:37 +09:00
|
|
|
text-align: unset;
|
2017-06-09 23:22:28 +09:00
|
|
|
padding: 15px;
|
2017-08-02 20:09:37 +09:00
|
|
|
margin: 0;
|
2017-02-23 10:14:35 +09:00
|
|
|
z-index: 3;
|
2018-05-22 20:24:54 +09:00
|
|
|
outline: 0;
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2016-11-11 07:21:24 +09:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-11-24 02:53:23 +09:00
|
|
|
|
2017-06-04 08:39:38 +09:00
|
|
|
.column-header__back-button {
|
2023-06-26 12:27:07 +09:00
|
|
|
background: $ui-base-color;
|
2017-06-04 08:39:38 +09:00
|
|
|
border: 0;
|
|
|
|
font-family: inherit;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2017-06-04 08:39:38 +09:00
|
|
|
cursor: pointer;
|
2018-02-02 01:17:17 +09:00
|
|
|
white-space: nowrap;
|
2017-06-04 08:39:38 +09:00
|
|
|
font-size: 16px;
|
2017-06-09 23:22:28 +09:00
|
|
|
padding: 0 5px 0 0;
|
2017-06-04 08:39:38 +09:00
|
|
|
z-index: 3;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2017-09-07 00:32:15 +09:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding: 0 15px 0 0;
|
|
|
|
}
|
2017-06-04 08:39:38 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.column-back-button__icon {
|
|
|
|
display: inline-block;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-back-button--slim {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-back-button--slim-button {
|
|
|
|
cursor: pointer;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 0;
|
2023-06-26 12:27:07 +09:00
|
|
|
top: -50px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2016-11-24 02:53:23 +09:00
|
|
|
.react-toggle {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
user-select: none;
|
2017-05-08 22:57:49 +09:00
|
|
|
-webkit-tap-highlight-color: rgba($base-overlay-background, 0);
|
2016-11-24 02:53:23 +09:00
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-screenreader-only {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-track {
|
|
|
|
width: 50px;
|
|
|
|
height: 24px;
|
|
|
|
padding: 0;
|
|
|
|
border-radius: 30px;
|
2017-05-08 22:57:49 +09:00
|
|
|
background-color: $ui-base-color;
|
2019-05-05 00:39:53 +09:00
|
|
|
transition: background-color 0.2s ease;
|
2016-11-24 02:53:23 +09:00
|
|
|
}
|
|
|
|
|
2023-02-13 12:57:03 +09:00
|
|
|
.react-toggle:is(:hover, :focus-within):not(.react-toggle--disabled)
|
|
|
|
.react-toggle-track {
|
2017-05-08 22:57:49 +09:00
|
|
|
background-color: darken($ui-base-color, 10%);
|
2016-11-24 02:53:23 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked .react-toggle-track {
|
2022-06-19 15:18:08 +09:00
|
|
|
background-color: darken($ui-highlight-color, 2%);
|
2016-11-24 02:53:23 +09:00
|
|
|
}
|
|
|
|
|
2023-02-13 12:57:03 +09:00
|
|
|
.react-toggle--checked:is(:hover, :focus-within):not(.react-toggle--disabled)
|
|
|
|
.react-toggle-track {
|
2022-06-19 15:18:08 +09:00
|
|
|
background-color: $ui-highlight-color;
|
2016-11-24 02:53:23 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-track-check {
|
|
|
|
position: absolute;
|
|
|
|
width: 14px;
|
|
|
|
height: 10px;
|
2017-05-08 03:47:31 +09:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2016-11-24 02:53:23 +09:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
line-height: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 8px;
|
2016-11-24 02:53:23 +09:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.25s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked .react-toggle-track-check {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.25s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-track-x {
|
|
|
|
position: absolute;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2017-05-08 03:47:31 +09:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2016-11-24 02:53:23 +09:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
line-height: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px;
|
2016-11-24 02:53:23 +09:00
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.25s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked .react-toggle-track-x {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-thumb {
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 1px;
|
2016-11-24 02:53:23 +09:00
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
2017-05-08 22:57:49 +09:00
|
|
|
border: 1px solid $ui-base-color;
|
2016-11-24 02:53:23 +09:00
|
|
|
border-radius: 50%;
|
2017-05-08 22:57:49 +09:00
|
|
|
background-color: darken($simple-background-color, 2%);
|
2016-11-24 02:53:23 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
transition: all 0.25s ease;
|
2019-05-05 00:39:53 +09:00
|
|
|
transition-property: border-color, left;
|
2016-11-24 02:53:23 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked .react-toggle-thumb {
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 27px;
|
2017-05-08 22:57:49 +09:00
|
|
|
border-color: $ui-highlight-color;
|
2016-11-24 02:53:23 +09:00
|
|
|
}
|
2016-12-12 22:27:52 +09:00
|
|
|
|
|
|
|
.column-link {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
color: $primary-text-color;
|
2017-04-22 01:17:55 +09:00
|
|
|
display: block;
|
2017-04-23 11:26:55 +09:00
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
|
|
|
text-decoration: none;
|
2022-10-09 22:55:32 +09:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2017-02-11 06:58:29 +09:00
|
|
|
|
2019-05-26 04:27:00 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 11%);
|
2016-12-12 22:27:52 +09:00
|
|
|
}
|
2019-05-26 04:27:00 +09:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--transparent {
|
|
|
|
background: transparent;
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: transparent;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2022-06-19 15:18:08 +09:00
|
|
|
color: $highlight-text-color;
|
2019-05-26 04:27:00 +09:00
|
|
|
}
|
|
|
|
}
|
2022-09-29 11:39:33 +09:00
|
|
|
|
|
|
|
&--logo {
|
|
|
|
background: transparent;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
2016-12-12 22:27:52 +09:00
|
|
|
}
|
2016-12-15 02:21:31 +09:00
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.column-link__icon {
|
|
|
|
display: inline-block;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2018-01-21 21:20:20 +09:00
|
|
|
.column-link__badge {
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 19px;
|
|
|
|
font-weight: 500;
|
|
|
|
background: $ui-base-color;
|
|
|
|
padding: 4px 8px;
|
|
|
|
margin: -6px 10px;
|
|
|
|
}
|
|
|
|
|
2017-04-26 08:21:05 +09:00
|
|
|
.column-subheading {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-base-color;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-04-26 08:21:05 +09:00
|
|
|
padding: 8px 20px;
|
2020-01-27 21:44:29 +09:00
|
|
|
font-size: 12px;
|
2017-04-26 11:40:27 +09:00
|
|
|
font-weight: 500;
|
2020-01-27 21:44:29 +09:00
|
|
|
text-transform: uppercase;
|
2017-04-26 11:40:27 +09:00
|
|
|
cursor: default;
|
2017-04-26 08:21:05 +09:00
|
|
|
}
|
|
|
|
|
2018-01-03 12:39:14 +09:00
|
|
|
.getting-started__wrapper,
|
2018-05-31 01:41:47 +09:00
|
|
|
.getting-started,
|
|
|
|
.flex-spacer {
|
2018-01-03 12:39:14 +09:00
|
|
|
background: $ui-base-color;
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.getting-started__wrapper {
|
2018-06-02 02:18:37 +09:00
|
|
|
flex: 0 0 auto;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2018-05-31 01:41:47 +09:00
|
|
|
.flex-spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2017-01-05 10:33:05 +09:00
|
|
|
.getting-started {
|
2018-05-31 01:41:47 +09:00
|
|
|
color: $dark-text-color;
|
2019-02-27 23:03:28 +09:00
|
|
|
overflow: auto;
|
2017-01-26 11:17:48 +09:00
|
|
|
|
2018-05-31 01:41:47 +09:00
|
|
|
&__trends {
|
2018-06-02 02:18:37 +09:00
|
|
|
flex: 0 1 auto;
|
2019-08-07 00:57:52 +09:00
|
|
|
opacity: 1;
|
|
|
|
animation: fade 150ms linear;
|
|
|
|
margin-top: 10px;
|
2018-06-02 02:18:37 +09:00
|
|
|
|
2019-08-23 12:05:21 +09:00
|
|
|
h4 {
|
2022-11-28 07:49:32 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 10px;
|
2020-01-27 21:44:29 +09:00
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
2019-08-23 12:05:21 +09:00
|
|
|
font-weight: 500;
|
2022-11-28 07:49:32 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-08-23 12:05:21 +09:00
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (height <= 810px) {
|
2021-08-05 20:05:32 +09:00
|
|
|
.trends__item:nth-of-type(3) {
|
2018-06-02 02:18:37 +09:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (height <= 720px) {
|
2021-08-05 20:05:32 +09:00
|
|
|
.trends__item:nth-of-type(2) {
|
2018-06-02 02:18:37 +09:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (height <= 670px) {
|
2018-06-02 02:18:37 +09:00
|
|
|
display: none;
|
|
|
|
}
|
2018-05-31 01:41:47 +09:00
|
|
|
|
2019-08-07 00:57:52 +09:00
|
|
|
.trends__item {
|
|
|
|
border-bottom: 0;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&__current {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
2017-01-02 03:52:25 +09:00
|
|
|
}
|
2017-01-08 20:32:37 +09:00
|
|
|
|
2017-11-28 05:31:58 +09:00
|
|
|
.keyboard-shortcuts {
|
|
|
|
padding: 8px 0 0;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
thead {
|
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: -9999px;
|
2017-11-28 05:31:58 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 0 10px 8px;
|
|
|
|
}
|
|
|
|
|
2017-12-20 11:46:25 +09:00
|
|
|
kbd {
|
2017-11-28 05:31:58 +09:00
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 5px;
|
|
|
|
background-color: lighten($ui-base-color, 8%);
|
|
|
|
border: 1px solid darken($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-11 01:25:10 +09:00
|
|
|
.setting-text {
|
2017-04-23 11:26:55 +09:00
|
|
|
display: block;
|
2019-06-08 17:23:41 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
2022-11-06 07:06:32 +09:00
|
|
|
color: $inverted-text-color;
|
|
|
|
background: $white;
|
|
|
|
padding: 7px 10px;
|
2019-06-08 17:23:41 +09:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
2022-11-06 07:06:32 +09:00
|
|
|
line-height: 22px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid $white;
|
2017-01-11 01:25:10 +09:00
|
|
|
|
2022-11-06 07:06:32 +09:00
|
|
|
&:focus {
|
2019-06-08 17:23:41 +09:00
|
|
|
outline: 0;
|
2022-11-06 07:06:32 +09:00
|
|
|
border-color: lighten($ui-highlight-color, 12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__wrapper {
|
|
|
|
background: $white;
|
|
|
|
border: 1px solid $ui-secondary-color;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
.setting-text {
|
|
|
|
border: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__modifiers {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
background: $white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__toolbar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 20px;
|
2017-01-11 01:25:10 +09:00
|
|
|
}
|
2017-04-16 21:05:16 +09:00
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 600px) {
|
2017-04-16 21:05:16 +09:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
2017-01-11 01:25:10 +09:00
|
|
|
}
|
2017-04-24 07:38:37 +09:00
|
|
|
|
2020-07-23 05:48:51 +09:00
|
|
|
button.icon-button i.fa-retweet {
|
2017-01-16 00:55:31 +09:00
|
|
|
background-position: 0 0;
|
2017-05-02 09:15:14 +09:00
|
|
|
height: 19px;
|
2017-01-24 11:02:13 +09:00
|
|
|
transition: background-position 0.9s steps(10);
|
2017-01-16 00:55:31 +09:00
|
|
|
transition-duration: 0s;
|
2017-05-02 09:15:14 +09:00
|
|
|
vertical-align: middle;
|
|
|
|
width: 22px;
|
2017-01-16 00:55:31 +09:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-23 05:48:51 +09:00
|
|
|
button.icon-button.active i.fa-retweet {
|
2017-01-16 00:55:31 +09:00
|
|
|
transition-duration: 0.9s;
|
2017-01-24 11:02:13 +09:00
|
|
|
background-position: 0 100%;
|
2017-01-16 00:55:31 +09:00
|
|
|
}
|
2017-01-20 09:00:14 +09:00
|
|
|
|
2020-07-23 05:48:51 +09:00
|
|
|
.reduce-motion button.icon-button i.fa-retweet,
|
2017-12-24 12:48:31 +09:00
|
|
|
.reduce-motion button.icon-button.active i.fa-retweet {
|
2020-07-23 05:48:51 +09:00
|
|
|
transition: none;
|
2017-12-24 12:48:31 +09:00
|
|
|
}
|
|
|
|
|
2017-01-20 09:00:14 +09:00
|
|
|
.status-card {
|
2020-06-26 05:42:01 +09:00
|
|
|
position: relative;
|
2017-02-11 06:58:29 +09:00
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
2017-05-08 22:57:49 +09:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2017-02-11 06:58:29 +09:00
|
|
|
border-radius: 4px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-02-11 06:58:29 +09:00
|
|
|
margin-top: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2018-02-15 15:04:28 +09:00
|
|
|
&__actions {
|
|
|
|
bottom: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2018-02-15 15:04:28 +09:00
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 0;
|
2018-02-15 15:04:28 +09:00
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
background: rgba($base-shadow-color, 0.6);
|
2019-04-27 10:24:09 +09:00
|
|
|
border-radius: 8px;
|
2018-02-15 15:04:28 +09:00
|
|
|
padding: 12px 9px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
a {
|
|
|
|
display: inline;
|
2019-04-27 10:24:09 +09:00
|
|
|
color: $secondary-text-color;
|
2018-02-15 15:04:28 +09:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2019-04-27 10:24:09 +09:00
|
|
|
padding: 0 8px;
|
2018-02-15 15:04:28 +09:00
|
|
|
text-decoration: none;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2019-04-27 10:24:09 +09:00
|
|
|
color: $primary-text-color;
|
2018-02-15 15:04:28 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 19px;
|
|
|
|
position: relative;
|
|
|
|
bottom: -1px;
|
|
|
|
}
|
2017-01-20 09:00:14 +09:00
|
|
|
}
|
|
|
|
}
|
2017-01-31 02:04:15 +09:00
|
|
|
|
2018-02-15 15:04:28 +09:00
|
|
|
a.status-card {
|
|
|
|
cursor: pointer;
|
2017-04-27 21:42:22 +09:00
|
|
|
|
2018-02-15 15:04:28 +09:00
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-04-27 21:42:22 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card-photo {
|
2017-11-25 23:41:45 +09:00
|
|
|
cursor: zoom-in;
|
2017-04-27 21:42:22 +09:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
2017-11-25 23:41:45 +09:00
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
2017-04-27 21:42:22 +09:00
|
|
|
}
|
|
|
|
|
2017-05-07 22:21:46 +09:00
|
|
|
.status-card-video {
|
2023-05-02 20:58:48 +09:00
|
|
|
// Firefox has a bug where frameborder=0 iframes add some extra blank space
|
|
|
|
// see https://bugzilla.mozilla.org/show_bug.cgi?id=155174
|
|
|
|
overflow: hidden;
|
|
|
|
|
2017-05-07 22:21:46 +09:00
|
|
|
iframe {
|
2017-10-08 09:34:49 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-05-07 22:21:46 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-11 06:58:29 +09:00
|
|
|
.status-card__title {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 5px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $darker-text-color;
|
2017-02-11 06:58:29 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-02-15 15:04:28 +09:00
|
|
|
text-decoration: none;
|
2017-02-11 06:58:29 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status-card__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 14px 14px 14px 8px;
|
|
|
|
}
|
|
|
|
|
2017-02-11 06:58:29 +09:00
|
|
|
.status-card__description {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $darker-text-color;
|
2023-04-24 05:32:47 +09:00
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 2;
|
2017-02-11 06:58:29 +09:00
|
|
|
}
|
|
|
|
|
2017-05-04 22:52:08 +09:00
|
|
|
.status-card__host {
|
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
font-size: 13px;
|
2018-10-28 14:35:03 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-05-04 22:52:08 +09:00
|
|
|
}
|
|
|
|
|
2017-02-11 06:58:29 +09:00
|
|
|
.status-card__image {
|
|
|
|
flex: 0 0 100px;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-02-15 15:04:28 +09:00
|
|
|
position: relative;
|
2019-01-04 20:44:46 +09:00
|
|
|
|
2019-01-07 07:54:01 +09:00
|
|
|
& > .fa {
|
2019-01-04 20:44:46 +09:00
|
|
|
font-size: 21px;
|
|
|
|
position: absolute;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
top: 50%;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 50%;
|
2019-01-04 20:44:46 +09:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
2017-02-11 06:58:29 +09:00
|
|
|
}
|
|
|
|
|
2017-09-01 23:20:16 +09:00
|
|
|
.status-card.horizontal {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-06-07 00:41:56 +09:00
|
|
|
.status-card__image-image,
|
|
|
|
.status-card__image-preview {
|
2017-09-01 23:20:16 +09:00
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
2017-12-09 08:56:16 +09:00
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
white-space: inherit;
|
|
|
|
}
|
2017-09-01 23:20:16 +09:00
|
|
|
}
|
|
|
|
|
2018-10-28 14:35:03 +09:00
|
|
|
.status-card.compact {
|
|
|
|
border-color: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
&.interactive {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__content {
|
|
|
|
padding: 8px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
flex: 0 0 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.status-card.compact:hover {
|
|
|
|
background-color: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.status-card__image-image {
|
2017-05-08 03:47:31 +09:00
|
|
|
border-radius: 4px 0 0 4px;
|
2017-04-23 11:26:55 +09:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
2017-12-09 08:56:16 +09:00
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2018-02-15 15:04:28 +09:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2020-06-07 00:41:56 +09:00
|
|
|
.status-card__image-preview {
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: fill;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2020-06-07 00:41:56 +09:00
|
|
|
z-index: 0;
|
|
|
|
background: $base-overlay-background;
|
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-31 02:04:15 +09:00
|
|
|
.load-more {
|
2017-02-09 09:20:09 +09:00
|
|
|
display: block;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-05-26 21:10:37 +09:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
font-size: inherit;
|
2017-02-09 09:20:09 +09:00
|
|
|
text-align: center;
|
2017-05-26 21:10:37 +09:00
|
|
|
line-height: inherit;
|
|
|
|
margin: 0;
|
2017-02-09 09:20:09 +09:00
|
|
|
padding: 15px;
|
2018-06-02 02:18:37 +09:00
|
|
|
box-sizing: border-box;
|
2017-05-26 21:10:37 +09:00
|
|
|
width: 100%;
|
2017-05-25 12:22:46 +09:00
|
|
|
clear: both;
|
2018-06-02 02:18:37 +09:00
|
|
|
text-decoration: none;
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2017-01-31 02:04:15 +09:00
|
|
|
&:hover {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 2%);
|
2017-01-31 02:04:15 +09:00
|
|
|
}
|
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
|
2018-04-11 00:12:10 +09:00
|
|
|
.load-gap {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2020-06-15 05:29:40 +09:00
|
|
|
.timeline-hint {
|
|
|
|
text-align: center;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2022-06-19 15:18:08 +09:00
|
|
|
color: $highlight-text-color;
|
2020-06-15 05:29:40 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
2022-06-19 15:18:08 +09:00
|
|
|
color: lighten($highlight-text-color, 4%);
|
2020-06-15 05:29:40 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-18 07:56:03 +09:00
|
|
|
.regeneration-indicator {
|
2017-02-09 09:20:09 +09:00
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-base-color;
|
2017-02-28 08:43:36 +09:00
|
|
|
cursor: default;
|
2017-05-03 09:04:16 +09:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
2019-10-07 05:11:17 +09:00
|
|
|
flex-direction: column;
|
2017-05-03 09:04:16 +09:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-01-18 07:56:03 +09:00
|
|
|
padding: 20px;
|
2017-05-03 09:04:16 +09:00
|
|
|
|
2018-01-18 07:56:03 +09:00
|
|
|
&__figure {
|
2019-10-07 05:11:17 +09:00
|
|
|
&,
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
height: 160px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-01-18 07:56:03 +09:00
|
|
|
}
|
|
|
|
|
2019-10-07 05:11:17 +09:00
|
|
|
&--without-header {
|
2018-01-18 07:56:03 +09:00
|
|
|
padding-top: 20px + 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
2019-10-07 05:11:17 +09:00
|
|
|
margin-top: 30px;
|
2018-01-18 07:56:03 +09:00
|
|
|
|
|
|
|
strong {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2018-01-18 07:56:03 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2017-05-03 09:04:16 +09:00
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
|
|
|
|
2017-06-13 03:02:17 +09:00
|
|
|
.column-header__wrapper {
|
|
|
|
position: relative;
|
|
|
|
flex: 0 0 auto;
|
2020-01-26 03:40:36 +09:00
|
|
|
z-index: 1;
|
2017-06-13 03:02:17 +09:00
|
|
|
|
|
|
|
&.active {
|
2020-01-26 03:40:36 +09:00
|
|
|
box-shadow: 0 1px 0 rgba($highlight-text-color, 0.3);
|
|
|
|
|
2017-06-13 03:02:17 +09:00
|
|
|
&::before {
|
|
|
|
display: block;
|
2023-02-13 12:57:03 +09:00
|
|
|
content: '';
|
2017-06-13 03:02:17 +09:00
|
|
|
position: absolute;
|
2020-01-26 03:40:36 +09:00
|
|
|
bottom: -13px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-06-13 03:02:17 +09:00
|
|
|
margin: 0 auto;
|
|
|
|
width: 60%;
|
|
|
|
pointer-events: none;
|
|
|
|
height: 28px;
|
|
|
|
z-index: 1;
|
2023-02-13 12:57:03 +09:00
|
|
|
background: radial-gradient(
|
|
|
|
ellipse,
|
|
|
|
rgba($ui-highlight-color, 0.23) 0%,
|
|
|
|
rgba($ui-highlight-color, 0) 60%
|
|
|
|
);
|
2017-06-13 03:02:17 +09:00
|
|
|
}
|
|
|
|
}
|
2020-01-26 03:40:36 +09:00
|
|
|
|
|
|
|
.announcements {
|
|
|
|
z-index: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
2017-06-13 03:02:17 +09:00
|
|
|
}
|
|
|
|
|
2017-02-09 09:20:09 +09:00
|
|
|
.column-header {
|
2017-10-26 22:52:48 +09:00
|
|
|
display: flex;
|
2017-02-09 09:20:09 +09:00
|
|
|
font-size: 16px;
|
2023-06-26 12:27:07 +09:00
|
|
|
background: $ui-base-color;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2022-09-29 11:39:33 +09:00
|
|
|
border-radius: 4px 4px 0 0;
|
2017-02-09 09:20:09 +09:00
|
|
|
flex: 0 0 auto;
|
|
|
|
cursor: pointer;
|
2017-02-23 10:14:35 +09:00
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
2017-04-24 07:38:37 +09:00
|
|
|
outline: 0;
|
2018-01-15 12:33:06 +09:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
& > button {
|
|
|
|
margin: 0;
|
2019-06-07 01:51:46 +09:00
|
|
|
border: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding: 15px;
|
|
|
|
padding-inline-end: 0;
|
2018-01-15 12:33:06 +09:00
|
|
|
color: inherit;
|
|
|
|
background: transparent;
|
|
|
|
font: inherit;
|
2023-03-27 17:56:25 +09:00
|
|
|
text-align: start;
|
2018-02-02 01:17:17 +09:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2018-02-02 21:31:28 +09:00
|
|
|
flex: 1;
|
2018-01-15 12:33:06 +09:00
|
|
|
}
|
2017-02-23 10:14:35 +09:00
|
|
|
|
2018-03-11 17:52:59 +09:00
|
|
|
& > .column-header__back-button {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2018-03-11 17:52:59 +09:00
|
|
|
}
|
|
|
|
|
2017-02-23 10:14:35 +09:00
|
|
|
&.active {
|
2017-06-13 03:02:17 +09:00
|
|
|
.column-header__icon {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
|
|
|
text-shadow: 0 0 10px rgba($highlight-text-color, 0.4);
|
2017-06-13 03:02:17 +09:00
|
|
|
}
|
2017-02-21 08:10:49 +09:00
|
|
|
}
|
2017-04-22 01:17:55 +09:00
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-04-24 07:38:37 +09:00
|
|
|
outline: 0;
|
|
|
|
}
|
2017-02-09 09:20:09 +09:00
|
|
|
}
|
|
|
|
|
2017-06-04 08:39:38 +09:00
|
|
|
.column-header__buttons {
|
2017-06-06 23:56:10 +09:00
|
|
|
height: 48px;
|
2017-10-26 22:52:48 +09:00
|
|
|
display: flex;
|
2017-06-04 08:39:38 +09:00
|
|
|
}
|
|
|
|
|
2019-06-11 09:26:37 +09:00
|
|
|
.column-header__links {
|
|
|
|
margin-bottom: 14px;
|
|
|
|
}
|
|
|
|
|
2017-12-06 07:02:27 +09:00
|
|
|
.column-header__links .text-btn {
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2017-12-06 07:02:27 +09:00
|
|
|
}
|
|
|
|
|
2017-06-04 08:39:38 +09:00
|
|
|
.column-header__button {
|
2023-06-26 12:27:07 +09:00
|
|
|
background: $ui-base-color;
|
2017-06-04 08:39:38 +09:00
|
|
|
border: 0;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $darker-text-color;
|
2017-06-04 08:39:38 +09:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
2017-06-04 21:52:02 +09:00
|
|
|
padding: 0 15px;
|
2017-06-04 08:39:38 +09:00
|
|
|
|
|
|
|
&:hover {
|
2023-06-26 12:27:07 +09:00
|
|
|
color: lighten($darker-text-color, 4%);
|
2017-06-04 08:39:38 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $primary-text-color;
|
2023-06-26 12:27:07 +09:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2017-06-04 08:39:38 +09:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 13:21:51 +09:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
color: $dark-text-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2017-06-04 08:39:38 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-header__collapsible {
|
|
|
|
max-height: 70vh;
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-y: auto;
|
2023-06-26 12:27:07 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-06-04 08:39:38 +09:00
|
|
|
transition: max-height 150ms ease-in-out, opacity 300ms linear;
|
|
|
|
opacity: 1;
|
2020-01-26 03:40:36 +09:00
|
|
|
z-index: 1;
|
|
|
|
position: relative;
|
2017-06-04 08:39:38 +09:00
|
|
|
|
|
|
|
&.collapsed {
|
|
|
|
max-height: 0;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.animating {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
2017-12-06 07:02:27 +09:00
|
|
|
|
|
|
|
hr {
|
|
|
|
height: 0;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2023-06-26 12:27:07 +09:00
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
2017-12-06 07:02:27 +09:00
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2017-06-04 08:39:38 +09:00
|
|
|
}
|
|
|
|
|
2017-06-25 06:18:11 +09:00
|
|
|
.column-header__collapsible-inner {
|
2023-06-26 12:27:07 +09:00
|
|
|
background: $ui-base-color;
|
2017-06-25 06:18:11 +09:00
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
2017-06-04 08:39:38 +09:00
|
|
|
.column-header__setting-btn {
|
2021-10-01 07:55:51 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-06-04 08:39:38 +09:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-01 07:55:51 +09:00
|
|
|
.column-header__collapsible__extra + .column-header__setting-btn {
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
|
2020-12-16 02:43:54 +09:00
|
|
|
.column-header__permission-btn {
|
|
|
|
display: inline;
|
|
|
|
font-weight: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2017-06-04 08:39:38 +09:00
|
|
|
.column-header__setting-arrows {
|
2023-04-04 23:48:34 +09:00
|
|
|
float: right;
|
2017-06-04 08:39:38 +09:00
|
|
|
|
|
|
|
.column-header__setting-btn {
|
2021-10-01 07:55:51 +09:00
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
&:first-child {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 7px;
|
2021-10-01 07:55:51 +09:00
|
|
|
}
|
2017-06-04 08:39:38 +09:00
|
|
|
|
|
|
|
&:last-child {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 7px;
|
|
|
|
margin-inline-start: 5px;
|
2017-06-04 08:39:38 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-btn {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
color: inherit;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-10-13 07:37:21 +09:00
|
|
|
.column-header__issue-btn {
|
|
|
|
color: $warning-red;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $error-red;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.column-header__icon {
|
|
|
|
display: inline-block;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2017-02-11 00:35:19 +09:00
|
|
|
.loading-indicator {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2020-01-27 21:44:29 +09:00
|
|
|
font-size: 12px;
|
2017-07-24 03:28:18 +09:00
|
|
|
font-weight: 400;
|
2020-01-27 21:44:29 +09:00
|
|
|
text-transform: uppercase;
|
2017-07-24 03:28:18 +09:00
|
|
|
overflow: visible;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 50%;
|
2017-07-24 03:28:18 +09:00
|
|
|
transform: translate(-50%, -50%);
|
2022-02-09 09:17:07 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2017-07-24 03:28:18 +09:00
|
|
|
|
2022-02-09 09:17:07 +09:00
|
|
|
.circular-progress {
|
|
|
|
color: lighten($ui-base-color, 26%);
|
|
|
|
animation: 1.4s linear 0s infinite normal none running simple-rotate;
|
|
|
|
|
|
|
|
circle {
|
|
|
|
stroke: currentColor;
|
|
|
|
stroke-dasharray: 80px, 200px;
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
animation: circular-progress 1.4s ease-in-out infinite;
|
2017-07-24 03:28:18 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-09 09:17:07 +09:00
|
|
|
@keyframes circular-progress {
|
|
|
|
0% {
|
|
|
|
stroke-dasharray: 1px, 200px;
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -15px;
|
|
|
|
}
|
2018-12-18 01:02:59 +09:00
|
|
|
|
2022-02-09 09:17:07 +09:00
|
|
|
100% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -125px;
|
|
|
|
}
|
2018-12-18 01:02:59 +09:00
|
|
|
}
|
|
|
|
|
2022-02-09 09:17:07 +09:00
|
|
|
@keyframes simple-rotate {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2017-07-24 03:28:18 +09:00
|
|
|
}
|
|
|
|
|
2019-10-25 05:47:48 +09:00
|
|
|
@keyframes spring-rotate-in {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
transform: rotate(-484.8deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
60% {
|
|
|
|
transform: rotate(-316.7deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
90% {
|
|
|
|
transform: rotate(-375deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(-360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spring-rotate-out {
|
|
|
|
0% {
|
|
|
|
transform: rotate(-360deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
transform: rotate(124.8deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
60% {
|
|
|
|
transform: rotate(-43.27deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
90% {
|
|
|
|
transform: rotate(15deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.video-error-cover {
|
|
|
|
align-items: center;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $base-overlay-background;
|
|
|
|
color: $primary-text-color;
|
2017-04-23 11:26:55 +09:00
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 8px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2017-05-03 03:03:00 +09:00
|
|
|
.media-spoiler {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $base-overlay-background;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-07-31 07:18:15 +09:00
|
|
|
border: 0;
|
2018-02-19 10:39:18 +09:00
|
|
|
padding: 0;
|
2017-07-31 07:18:15 +09:00
|
|
|
width: 100%;
|
2017-05-03 03:03:00 +09:00
|
|
|
height: 100%;
|
2018-02-19 10:39:18 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
appearance: none;
|
2017-09-14 10:39:10 +09:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-02-19 10:39:18 +09:00
|
|
|
padding: 0;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: lighten($darker-text-color, 8%);
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
2017-05-03 03:03:00 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.media-spoiler__warning {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-spoiler__trigger {
|
|
|
|
display: block;
|
|
|
|
font-size: 11px;
|
2018-02-19 10:39:18 +09:00
|
|
|
font-weight: 700;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.spoiler-button {
|
2019-04-27 10:24:09 +09:00
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2019-04-27 10:24:09 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-04-23 11:26:55 +09:00
|
|
|
position: absolute;
|
2017-04-25 03:20:16 +09:00
|
|
|
z-index: 100;
|
2017-05-19 18:42:54 +09:00
|
|
|
|
2019-04-27 10:24:09 +09:00
|
|
|
&--minified {
|
|
|
|
display: block;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 4px;
|
2019-04-27 10:24:09 +09:00
|
|
|
top: 4px;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2019-09-03 11:56:40 +09:00
|
|
|
&--click-thru {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2019-04-27 10:24:09 +09:00
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__overlay {
|
2023-07-09 03:05:33 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background: rgba($black, 0.5);
|
2019-04-27 10:24:09 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-07-09 03:05:33 +09:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2019-04-27 10:24:09 +09:00
|
|
|
border: 0;
|
2023-07-09 03:05:33 +09:00
|
|
|
border-radius: 4px;
|
2019-04-27 10:24:09 +09:00
|
|
|
|
|
|
|
&__label {
|
2023-07-09 03:05:33 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 8px;
|
|
|
|
flex-direction: column;
|
2019-04-27 10:24:09 +09:00
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2023-07-09 03:05:33 +09:00
|
|
|
&__action {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 13px;
|
2019-09-02 02:43:35 +09:00
|
|
|
}
|
2017-05-19 18:42:54 +09:00
|
|
|
}
|
2017-02-11 01:30:06 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-container--preloader {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-02-11 01:30:06 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account--panel {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-04-23 11:26:55 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-05-08 03:47:31 +09:00
|
|
|
padding: 10px 0;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account--panel__button,
|
|
|
|
.detailed-status__button {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
text-align: center;
|
2017-02-11 01:30:06 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.column-settings__outer {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-04-23 11:26:55 +09:00
|
|
|
padding: 15px;
|
2017-02-11 01:30:06 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.column-settings__section {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-04-23 11:26:55 +09:00
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
2019-02-14 02:34:58 +09:00
|
|
|
}
|
|
|
|
|
2020-10-15 23:24:47 +09:00
|
|
|
.column-settings__row--with-margin {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2019-02-14 02:34:58 +09:00
|
|
|
.column-settings__hashtags {
|
|
|
|
.column-settings__row {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2018-11-06 02:53:25 +09:00
|
|
|
|
2019-02-14 02:34:58 +09:00
|
|
|
.column-select {
|
2018-11-06 02:53:25 +09:00
|
|
|
&__control {
|
2019-06-07 01:51:46 +09:00
|
|
|
@include search-input;
|
2019-09-20 02:58:40 +09:00
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 600px) {
|
2019-09-20 02:58:40 +09:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
2018-11-06 02:53:25 +09:00
|
|
|
}
|
|
|
|
|
2019-02-14 02:34:58 +09:00
|
|
|
&__placeholder {
|
|
|
|
color: $dark-text-color;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 2px;
|
2019-02-14 02:34:58 +09:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__value-container {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 6px;
|
2019-02-14 02:34:58 +09:00
|
|
|
}
|
|
|
|
|
2018-11-06 02:53:25 +09:00
|
|
|
&__multi-value {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2019-02-14 02:34:58 +09:00
|
|
|
|
|
|
|
&__remove {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 12%);
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
2018-11-06 02:53:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__multi-value__label,
|
2021-11-27 06:09:11 +09:00
|
|
|
&__input,
|
|
|
|
&__input-container {
|
2018-11-06 02:53:25 +09:00
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
2019-02-14 02:34:58 +09:00
|
|
|
&__clear-indicator,
|
2018-11-06 02:53:25 +09:00
|
|
|
&__dropdown-indicator {
|
2019-02-14 02:34:58 +09:00
|
|
|
cursor: pointer;
|
|
|
|
transition: none;
|
|
|
|
color: $dark-text-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: lighten($dark-text-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__indicator-separator {
|
|
|
|
background-color: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__menu {
|
2019-06-07 01:51:46 +09:00
|
|
|
@include search-popout;
|
2022-06-02 02:22:35 +09:00
|
|
|
|
2019-02-14 02:34:58 +09:00
|
|
|
padding: 0;
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__menu-list {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__option {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
&--is-focused,
|
|
|
|
&--is-selected {
|
|
|
|
background: darken($ui-secondary-color, 10%);
|
|
|
|
}
|
2018-11-06 02:53:25 +09:00
|
|
|
}
|
|
|
|
}
|
2017-02-11 00:35:19 +09:00
|
|
|
}
|
2017-02-11 01:30:06 +09:00
|
|
|
|
2017-06-12 19:26:23 +09:00
|
|
|
.column-settings__row {
|
2020-12-16 02:43:54 +09:00
|
|
|
.text-btn:not(.column-header__permission-btn) {
|
2017-06-12 19:26:23 +09:00
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
.relationship-tag {
|
2017-05-08 22:57:49 +09:00
|
|
|
color: $primary-text-color;
|
2019-03-26 08:36:25 +09:00
|
|
|
margin-bottom: 4px;
|
|
|
|
display: block;
|
2023-06-26 12:27:07 +09:00
|
|
|
background-color: rgba($black, 0.45);
|
|
|
|
backdrop-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
2020-01-27 21:44:29 +09:00
|
|
|
font-size: 11px;
|
2023-06-26 12:27:07 +09:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 700;
|
|
|
|
padding: 2px 6px;
|
2018-03-05 13:09:35 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2017-06-03 21:40:24 +09:00
|
|
|
.setting-toggle {
|
2017-04-23 11:26:55 +09:00
|
|
|
display: block;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2018-09-25 22:59:19 +09:00
|
|
|
.setting-toggle__label {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-04-23 11:26:55 +09:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 14px;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 8px;
|
2017-04-23 11:26:55 +09:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2022-05-10 16:44:35 +09:00
|
|
|
.limited-account-hint {
|
|
|
|
p {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-08 07:06:02 +09:00
|
|
|
.empty-column-indicator,
|
2020-04-05 02:02:10 +09:00
|
|
|
.follow_requests-unlocked_explanation {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-base-color;
|
2017-02-18 10:37:59 +09:00
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 400;
|
|
|
|
cursor: default;
|
2017-04-10 23:27:30 +09:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
align-items: center;
|
2017-05-11 07:28:10 +09:00
|
|
|
justify-content: center;
|
2018-01-20 09:32:37 +09:00
|
|
|
|
2023-02-13 12:57:03 +09:00
|
|
|
@supports (display: grid) {
|
|
|
|
// hack to fix Chrome <57
|
2017-05-26 04:14:56 +09:00
|
|
|
contain: strict;
|
|
|
|
}
|
2017-02-18 10:37:59 +09:00
|
|
|
|
2019-05-23 08:35:22 +09:00
|
|
|
& > span {
|
2022-05-03 16:09:09 +09:00
|
|
|
max-width: 500px;
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
|
2017-02-18 10:37:59 +09:00
|
|
|
a {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2017-02-18 10:37:59 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-21 08:10:49 +09:00
|
|
|
|
2020-04-05 02:02:10 +09:00
|
|
|
.follow_requests-unlocked_explanation {
|
|
|
|
background: darken($ui-base-color, 4%);
|
2023-06-26 12:27:07 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2020-04-05 02:02:10 +09:00
|
|
|
contain: initial;
|
2023-04-07 22:44:31 +09:00
|
|
|
flex-grow: 0;
|
2020-04-05 02:02:10 +09:00
|
|
|
}
|
|
|
|
|
2017-07-08 07:06:02 +09:00
|
|
|
.error-column {
|
2022-10-23 06:18:32 +09:00
|
|
|
padding: 20px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-07-08 07:06:02 +09:00
|
|
|
flex-direction: column;
|
2022-10-23 06:18:32 +09:00
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
&__image {
|
2022-10-23 22:58:24 +09:00
|
|
|
width: 70%;
|
2022-10-23 06:18:32 +09:00
|
|
|
max-width: 350px;
|
|
|
|
margin-top: -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
text-align: center;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
max-width: 48ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
margin-top: 30px;
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
2017-07-08 07:06:02 +09:00
|
|
|
}
|
|
|
|
|
2017-10-08 02:02:30 +09:00
|
|
|
@keyframes heartbeat {
|
2023-01-04 21:13:57 +09:00
|
|
|
0% {
|
2017-10-08 02:02:30 +09:00
|
|
|
transform: scale(1);
|
|
|
|
animation-timing-function: ease-out;
|
2017-05-07 09:42:38 +09:00
|
|
|
}
|
2017-05-08 03:47:31 +09:00
|
|
|
|
2017-10-08 02:02:30 +09:00
|
|
|
10% {
|
|
|
|
transform: scale(0.91);
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
17% {
|
|
|
|
transform: scale(0.98);
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
33% {
|
|
|
|
transform: scale(0.87);
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
45% {
|
|
|
|
transform: scale(1);
|
|
|
|
animation-timing-function: ease-out;
|
2017-05-07 09:42:38 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-20 09:32:37 +09:00
|
|
|
.no-reduce-motion .pulse-loading {
|
2018-01-18 07:56:03 +09:00
|
|
|
transform-origin: center center;
|
2017-10-08 02:02:30 +09:00
|
|
|
animation: heartbeat 1.5s ease-in-out infinite both;
|
2017-05-07 09:42:38 +09:00
|
|
|
}
|
|
|
|
|
2018-01-20 09:32:37 +09:00
|
|
|
@keyframes shake-bottom {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
10% {
|
|
|
|
transform: rotate(2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
20%,
|
|
|
|
40%,
|
|
|
|
60% {
|
|
|
|
transform: rotate(-4deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
30%,
|
|
|
|
50%,
|
|
|
|
70% {
|
|
|
|
transform: rotate(4deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
80% {
|
|
|
|
transform: rotate(-2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
90% {
|
|
|
|
transform: rotate(2deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-reduce-motion .shake-bottom {
|
|
|
|
transform-origin: 50% 100%;
|
2019-06-07 01:51:46 +09:00
|
|
|
animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) 2s 2 both;
|
2018-01-20 09:32:37 +09:00
|
|
|
}
|
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
.emoji-picker-dropdown__menu {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $simple-background-color;
|
2023-01-13 00:43:02 +09:00
|
|
|
position: relative;
|
2017-09-23 08:41:00 +09:00
|
|
|
box-shadow: 4px 4px 6px rgba($base-shadow-color, 0.4);
|
2017-04-12 06:23:34 +09:00
|
|
|
border-radius: 4px;
|
2017-09-23 08:41:00 +09:00
|
|
|
margin-top: 5px;
|
2019-05-23 01:00:34 +09:00
|
|
|
z-index: 2;
|
2017-03-02 08:57:55 +09:00
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
.emoji-mart-scroll {
|
|
|
|
transition: opacity 200ms ease;
|
2017-03-02 08:57:55 +09:00
|
|
|
}
|
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
&.selecting .emoji-mart-scroll {
|
|
|
|
opacity: 0.5;
|
2017-03-02 08:57:55 +09:00
|
|
|
}
|
2017-09-23 08:41:00 +09:00
|
|
|
}
|
2017-03-02 08:57:55 +09:00
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
.emoji-picker-dropdown__modifiers {
|
|
|
|
position: absolute;
|
|
|
|
top: 60px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 11px;
|
2017-09-23 08:41:00 +09:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-03-02 08:57:55 +09:00
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
.emoji-picker-dropdown__modifiers__menu {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 4;
|
|
|
|
top: -4px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: -8px;
|
2017-09-23 08:41:00 +09:00
|
|
|
background: $simple-background-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
|
|
|
|
overflow: hidden;
|
2017-03-02 08:57:55 +09:00
|
|
|
|
2019-03-30 09:41:35 +09:00
|
|
|
button {
|
2017-04-12 06:23:34 +09:00
|
|
|
display: block;
|
2017-09-23 08:41:00 +09:00
|
|
|
cursor: pointer;
|
|
|
|
border: 0;
|
2019-03-30 09:41:35 +09:00
|
|
|
padding: 4px 8px;
|
2017-09-23 08:41:00 +09:00
|
|
|
background: transparent;
|
2017-04-12 06:23:34 +09:00
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($ui-secondary-color, 0.4);
|
2017-04-12 06:23:34 +09:00
|
|
|
}
|
2017-03-02 08:57:55 +09:00
|
|
|
}
|
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
.emoji-mart-emoji {
|
2017-03-02 08:57:55 +09:00
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
}
|
2017-03-23 01:36:34 +09:00
|
|
|
|
2017-09-23 12:40:28 +09:00
|
|
|
.emoji-mart-emoji {
|
|
|
|
span {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-24 11:50:30 +09:00
|
|
|
.upload-area {
|
2017-04-23 11:26:55 +09:00
|
|
|
align-items: center;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: rgba($base-overlay-background, 0.8);
|
2017-03-24 11:50:30 +09:00
|
|
|
display: flex;
|
2023-01-24 01:42:58 +09:00
|
|
|
height: 100vh;
|
2017-03-24 11:50:30 +09:00
|
|
|
justify-content: center;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2017-03-24 11:50:30 +09:00
|
|
|
opacity: 0;
|
2023-01-24 01:42:58 +09:00
|
|
|
position: fixed;
|
2017-04-23 11:26:55 +09:00
|
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
2023-01-24 01:42:58 +09:00
|
|
|
width: 100vw;
|
2017-03-24 11:50:30 +09:00
|
|
|
z-index: 2000;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-area__drop {
|
|
|
|
width: 320px;
|
|
|
|
height: 160px;
|
|
|
|
display: flex;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-area__background {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 0;
|
2017-03-24 11:50:30 +09:00
|
|
|
bottom: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2017-03-24 11:50:30 +09:00
|
|
|
z-index: -1;
|
|
|
|
border-radius: 4px;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-base-color;
|
|
|
|
box-shadow: 0 0 5px rgba($base-shadow-color, 0.2);
|
2017-03-24 11:50:30 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.upload-area__content {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-03-09 22:35:44 +09:00
|
|
|
text-align: center;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2017-03-24 11:50:30 +09:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
2017-07-24 22:09:08 +09:00
|
|
|
border: 2px dashed $ui-base-lighter-color;
|
2017-03-24 11:50:30 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-progress {
|
2017-03-25 08:01:43 +09:00
|
|
|
padding: 10px;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2017-03-24 11:50:30 +09:00
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2017-03-24 11:50:30 +09:00
|
|
|
font-size: 34px;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2017-03-24 11:50:30 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
2020-01-27 21:44:29 +09:00
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
2017-03-24 11:50:30 +09:00
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 06:51:40 +09:00
|
|
|
.upload-progress__message {
|
2017-04-23 11:26:55 +09:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2017-03-24 11:50:30 +09:00
|
|
|
.upload-progress__backdrop {
|
|
|
|
width: 100%;
|
|
|
|
height: 6px;
|
|
|
|
border-radius: 6px;
|
2023-02-23 20:58:42 +09:00
|
|
|
background: darken($simple-background-color, 8%);
|
2017-03-24 11:50:30 +09:00
|
|
|
position: relative;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-progress__tracker {
|
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2017-03-24 11:50:30 +09:00
|
|
|
top: 0;
|
|
|
|
height: 6px;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-highlight-color;
|
2017-03-24 11:50:30 +09:00
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-button {
|
2017-05-19 18:42:54 +09:00
|
|
|
display: block;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
padding-inline-start: 2px;
|
|
|
|
padding-inline-end: 5px;
|
2017-03-25 08:01:43 +09:00
|
|
|
outline: 0;
|
2017-07-15 02:47:53 +09:00
|
|
|
cursor: pointer;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-03-25 08:01:43 +09:00
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
2017-03-24 11:50:30 +09:00
|
|
|
img {
|
|
|
|
filter: grayscale(100%);
|
2017-03-25 08:01:43 +09:00
|
|
|
opacity: 0.8;
|
2017-03-24 11:50:30 +09:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-03-24 11:50:30 +09:00
|
|
|
img {
|
|
|
|
opacity: 1;
|
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown--active .emoji-button img {
|
|
|
|
opacity: 1;
|
|
|
|
filter: none;
|
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
|
|
|
|
.privacy-dropdown__dropdown {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $simple-background-color;
|
2017-10-01 19:20:00 +09:00
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
border-radius: 4px;
|
2017-03-25 08:01:43 +09:00
|
|
|
overflow: hidden;
|
2021-02-11 08:53:12 +09:00
|
|
|
z-index: 2;
|
2018-08-20 00:11:12 +09:00
|
|
|
|
|
|
|
&.top {
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
transform-origin: 50% 0;
|
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
2021-02-11 08:53:12 +09:00
|
|
|
.modal-root__container .privacy-dropdown {
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-root__container .privacy-dropdown__dropdown {
|
|
|
|
pointer-events: auto;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
|
2017-03-25 08:01:43 +09:00
|
|
|
.privacy-dropdown__option {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $inverted-text-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:hover,
|
|
|
|
&.active {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
2018-05-19 19:16:52 +09:00
|
|
|
outline: 0;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
|
|
|
.privacy-dropdown__option__content {
|
2017-05-08 22:57:49 +09:00
|
|
|
color: $primary-text-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
|
|
|
strong {
|
2017-05-08 22:57:49 +09:00
|
|
|
color: $primary-text-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active:hover {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-highlight-color, 4%);
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-dropdown__option__icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-dropdown__option__content {
|
|
|
|
flex: 1 1 auto;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2017-12-08 00:01:52 +09:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-dropdown.active {
|
|
|
|
.privacy-dropdown__value {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $simple-background-color;
|
2017-03-25 08:01:43 +09:00
|
|
|
border-radius: 4px 4px 0 0;
|
2017-05-08 22:57:49 +09:00
|
|
|
box-shadow: 0 -4px 4px rgba($base-shadow-color, 0.1);
|
2017-10-01 19:20:00 +09:00
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
|
2018-08-20 00:11:12 +09:00
|
|
|
&.top .privacy-dropdown__value {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
|
2017-03-25 08:01:43 +09:00
|
|
|
.privacy-dropdown__dropdown {
|
|
|
|
display: block;
|
2017-05-08 22:57:49 +09:00
|
|
|
box-shadow: 2px 4px 6px rgba($base-shadow-color, 0.1);
|
2017-03-25 08:01:43 +09:00
|
|
|
}
|
|
|
|
}
|
2017-04-01 02:59:54 +09:00
|
|
|
|
2022-05-16 18:18:35 +09:00
|
|
|
.language-dropdown {
|
|
|
|
&__dropdown {
|
|
|
|
background: $simple-background-color;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
transform-origin: 50% 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-search {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 10px;
|
2022-05-16 18:18:35 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-search-icon {
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px + 5px;
|
2022-05-16 18:18:35 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-scroll {
|
|
|
|
padding: 0 10px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__results {
|
|
|
|
&__item {
|
|
|
|
cursor: pointer;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:active,
|
|
|
|
&:hover {
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__common-name {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
outline: 0;
|
|
|
|
|
|
|
|
.language-dropdown__dropdown__results__item__common-name {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-highlight-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-01 02:59:54 +09:00
|
|
|
.search {
|
2022-12-16 01:24:38 +09:00
|
|
|
margin-bottom: 10px;
|
2017-04-01 02:59:54 +09:00
|
|
|
position: relative;
|
2023-04-01 16:59:10 +09:00
|
|
|
|
|
|
|
&__popout {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
inset-inline-start: 0;
|
|
|
|
margin-top: -2px;
|
|
|
|
width: 100%;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
box-shadow: 4px 4px 6px rgba($base-shadow-color, 0.4);
|
2023-04-28 17:00:33 +09:00
|
|
|
z-index: 99;
|
2023-04-01 16:59:10 +09:00
|
|
|
font-size: 13px;
|
|
|
|
padding: 15px 5px;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $dark-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 0 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__menu {
|
|
|
|
&__message {
|
|
|
|
color: $dark-text-color;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
font: inherit;
|
|
|
|
background: transparent;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 4px;
|
|
|
|
text-align: start;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active,
|
|
|
|
&.selected {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mark {
|
|
|
|
background: transparent;
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
.search__popout {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-04-01 02:59:54 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.search__input {
|
2019-06-07 01:51:46 +09:00
|
|
|
@include search-input;
|
|
|
|
|
2017-04-01 02:59:54 +09:00
|
|
|
display: block;
|
2019-06-08 17:23:41 +09:00
|
|
|
padding: 15px;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 30px;
|
2019-06-08 17:23:41 +09:00
|
|
|
line-height: 18px;
|
|
|
|
font-size: 16px;
|
2019-09-20 02:58:40 +09:00
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
2017-04-01 02:59:54 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.search__icon {
|
2018-05-29 09:01:24 +09:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2017-04-01 02:59:54 +09:00
|
|
|
position: absolute;
|
2019-06-09 08:59:42 +09:00
|
|
|
top: 16px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px;
|
2017-04-01 02:59:54 +09:00
|
|
|
z-index: 2;
|
|
|
|
display: inline-block;
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 100ms linear;
|
2019-05-05 00:39:53 +09:00
|
|
|
transition-property: transform, opacity;
|
2017-04-01 02:59:54 +09:00
|
|
|
font-size: 18px;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2017-04-01 02:59:54 +09:00
|
|
|
cursor: default;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
pointer-events: auto;
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-search {
|
2017-10-20 01:27:55 +09:00
|
|
|
transform: rotate(90deg);
|
2017-04-01 02:59:54 +09:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
pointer-events: none;
|
2017-10-20 01:27:55 +09:00
|
|
|
transform: rotate(0deg);
|
2017-04-01 02:59:54 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-times-circle {
|
2019-06-09 08:59:42 +09:00
|
|
|
top: 17px;
|
2017-10-20 01:27:55 +09:00
|
|
|
transform: rotate(0deg);
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $action-button-color;
|
2017-04-01 02:59:54 +09:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.active {
|
2017-10-20 01:27:55 +09:00
|
|
|
transform: rotate(90deg);
|
2017-04-01 02:59:54 +09:00
|
|
|
}
|
2017-04-01 05:44:12 +09:00
|
|
|
|
|
|
|
&:hover {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: lighten($action-button-color, 7%);
|
2017-04-01 05:44:12 +09:00
|
|
|
}
|
2017-04-01 02:59:54 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results__header {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-base-color, 2%);
|
2018-05-28 04:45:30 +09:00
|
|
|
padding: 15px;
|
2017-04-01 02:59:54 +09:00
|
|
|
font-weight: 500;
|
2018-05-28 04:45:30 +09:00
|
|
|
font-size: 16px;
|
|
|
|
cursor: default;
|
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-05-28 04:45:30 +09:00
|
|
|
display: inline-block;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2018-05-28 04:45:30 +09:00
|
|
|
}
|
2017-04-01 02:59:54 +09:00
|
|
|
}
|
|
|
|
|
2018-02-10 07:04:47 +09:00
|
|
|
.search-results__section {
|
2018-05-29 09:01:24 +09:00
|
|
|
margin-bottom: 5px;
|
2018-02-10 07:04:47 +09:00
|
|
|
|
|
|
|
h5 {
|
2018-05-29 09:01:24 +09:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
cursor: default;
|
|
|
|
display: flex;
|
|
|
|
padding: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
color: $dark-text-color;
|
2018-02-10 07:04:47 +09:00
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-02-10 07:04:47 +09:00
|
|
|
display: inline-block;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2018-02-10 07:04:47 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account:last-child,
|
|
|
|
& > div:last-child .status {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-01 02:59:54 +09:00
|
|
|
.search-results__hashtag {
|
|
|
|
display: block;
|
|
|
|
padding: 10px;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2017-04-01 02:59:54 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: lighten($secondary-text-color, 4%);
|
2017-04-01 02:59:54 +09:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2017-04-02 05:11:28 +09:00
|
|
|
|
2019-06-28 04:12:26 +09:00
|
|
|
.search-results__info {
|
2019-07-27 12:49:50 +09:00
|
|
|
padding: 20px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-align: center;
|
2019-06-28 04:12:26 +09:00
|
|
|
}
|
|
|
|
|
2017-09-29 03:43:18 +09:00
|
|
|
.modal-root {
|
2018-03-24 20:52:26 +09:00
|
|
|
position: relative;
|
2017-09-29 03:43:18 +09:00
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
|
2017-04-02 05:11:28 +09:00
|
|
|
.modal-root__overlay {
|
2018-03-24 20:52:26 +09:00
|
|
|
position: fixed;
|
2017-04-02 05:11:28 +09:00
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-04-02 05:11:28 +09:00
|
|
|
bottom: 0;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: rgba($base-overlay-background, 0.7);
|
2021-03-24 21:51:32 +09:00
|
|
|
transition: background 0.5s;
|
2017-04-02 05:11:28 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-root__container {
|
2018-03-24 20:52:26 +09:00
|
|
|
position: fixed;
|
2017-04-02 05:11:28 +09:00
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2017-04-02 05:11:28 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-10-07 17:14:31 +09:00
|
|
|
box-sizing: border-box;
|
2017-04-02 05:11:28 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
align-content: space-around;
|
|
|
|
z-index: 9999;
|
|
|
|
pointer-events: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-root__modal {
|
|
|
|
pointer-events: auto;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2019-10-03 10:34:58 +09:00
|
|
|
.video-modal__container {
|
2018-03-05 04:32:24 +09:00
|
|
|
max-width: 100vw;
|
|
|
|
max-height: 100vh;
|
2019-10-03 10:34:58 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.audio-modal__container {
|
|
|
|
width: 50vw;
|
2018-03-05 04:32:24 +09:00
|
|
|
}
|
|
|
|
|
2017-04-02 05:11:28 +09:00
|
|
|
.media-modal {
|
2018-03-05 04:32:24 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-04-02 05:11:28 +09:00
|
|
|
position: relative;
|
2018-03-27 19:30:28 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
&__close,
|
|
|
|
&__zoom-button {
|
|
|
|
color: rgba($white, 0.7);
|
2018-03-27 19:30:28 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: $white;
|
|
|
|
background-color: rgba($white, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($white, 0.3);
|
2018-03-27 19:30:28 +09:00
|
|
|
}
|
|
|
|
}
|
2017-04-02 05:11:28 +09:00
|
|
|
}
|
2017-04-11 11:28:52 +09:00
|
|
|
|
2018-03-05 04:32:24 +09:00
|
|
|
.media-modal__closer {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2018-03-05 04:32:24 +09:00
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__navigation {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2018-03-05 04:32:24 +09:00
|
|
|
bottom: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
transition: opacity 0.3s linear;
|
|
|
|
will-change: opacity;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.media-modal__navigation--hidden {
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav {
|
2020-11-27 11:24:11 +09:00
|
|
|
background: transparent;
|
2018-03-05 04:32:24 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
border: 0;
|
2023-06-01 09:25:38 +09:00
|
|
|
color: rgba($white, 0.7);
|
2018-03-05 04:32:24 +09:00
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 24px;
|
|
|
|
height: 20vmax;
|
|
|
|
margin: auto 0;
|
|
|
|
padding: 30px 15px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2020-11-27 11:24:11 +09:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2023-06-01 09:25:38 +09:00
|
|
|
color: $white;
|
2020-11-27 11:24:11 +09:00
|
|
|
}
|
2018-03-05 04:32:24 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav--left {
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2018-03-05 04:32:24 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav--right {
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 0;
|
2017-07-24 03:28:31 +09:00
|
|
|
}
|
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
.media-modal__overlay {
|
|
|
|
max-width: 600px;
|
2017-10-04 00:11:22 +09:00
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2020-11-27 11:24:11 +09:00
|
|
|
bottom: 0;
|
|
|
|
margin: 0 auto;
|
2017-10-04 00:11:22 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
.picture-in-picture__footer {
|
|
|
|
border-radius: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 20px 0;
|
2019-05-03 23:16:30 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
.icon-button {
|
|
|
|
color: $white;
|
2019-05-03 23:16:30 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: $white;
|
|
|
|
background-color: rgba($white, 0.15);
|
|
|
|
}
|
2019-05-03 23:16:30 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
&:focus {
|
|
|
|
background-color: rgba($white, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($highlight-text-color, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: rgba($highlight-text-color, 0.3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.star-icon.active {
|
|
|
|
color: $gold-star;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($gold-star, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: rgba($gold-star, 0.3);
|
|
|
|
}
|
|
|
|
}
|
2021-06-25 11:45:30 +09:00
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
color: $white;
|
|
|
|
background-color: transparent;
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2019-05-03 23:16:30 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
.media-modal__pagination {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 20px;
|
2017-10-04 00:11:22 +09:00
|
|
|
}
|
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
.media-modal__page-dot {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
background-color: $white;
|
|
|
|
opacity: 0.4;
|
|
|
|
height: 6px;
|
|
|
|
width: 6px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin: 0 4px;
|
2017-10-04 00:11:22 +09:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 0;
|
2022-06-02 02:22:35 +09:00
|
|
|
transition: opacity 0.2s ease-in-out;
|
2017-10-04 00:11:22 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-04-25 18:12:37 +09:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
background-color: $highlight-text-color;
|
|
|
|
}
|
2017-10-04 00:11:22 +09:00
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.media-modal__close {
|
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 8px;
|
2018-03-05 04:32:24 +09:00
|
|
|
top: 8px;
|
2017-04-23 11:26:55 +09:00
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2020-11-03 05:16:38 +09:00
|
|
|
.media-modal__zoom-button {
|
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 64px;
|
2020-11-03 05:16:38 +09:00
|
|
|
top: 8px;
|
|
|
|
z-index: 100;
|
|
|
|
pointer-events: auto;
|
|
|
|
transition: opacity 0.3s linear;
|
|
|
|
will-change: opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__zoom-button--hidden {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2018-01-20 09:32:37 +09:00
|
|
|
.onboarding-modal,
|
2017-08-31 10:38:35 +09:00
|
|
|
.error-modal,
|
|
|
|
.embed-modal {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-secondary-color;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2017-04-17 03:32:00 +09:00
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2017-07-08 07:06:02 +09:00
|
|
|
.error-modal__body {
|
2017-04-17 03:32:00 +09:00
|
|
|
height: 80vh;
|
|
|
|
width: 80vw;
|
2017-04-18 08:02:02 +09:00
|
|
|
max-width: 520px;
|
|
|
|
max-height: 420px;
|
2017-04-17 03:32:00 +09:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2017-04-17 03:32:00 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 25px;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
opacity: 0;
|
|
|
|
user-select: text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-08 07:06:02 +09:00
|
|
|
.error-modal__body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-01-20 09:32:37 +09:00
|
|
|
.onboarding-modal__paginator,
|
2017-07-08 07:06:02 +09:00
|
|
|
.error-modal__footer {
|
2017-04-17 03:32:00 +09:00
|
|
|
flex: 0 0 auto;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: darken($ui-secondary-color, 8%);
|
2017-04-17 03:32:00 +09:00
|
|
|
display: flex;
|
|
|
|
padding: 25px;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
min-width: 33px;
|
|
|
|
}
|
|
|
|
|
2018-01-20 09:32:37 +09:00
|
|
|
.onboarding-modal__nav,
|
2017-07-08 07:06:02 +09:00
|
|
|
.error-modal__nav {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2017-05-26 21:10:37 +09:00
|
|
|
border: 0;
|
2017-04-17 03:32:00 +09:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2018-01-20 09:32:37 +09:00
|
|
|
padding: 10px 25px;
|
2017-05-26 21:10:37 +09:00
|
|
|
line-height: inherit;
|
|
|
|
height: auto;
|
2018-01-20 09:32:37 +09:00
|
|
|
margin: -10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: transparent;
|
2017-04-17 03:32:00 +09:00
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: darken($lighter-text-color, 4%);
|
2018-01-20 09:32:37 +09:00
|
|
|
background-color: darken($ui-secondary-color, 16%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.onboarding-modal__done,
|
|
|
|
&.onboarding-modal__next {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2018-01-20 09:32:37 +09:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: lighten($inverted-text-color, 4%);
|
2018-01-20 09:32:37 +09:00
|
|
|
}
|
2017-04-17 03:32:00 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-08 07:06:02 +09:00
|
|
|
.error-modal__footer {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2018-01-20 09:32:37 +09:00
|
|
|
.display-case {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
font-weight: 500;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2018-01-20 09:32:37 +09:00
|
|
|
margin-bottom: 5px;
|
2020-01-27 21:44:29 +09:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
2018-01-20 09:32:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__case {
|
|
|
|
background: $ui-base-color;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2018-01-20 09:32:37 +09:00
|
|
|
font-weight: 500;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboard-sliders {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 30px;
|
|
|
|
max-height: auto;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 10px;
|
2018-01-20 09:32:37 +09:00
|
|
|
}
|
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
.boost-modal,
|
2017-06-28 01:07:21 +09:00
|
|
|
.confirmation-modal,
|
2017-07-28 05:31:59 +09:00
|
|
|
.report-modal,
|
2017-11-15 11:56:41 +09:00
|
|
|
.actions-modal,
|
2019-09-30 04:46:05 +09:00
|
|
|
.mute-modal,
|
2022-02-09 09:17:07 +09:00
|
|
|
.block-modal,
|
|
|
|
.compare-history-modal {
|
2017-05-08 22:57:49 +09:00
|
|
|
background: lighten($ui-secondary-color, 8%);
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2017-04-12 04:24:17 +09:00
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
2017-04-11 11:28:52 +09:00
|
|
|
max-width: 90vw;
|
|
|
|
width: 480px;
|
|
|
|
position: relative;
|
2017-04-12 04:24:17 +09:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
2017-04-11 11:28:52 +09:00
|
|
|
|
2017-07-28 22:30:53 +09:00
|
|
|
.actions-modal {
|
|
|
|
.status {
|
|
|
|
background: $white;
|
|
|
|
border-bottom-color: $ui-secondary-color;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
2017-09-22 11:59:17 +09:00
|
|
|
|
|
|
|
.dropdown-menu__separator {
|
|
|
|
border-bottom-color: $ui-secondary-color;
|
|
|
|
}
|
2017-07-28 22:30:53 +09:00
|
|
|
}
|
|
|
|
|
2017-04-12 04:24:17 +09:00
|
|
|
.boost-modal__container {
|
2017-04-17 19:27:19 +09:00
|
|
|
overflow-x: scroll;
|
2017-04-12 04:24:17 +09:00
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
.status {
|
|
|
|
user-select: text;
|
|
|
|
border-bottom: 0;
|
2017-04-11 11:28:52 +09:00
|
|
|
}
|
2017-04-12 04:24:17 +09:00
|
|
|
}
|
2017-04-11 11:28:52 +09:00
|
|
|
|
2017-05-08 03:47:31 +09:00
|
|
|
.boost-modal__action-bar,
|
2017-06-28 01:07:21 +09:00
|
|
|
.confirmation-modal__action-bar,
|
2019-09-30 04:46:05 +09:00
|
|
|
.mute-modal__action-bar,
|
|
|
|
.block-modal__action-bar {
|
2017-04-12 04:24:17 +09:00
|
|
|
display: flex;
|
2017-05-23 20:10:41 +09:00
|
|
|
justify-content: space-between;
|
2022-10-26 02:02:21 +09:00
|
|
|
align-items: center;
|
2017-05-08 22:57:49 +09:00
|
|
|
background: $ui-secondary-color;
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 15px;
|
2017-04-11 11:28:52 +09:00
|
|
|
|
2017-04-12 04:24:17 +09:00
|
|
|
& > div {
|
|
|
|
flex: 1 1 auto;
|
2023-03-27 17:56:25 +09:00
|
|
|
text-align: end;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $lighter-text-color;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 10px;
|
2017-04-12 04:24:17 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
2017-04-11 11:28:52 +09:00
|
|
|
}
|
|
|
|
}
|
2017-04-15 20:17:54 +09:00
|
|
|
|
2019-09-30 04:46:05 +09:00
|
|
|
.mute-modal,
|
|
|
|
.block-modal {
|
2017-11-15 11:56:41 +09:00
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2019-09-30 04:46:05 +09:00
|
|
|
.mute-modal .react-toggle,
|
|
|
|
.block-modal .react-toggle {
|
2017-11-15 11:56:41 +09:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-02-28 14:54:55 +09:00
|
|
|
.report-modal {
|
|
|
|
width: 90vw;
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
.report-dialog-modal {
|
|
|
|
max-width: 90vw;
|
|
|
|
width: 480px;
|
|
|
|
height: 80vh;
|
|
|
|
background: lighten($ui-secondary-color, 8%);
|
|
|
|
color: $inverted-text-color;
|
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
flex-direction: column;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-top: 1px solid $ui-secondary-color;
|
|
|
|
padding: 20px;
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (height <= 800px) {
|
2022-02-24 04:03:46 +09:00
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__subtitle {
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__lead {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: lighten($inverted-text-color, 16%);
|
|
|
|
margin-bottom: 30px;
|
2022-08-25 11:27:47 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2022-02-24 04:03:46 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
margin-top: 30px;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__statuses {
|
|
|
|
flex-grow: 1;
|
|
|
|
min-height: 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.status__content p {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
|
2022-03-22 14:08:05 +09:00
|
|
|
.status__content__spoiler-link {
|
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-primary-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-primary-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-24 04:03:46 +09:00
|
|
|
.dialog-option .poll__input {
|
|
|
|
border-color: $inverted-text-color;
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 8px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
border-color: lighten($inverted-text-color, 15%);
|
|
|
|
border-width: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border-color: $inverted-text-color;
|
|
|
|
background: $inverted-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll__option.dialog-option {
|
|
|
|
padding: 15px 0;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
border-bottom: 1px solid $ui-secondary-color;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .poll__option__text {
|
|
|
|
font-size: 13px;
|
|
|
|
color: lighten($inverted-text-color, 16%);
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 22px;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-spacer {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__textarea {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
background: $simple-background-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
resize: vertical;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__toggle {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-07-11 01:26:56 +09:00
|
|
|
margin-bottom: 10px;
|
2022-02-24 04:03:46 +09:00
|
|
|
|
|
|
|
& > span {
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 500;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 10px;
|
2022-02-24 04:03:46 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.button-secondary {
|
2023-07-03 18:32:31 +09:00
|
|
|
border-color: $ui-button-secondary-border-color;
|
|
|
|
color: $ui-button-secondary-color;
|
2022-02-24 04:03:46 +09:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2023-07-03 18:32:31 +09:00
|
|
|
border-color: $ui-button-secondary-focus-background-color;
|
|
|
|
color: $ui-button-secondary-focus-color;
|
2022-02-24 04:03:46 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
margin: 15px 0;
|
|
|
|
}
|
2022-08-25 11:27:47 +09:00
|
|
|
|
|
|
|
.emoji-mart-search {
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 10px;
|
2022-08-25 11:27:47 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-search-icon {
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px + 5px;
|
2022-08-25 11:27:47 +09:00
|
|
|
}
|
2022-02-24 04:03:46 +09:00
|
|
|
}
|
|
|
|
|
2018-02-28 14:54:55 +09:00
|
|
|
.report-modal__container {
|
|
|
|
display: flex;
|
|
|
|
border-top: 1px solid $ui-secondary-color;
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 14:54:55 +09:00
|
|
|
flex-wrap: wrap;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 01:07:21 +09:00
|
|
|
.report-modal__statuses,
|
|
|
|
.report-modal__comment {
|
2018-02-28 14:54:55 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 50%;
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 14:54:55 +09:00
|
|
|
width: 100%;
|
|
|
|
}
|
2017-06-28 01:07:21 +09:00
|
|
|
}
|
|
|
|
|
2019-08-16 05:49:00 +09:00
|
|
|
.report-modal__statuses,
|
|
|
|
.focal-point-modal__content {
|
2018-02-28 14:54:55 +09:00
|
|
|
flex: 1 1 auto;
|
2017-06-28 01:07:21 +09:00
|
|
|
min-height: 20vh;
|
2018-05-07 03:38:17 +09:00
|
|
|
max-height: 80vh;
|
2017-06-28 01:07:21 +09:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2018-02-28 14:54:55 +09:00
|
|
|
|
2018-04-22 21:29:40 +09:00
|
|
|
.status__content a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2019-01-04 21:54:56 +09:00
|
|
|
.status__content,
|
2018-08-19 22:51:57 +09:00
|
|
|
.status__content p {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 14:54:55 +09:00
|
|
|
max-height: 10vh;
|
|
|
|
}
|
2017-06-28 01:07:21 +09:00
|
|
|
}
|
|
|
|
|
2019-08-16 05:49:00 +09:00
|
|
|
.focal-point-modal__content {
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 480px) {
|
2019-08-16 05:49:00 +09:00
|
|
|
max-height: 40vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-07 19:14:19 +09:00
|
|
|
.setting-divider {
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
margin-bottom: 29px;
|
|
|
|
}
|
|
|
|
|
2017-06-28 01:07:21 +09:00
|
|
|
.report-modal__comment {
|
2018-02-28 14:54:55 +09:00
|
|
|
padding: 20px;
|
2023-04-04 23:48:34 +09:00
|
|
|
border-inline-end: 1px solid $ui-secondary-color;
|
2018-02-28 14:54:55 +09:00
|
|
|
max-width: 320px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2019-08-14 11:07:32 +09:00
|
|
|
.setting-text-label {
|
|
|
|
display: block;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2022-11-06 07:06:32 +09:00
|
|
|
.setting-text {
|
|
|
|
width: 100%;
|
|
|
|
resize: none;
|
|
|
|
min-height: 100px;
|
|
|
|
max-height: 50vh;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-28 14:54:55 +09:00
|
|
|
.setting-toggle {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
|
|
|
&__label {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2018-02-28 14:54:55 +09:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 14:54:55 +09:00
|
|
|
padding: 10px;
|
|
|
|
max-width: 100%;
|
|
|
|
order: 2;
|
|
|
|
|
|
|
|
.setting-toggle {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2017-06-28 01:07:21 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:31:59 +09:00
|
|
|
.actions-modal {
|
2019-06-07 01:51:46 +09:00
|
|
|
max-height: 80vh;
|
|
|
|
max-width: 80vw;
|
|
|
|
|
2017-07-28 05:31:59 +09:00
|
|
|
.status {
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
|
|
|
|
2017-09-22 11:59:17 +09:00
|
|
|
.actions-modal__item-label {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:31:59 +09:00
|
|
|
ul {
|
|
|
|
overflow-y: auto;
|
|
|
|
flex-shrink: 0;
|
2019-04-22 21:55:50 +09:00
|
|
|
max-height: 80vh;
|
|
|
|
|
|
|
|
&.with-status {
|
|
|
|
max-height: calc(80vh - 75px);
|
|
|
|
}
|
2017-07-28 05:31:59 +09:00
|
|
|
|
2017-07-28 20:34:06 +09:00
|
|
|
li:empty {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:31:59 +09:00
|
|
|
li:not(:empty) {
|
|
|
|
a {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $inverted-text-color;
|
2017-07-28 05:31:59 +09:00
|
|
|
display: flex;
|
2017-09-22 11:59:17 +09:00
|
|
|
padding: 12px 16px;
|
|
|
|
font-size: 15px;
|
2017-07-28 05:31:59 +09:00
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
|
|
|
|
2017-09-22 11:59:17 +09:00
|
|
|
&,
|
|
|
|
button {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active,
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-07-28 05:31:59 +09:00
|
|
|
&,
|
|
|
|
button {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button:first-child {
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2017-07-28 05:31:59 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-15 11:56:41 +09:00
|
|
|
.confirmation-modal__action-bar,
|
2019-09-30 04:46:05 +09:00
|
|
|
.mute-modal__action-bar,
|
|
|
|
.block-modal__action-bar {
|
2019-04-16 08:23:07 +09:00
|
|
|
.confirmation-modal__secondary-button {
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
2017-04-23 11:39:50 +09:00
|
|
|
}
|
|
|
|
|
2019-09-30 04:46:05 +09:00
|
|
|
.confirmation-modal__secondary-button,
|
|
|
|
.confirmation-modal__cancel-button,
|
|
|
|
.mute-modal__cancel-button,
|
|
|
|
.block-modal__cancel-button {
|
|
|
|
background-color: transparent;
|
|
|
|
color: $lighter-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: darken($lighter-text-color, 4%);
|
2019-10-03 10:17:29 +09:00
|
|
|
background-color: transparent;
|
2019-09-30 04:46:05 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 01:07:21 +09:00
|
|
|
.confirmation-modal__container,
|
2017-11-15 11:56:41 +09:00
|
|
|
.mute-modal__container,
|
2019-09-30 04:46:05 +09:00
|
|
|
.block-modal__container,
|
2017-06-28 01:07:21 +09:00
|
|
|
.report-modal__target {
|
2017-04-23 11:39:50 +09:00
|
|
|
padding: 30px;
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2017-12-08 00:01:52 +09:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 11:39:50 +09:00
|
|
|
}
|
2020-10-13 08:01:14 +09:00
|
|
|
|
|
|
|
select {
|
|
|
|
appearance: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
outline: 0;
|
|
|
|
font-family: inherit;
|
2023-02-13 12:57:03 +09:00
|
|
|
background: $simple-background-color
|
|
|
|
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.933 18.467' height='19.698' width='15.929'><path d='M3.467 14.967l-3.393-3.5H14.86l-3.392 3.5c-1.866 1.925-3.666 3.5-4 3.5-.335 0-2.135-1.575-4-3.5zm.266-11.234L7.467 0 11.2 3.733l3.733 3.734H0l3.733-3.734z' fill='#{hex-color(darken($simple-background-color, 14%))}'/></svg>")
|
|
|
|
no-repeat right 8px center / auto 16px;
|
2020-10-13 08:01:14 +09:00
|
|
|
border: 1px solid darken($simple-background-color, 14%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 6px 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 30px;
|
2020-10-13 08:01:14 +09:00
|
|
|
}
|
2017-04-23 11:39:50 +09:00
|
|
|
}
|
|
|
|
|
2019-09-30 04:46:05 +09:00
|
|
|
.confirmation-modal__container,
|
|
|
|
.report-modal__target {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block-modal,
|
|
|
|
.mute-modal {
|
|
|
|
&__explanation {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting-toggle {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
margin: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 8px;
|
2019-09-30 04:46:05 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 14:54:55 +09:00
|
|
|
.report-modal__target {
|
2019-08-16 05:49:00 +09:00
|
|
|
padding: 15px;
|
2018-03-02 12:36:00 +09:00
|
|
|
|
2021-05-12 04:15:57 +09:00
|
|
|
.report-modal__close {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px;
|
2018-03-02 12:36:00 +09:00
|
|
|
}
|
2018-02-28 14:54:55 +09:00
|
|
|
}
|
|
|
|
|
2022-02-09 09:17:07 +09:00
|
|
|
.compare-history-modal {
|
|
|
|
.report-modal__target {
|
|
|
|
border-bottom: 1px solid $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
padding: 30px;
|
|
|
|
pointer-events: all;
|
2023-02-07 00:53:31 +09:00
|
|
|
overflow-y: auto;
|
2022-02-09 09:17:07 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin: -1px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
height: 0.25rem;
|
|
|
|
padding: 0;
|
|
|
|
background-color: $ui-secondary-color;
|
|
|
|
border: 0;
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 05:15:24 +09:00
|
|
|
|
|
|
|
.media-gallery,
|
|
|
|
.audio-player,
|
|
|
|
.video-player {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
2022-02-09 09:17:07 +09:00
|
|
|
}
|
|
|
|
|
2017-04-15 20:17:54 +09:00
|
|
|
.loading-bar {
|
2018-04-18 23:52:15 +09:00
|
|
|
background-color: $highlight-text-color;
|
2017-04-15 20:17:54 +09:00
|
|
|
height: 3px;
|
2022-04-29 07:15:27 +09:00
|
|
|
position: fixed;
|
2017-04-15 20:17:54 +09:00
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2019-08-18 21:57:05 +09:00
|
|
|
z-index: 9999;
|
2017-04-15 20:17:54 +09:00
|
|
|
}
|
2017-04-18 08:57:50 +09:00
|
|
|
|
2023-05-02 21:47:04 +09:00
|
|
|
.media-gallery__item__badges {
|
2017-04-18 08:57:50 +09:00
|
|
|
position: absolute;
|
|
|
|
bottom: 6px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 6px;
|
2023-05-02 21:47:04 +09:00
|
|
|
display: flex;
|
|
|
|
gap: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__gifv__label {
|
|
|
|
display: block;
|
|
|
|
color: $white;
|
|
|
|
background: rgba($black, 0.65);
|
2023-06-26 12:27:07 +09:00
|
|
|
backdrop-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
2017-04-18 08:57:50 +09:00
|
|
|
padding: 2px 6px;
|
2023-05-02 21:47:04 +09:00
|
|
|
border-radius: 4px;
|
2017-04-18 08:57:50 +09:00
|
|
|
font-size: 11px;
|
2023-05-02 21:47:04 +09:00
|
|
|
font-weight: 700;
|
2017-04-18 08:57:50 +09:00
|
|
|
z-index: 1;
|
|
|
|
pointer-events: none;
|
2019-05-02 15:34:32 +09:00
|
|
|
line-height: 18px;
|
2017-04-18 08:57:50 +09:00
|
|
|
}
|
|
|
|
|
2017-04-19 22:37:18 +09:00
|
|
|
.attachment-list {
|
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
2017-05-08 22:57:49 +09:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2017-04-19 22:37:18 +09:00
|
|
|
border-radius: 4px;
|
2022-10-26 02:02:21 +09:00
|
|
|
margin-top: 16px;
|
2017-04-19 22:37:18 +09:00
|
|
|
overflow: hidden;
|
|
|
|
|
2018-03-08 12:54:26 +09:00
|
|
|
&__icon {
|
|
|
|
flex: 0 0 auto;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2018-03-08 12:54:26 +09:00
|
|
|
padding: 8px 18px;
|
|
|
|
cursor: default;
|
2023-04-04 23:48:34 +09:00
|
|
|
border-inline-end: 1px solid lighten($ui-base-color, 8%);
|
2018-03-08 12:54:26 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 26px;
|
2017-04-19 22:37:18 +09:00
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-03-08 12:54:26 +09:00
|
|
|
display: block;
|
|
|
|
}
|
2017-04-19 22:37:18 +09:00
|
|
|
}
|
|
|
|
|
2018-03-08 12:54:26 +09:00
|
|
|
&__list {
|
|
|
|
list-style: none;
|
2017-04-19 22:37:18 +09:00
|
|
|
padding: 4px 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 8px;
|
2018-03-08 12:54:26 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2018-03-08 12:54:26 +09:00
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2017-04-19 22:37:18 +09:00
|
|
|
}
|
|
|
|
|
2018-03-08 12:54:26 +09:00
|
|
|
&.compact {
|
|
|
|
border: 0;
|
2017-04-19 22:37:18 +09:00
|
|
|
|
2018-03-08 12:54:26 +09:00
|
|
|
.attachment-list__list {
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $dark-text-color;
|
2017-04-19 22:37:18 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
|
|
|
|
/* Media Gallery */
|
|
|
|
.media-gallery {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 8px;
|
|
|
|
overflow: hidden;
|
2018-02-19 10:39:18 +09:00
|
|
|
border-radius: 4px;
|
2017-04-23 11:26:55 +09:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2020-06-24 00:24:29 +09:00
|
|
|
min-height: 64px;
|
2023-05-02 21:47:04 +09:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 50%;
|
|
|
|
grid-template-rows: 50% 50%;
|
|
|
|
gap: 2px;
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item {
|
2019-06-07 01:51:46 +09:00
|
|
|
border: 0;
|
2017-04-23 11:26:55 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
2018-02-19 10:39:18 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
2017-09-24 12:58:30 +09:00
|
|
|
|
2023-05-02 21:47:04 +09:00
|
|
|
&--tall {
|
|
|
|
grid-row: span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--wide {
|
|
|
|
grid-column: span 2;
|
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail {
|
|
|
|
cursor: zoom-in;
|
2017-06-30 20:40:00 +09:00
|
|
|
display: block;
|
2017-04-23 11:26:55 +09:00
|
|
|
text-decoration: none;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2019-04-27 10:24:09 +09:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2017-06-27 20:46:37 +09:00
|
|
|
|
|
|
|
&,
|
|
|
|
img {
|
2018-03-11 23:12:33 +09:00
|
|
|
height: 100%;
|
2017-06-27 20:46:37 +09:00
|
|
|
width: 100%;
|
2018-02-22 08:35:46 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2017-06-30 20:40:00 +09:00
|
|
|
object-fit: cover;
|
2017-06-27 20:46:37 +09:00
|
|
|
}
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
|
|
|
|
2019-04-27 10:24:09 +09:00
|
|
|
.media-gallery__preview {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2019-04-27 10:24:09 +09:00
|
|
|
z-index: 0;
|
|
|
|
background: $base-overlay-background;
|
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
.media-gallery__gifv {
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-gifv-thumbnail {
|
|
|
|
cursor: zoom-in;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail-label {
|
|
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
}
|
2022-06-02 02:22:35 +09:00
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
/* End Media Gallery */
|
|
|
|
|
2018-11-27 20:25:38 +09:00
|
|
|
.detailed,
|
|
|
|
.fullscreen {
|
|
|
|
.video-player__volume__current,
|
|
|
|
.video-player__volume::before {
|
|
|
|
bottom: 27px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-player__volume__handle {
|
|
|
|
bottom: 23px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-24 05:38:02 +09:00
|
|
|
.audio-player {
|
2020-06-21 09:27:19 +09:00
|
|
|
overflow: hidden;
|
2019-08-24 05:38:02 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding-bottom: 44px;
|
2023-04-30 13:42:22 +09:00
|
|
|
width: 100%;
|
2019-08-24 05:38:02 +09:00
|
|
|
|
|
|
|
&.editable {
|
|
|
|
border-radius: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-08-13 22:39:05 +09:00
|
|
|
&.inactive {
|
|
|
|
audio,
|
|
|
|
.video-player__controls {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:20:14 +09:00
|
|
|
.video-player__volume::before,
|
|
|
|
.video-player__seek::before {
|
2020-07-06 01:28:25 +09:00
|
|
|
background: currentColor;
|
|
|
|
opacity: 0.15;
|
2020-06-23 19:20:14 +09:00
|
|
|
}
|
|
|
|
|
2020-07-06 01:28:25 +09:00
|
|
|
.video-player__seek__buffer {
|
|
|
|
background: currentColor;
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
2020-06-21 09:27:19 +09:00
|
|
|
|
2021-08-12 00:48:55 +09:00
|
|
|
.video-player__buttons button,
|
|
|
|
.video-player__buttons a {
|
2020-07-06 01:28:25 +09:00
|
|
|
color: currentColor;
|
|
|
|
opacity: 0.75;
|
2020-06-21 09:27:19 +09:00
|
|
|
|
2020-07-06 01:28:25 +09:00
|
|
|
&:active,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: currentColor;
|
|
|
|
opacity: 1;
|
2020-06-21 09:27:19 +09:00
|
|
|
}
|
2020-07-06 01:28:25 +09:00
|
|
|
}
|
2020-06-21 09:27:19 +09:00
|
|
|
|
2020-07-06 01:28:25 +09:00
|
|
|
.video-player__time-sep,
|
|
|
|
.video-player__time-total,
|
|
|
|
.video-player__time-current {
|
|
|
|
color: currentColor;
|
2019-08-24 05:38:02 +09:00
|
|
|
}
|
|
|
|
|
2020-06-21 09:27:19 +09:00
|
|
|
.video-player__seek::before,
|
|
|
|
.video-player__seek__buffer,
|
|
|
|
.video-player__seek__progress {
|
|
|
|
top: 0;
|
2019-08-24 05:38:02 +09:00
|
|
|
}
|
|
|
|
|
2020-06-21 09:27:19 +09:00
|
|
|
.video-player__seek__handle {
|
|
|
|
top: -4px;
|
2019-08-24 05:38:02 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.video-player__controls {
|
|
|
|
padding-top: 10px;
|
2020-06-21 09:27:19 +09:00
|
|
|
background: transparent;
|
2019-08-24 05:38:02 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:39:10 +09:00
|
|
|
.video-player {
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
background: $base-shadow-color;
|
2017-09-14 11:03:00 +09:00
|
|
|
max-width: 100%;
|
2017-12-09 08:55:58 +09:00
|
|
|
border-radius: 4px;
|
2019-08-24 05:38:02 +09:00
|
|
|
box-sizing: border-box;
|
2020-06-23 19:20:14 +09:00
|
|
|
color: $white;
|
2023-05-11 00:22:34 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-09-14 10:39:10 +09:00
|
|
|
|
2019-08-14 11:07:32 +09:00
|
|
|
&.editable {
|
|
|
|
border-radius: 0;
|
2019-08-24 05:38:02 +09:00
|
|
|
height: 100% !important;
|
2019-08-14 11:07:32 +09:00
|
|
|
}
|
|
|
|
|
2018-05-13 20:48:14 +09:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:39:10 +09:00
|
|
|
video {
|
2020-06-20 20:30:27 +09:00
|
|
|
display: block;
|
2018-03-27 19:30:28 +09:00
|
|
|
max-width: 100vw;
|
|
|
|
max-height: 80vh;
|
2017-09-14 10:39:10 +09:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.fullscreen {
|
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
video {
|
|
|
|
max-width: 100% !important;
|
|
|
|
max-height: 100% !important;
|
2018-04-24 03:12:16 +09:00
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
2019-10-25 05:47:37 +09:00
|
|
|
outline: 0;
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inline {
|
|
|
|
video {
|
2018-03-02 15:00:04 +09:00
|
|
|
object-fit: contain;
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__controls {
|
|
|
|
position: absolute;
|
2023-04-28 20:12:35 +09:00
|
|
|
direction: ltr;
|
2017-09-14 10:39:10 +09:00
|
|
|
z-index: 2;
|
|
|
|
bottom: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-09-14 10:39:10 +09:00
|
|
|
box-sizing: border-box;
|
2023-02-13 12:57:03 +09:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
rgba($base-shadow-color, 0.85) 0,
|
|
|
|
rgba($base-shadow-color, 0.45) 60%,
|
|
|
|
transparent
|
|
|
|
);
|
2017-12-09 08:55:58 +09:00
|
|
|
padding: 0 15px;
|
2017-09-14 10:39:10 +09:00
|
|
|
opacity: 0;
|
2022-06-02 02:22:35 +09:00
|
|
|
transition: opacity 0.1s ease;
|
2017-09-14 10:39:10 +09:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inactive {
|
|
|
|
video,
|
|
|
|
.video-player__controls {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__spoiler {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2017-09-14 10:39:10 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 4;
|
|
|
|
border: 0;
|
2018-06-10 23:54:22 +09:00
|
|
|
background: $base-overlay-background;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2017-09-14 10:39:10 +09:00
|
|
|
transition: none;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
display: block;
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: lighten($darker-text-color, 7%);
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__subtitle {
|
|
|
|
display: block;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-09 08:55:58 +09:00
|
|
|
&__buttons-bar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2020-10-27 10:58:47 +09:00
|
|
|
padding-bottom: 8px;
|
|
|
|
margin: 0 -5px;
|
2019-10-25 18:48:20 +09:00
|
|
|
|
|
|
|
.video-player__download__icon {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2017-12-09 08:55:58 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
2020-06-23 19:20:14 +09:00
|
|
|
display: flex;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
min-width: 30px;
|
|
|
|
align-items: center;
|
2017-09-14 10:39:10 +09:00
|
|
|
font-size: 16px;
|
2017-12-09 08:55:58 +09:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-09-14 10:39:10 +09:00
|
|
|
|
2020-10-27 10:58:47 +09:00
|
|
|
.player-button {
|
|
|
|
display: inline-block;
|
|
|
|
outline: 0;
|
2020-06-23 19:20:14 +09:00
|
|
|
flex: 0 0 auto;
|
2017-09-14 10:39:10 +09:00
|
|
|
background: transparent;
|
2020-10-27 10:58:47 +09:00
|
|
|
padding: 5px;
|
2017-12-09 08:55:58 +09:00
|
|
|
font-size: 16px;
|
2017-09-14 10:39:10 +09:00
|
|
|
border: 0;
|
2017-12-09 08:55:58 +09:00
|
|
|
color: rgba($white, 0.75);
|
2017-09-14 10:39:10 +09:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2017-12-09 08:55:58 +09:00
|
|
|
color: $white;
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:20:14 +09:00
|
|
|
&__time {
|
|
|
|
display: inline;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-10-27 10:58:47 +09:00
|
|
|
margin: 0 5px;
|
2020-06-23 19:20:14 +09:00
|
|
|
}
|
|
|
|
|
2017-12-09 08:55:58 +09:00
|
|
|
&__time-sep,
|
|
|
|
&__time-total,
|
|
|
|
&__time-current {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-current {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-sep {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-sep,
|
|
|
|
&__time-total {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
2018-11-27 20:25:38 +09:00
|
|
|
&__volume {
|
2020-06-23 19:20:14 +09:00
|
|
|
flex: 0 0 auto;
|
|
|
|
display: inline-flex;
|
2018-11-27 20:25:38 +09:00
|
|
|
cursor: pointer;
|
|
|
|
height: 24px;
|
2020-06-23 19:20:14 +09:00
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: all 100ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
overflow: visible;
|
|
|
|
width: 50px;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 16px;
|
2020-06-23 19:20:14 +09:00
|
|
|
}
|
2018-11-27 20:25:38 +09:00
|
|
|
|
|
|
|
&::before {
|
2023-02-13 12:57:03 +09:00
|
|
|
content: '';
|
2018-11-27 20:25:38 +09:00
|
|
|
width: 50px;
|
|
|
|
background: rgba($white, 0.35);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2020-06-23 19:20:14 +09:00
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2018-11-27 20:25:38 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__current {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
|
|
|
border-radius: 4px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2020-06-23 19:20:14 +09:00
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2018-11-27 20:25:38 +09:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__handle {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2020-06-23 19:20:14 +09:00
|
|
|
top: 50%;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
|
|
|
margin-inline-start: -6px;
|
2020-06-23 19:20:14 +09:00
|
|
|
transform: translate(0, -50%);
|
2018-11-27 20:25:38 +09:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
|
|
|
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
|
2020-06-24 17:25:32 +09:00
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: opacity 100ms linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active &__handle {
|
|
|
|
opacity: 1;
|
2018-11-27 20:25:38 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-03 23:16:30 +09:00
|
|
|
&__link {
|
|
|
|
padding: 2px 10px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $white;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:39:10 +09:00
|
|
|
&__seek {
|
|
|
|
cursor: pointer;
|
|
|
|
height: 24px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
2023-02-13 12:57:03 +09:00
|
|
|
content: '';
|
2017-09-14 10:39:10 +09:00
|
|
|
width: 100%;
|
|
|
|
background: rgba($white, 0.35);
|
2017-12-09 08:55:58 +09:00
|
|
|
border-radius: 4px;
|
2017-09-14 10:39:10 +09:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
2020-10-27 10:58:47 +09:00
|
|
|
top: 14px;
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
|
|
|
|
2017-10-08 09:33:08 +09:00
|
|
|
&__progress,
|
|
|
|
&__buffer {
|
2017-09-14 10:39:10 +09:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
2017-12-09 08:55:58 +09:00
|
|
|
border-radius: 4px;
|
2020-10-27 10:58:47 +09:00
|
|
|
top: 14px;
|
2017-12-09 08:55:58 +09:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
|
|
|
|
2017-10-08 09:33:08 +09:00
|
|
|
&__buffer {
|
|
|
|
background: rgba($white, 0.2);
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:39:10 +09:00
|
|
|
&__handle {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
opacity: 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2020-10-27 10:58:47 +09:00
|
|
|
top: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: -6px;
|
2017-12-09 08:55:58 +09:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
|
|
|
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
|
2020-06-24 17:25:32 +09:00
|
|
|
|
|
|
|
.no-reduce-motion & {
|
2022-06-02 02:22:35 +09:00
|
|
|
transition: opacity 0.1s ease;
|
2020-06-24 17:25:32 +09:00
|
|
|
}
|
2017-09-14 10:39:10 +09:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.video-player__seek__handle {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-09 08:55:58 +09:00
|
|
|
|
|
|
|
&.detailed,
|
|
|
|
&.fullscreen {
|
|
|
|
.video-player__buttons {
|
2020-10-27 10:58:47 +09:00
|
|
|
.player-button {
|
2017-12-09 08:55:58 +09:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-14 10:39:10 +09:00
|
|
|
}
|
|
|
|
|
2020-04-23 22:49:33 +09:00
|
|
|
.gifv {
|
|
|
|
video {
|
|
|
|
max-width: 100vw;
|
|
|
|
max-height: 80vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 19:38:52 +09:00
|
|
|
.scrollable .account-card {
|
|
|
|
margin: 10px;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
2019-08-30 07:14:36 +09:00
|
|
|
|
2022-03-07 19:38:52 +09:00
|
|
|
.scrollable .account-card__title__avatar {
|
|
|
|
img,
|
|
|
|
.account__avatar {
|
|
|
|
border-color: lighten($ui-base-color, 8%);
|
2019-08-30 07:14:36 +09:00
|
|
|
}
|
2022-03-07 19:38:52 +09:00
|
|
|
}
|
2019-08-30 07:14:36 +09:00
|
|
|
|
2022-03-07 19:38:52 +09:00
|
|
|
.scrollable .account-card__bio::after {
|
2023-02-13 12:57:03 +09:00
|
|
|
background: linear-gradient(
|
|
|
|
to left,
|
|
|
|
lighten($ui-base-color, 8%),
|
|
|
|
transparent
|
|
|
|
);
|
2017-04-23 11:26:55 +09:00
|
|
|
}
|
2017-05-20 08:28:25 +09:00
|
|
|
|
|
|
|
.account-gallery__container {
|
2017-09-24 07:33:26 +09:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2019-05-02 15:34:32 +09:00
|
|
|
padding: 4px 2px;
|
2017-05-20 08:28:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-gallery__item {
|
2019-06-07 01:51:46 +09:00
|
|
|
border: 0;
|
2019-05-02 15:34:32 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
2018-03-01 10:48:44 +09:00
|
|
|
position: relative;
|
2019-05-02 15:34:32 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 2px;
|
2019-05-09 01:01:33 +09:00
|
|
|
|
|
|
|
&__icons {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 50%;
|
2019-05-09 01:01:33 +09:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
2017-05-20 08:28:25 +09:00
|
|
|
}
|
|
|
|
|
2018-12-18 05:08:40 +09:00
|
|
|
.notification__filter-bar,
|
2018-03-01 10:48:44 +09:00
|
|
|
.account__section-headline {
|
2018-03-02 12:35:49 +09:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-05-20 08:28:25 +09:00
|
|
|
cursor: default;
|
2018-03-01 10:48:44 +09:00
|
|
|
display: flex;
|
2018-12-19 06:28:09 +09:00
|
|
|
flex-shrink: 0;
|
2017-05-20 08:28:25 +09:00
|
|
|
|
2018-12-18 05:08:40 +09:00
|
|
|
button {
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border: 0;
|
2018-12-19 06:28:09 +09:00
|
|
|
margin: 0;
|
2018-12-18 05:08:40 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
2018-03-01 10:48:44 +09:00
|
|
|
a {
|
2017-05-20 08:28:25 +09:00
|
|
|
display: block;
|
2018-03-02 12:35:49 +09:00
|
|
|
flex: 1 1 auto;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $darker-text-color;
|
2018-03-02 12:35:49 +09:00
|
|
|
padding: 15px 0;
|
2018-03-01 10:48:44 +09:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2018-03-02 12:35:49 +09:00
|
|
|
text-align: center;
|
2018-03-01 10:48:44 +09:00
|
|
|
text-decoration: none;
|
|
|
|
position: relative;
|
2020-01-25 04:50:49 +09:00
|
|
|
width: 100%;
|
2020-01-28 10:21:18 +09:00
|
|
|
white-space: nowrap;
|
2017-05-20 08:28:25 +09:00
|
|
|
|
2018-03-01 10:48:44 +09:00
|
|
|
&.active {
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2018-03-01 10:48:44 +09:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
display: block;
|
2023-02-13 12:57:03 +09:00
|
|
|
content: '';
|
2018-03-01 10:48:44 +09:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
2023-04-12 23:01:49 +09:00
|
|
|
left: 50%;
|
2018-03-01 10:48:44 +09:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 10px 10px;
|
2018-03-02 12:35:49 +09:00
|
|
|
border-color: transparent transparent lighten($ui-base-color, 8%);
|
2018-03-01 10:48:44 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
bottom: -1px;
|
|
|
|
border-color: transparent transparent $ui-base-color;
|
|
|
|
}
|
|
|
|
}
|
2017-05-20 08:28:25 +09:00
|
|
|
}
|
2019-08-30 07:14:36 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.filter-form {
|
|
|
|
background: $ui-base-color;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
padding: 10px 15px;
|
2022-03-07 19:38:52 +09:00
|
|
|
padding-bottom: 0;
|
2019-08-30 07:14:36 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.radio-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-01 20:31:28 +09:00
|
|
|
.column-settings__row .radio-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-08-30 07:14:36 +09:00
|
|
|
.radio-button {
|
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 0;
|
|
|
|
line-height: 18px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2023-02-13 12:57:03 +09:00
|
|
|
input[type='radio'],
|
|
|
|
input[type='checkbox'] {
|
2019-08-30 07:14:36 +09:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid $ui-primary-color;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
flex: 0 0 auto;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2019-08-30 07:14:36 +09:00
|
|
|
top: -1px;
|
|
|
|
border-radius: 50%;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&.checked {
|
2022-06-19 15:18:08 +09:00
|
|
|
border-color: lighten($ui-highlight-color, 4%);
|
|
|
|
background: lighten($ui-highlight-color, 4%);
|
2019-08-30 07:14:36 +09:00
|
|
|
}
|
|
|
|
}
|
2017-05-20 08:28:25 +09:00
|
|
|
}
|
2017-06-08 07:52:56 +09:00
|
|
|
|
2017-07-20 07:20:54 +09:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2017-06-08 07:52:56 +09:00
|
|
|
noscript {
|
|
|
|
text-align: center;
|
|
|
|
|
2017-07-24 03:28:06 +09:00
|
|
|
img {
|
|
|
|
width: 200px;
|
|
|
|
opacity: 0.5;
|
|
|
|
animation: flicker 4s infinite;
|
|
|
|
}
|
|
|
|
|
2017-06-08 07:52:56 +09:00
|
|
|
div {
|
2017-07-24 03:28:06 +09:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 30px auto;
|
2018-04-22 04:35:55 +09:00
|
|
|
color: $secondary-text-color;
|
2017-07-24 03:28:06 +09:00
|
|
|
max-width: 400px;
|
2017-09-02 21:02:15 +09:00
|
|
|
|
|
|
|
a {
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $highlight-text-color;
|
2017-09-02 21:02:15 +09:00
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2017-06-08 07:52:56 +09:00
|
|
|
}
|
|
|
|
}
|
2017-07-21 08:38:24 +09:00
|
|
|
|
2017-07-24 03:28:06 +09:00
|
|
|
@keyframes flicker {
|
2023-02-13 12:57:03 +09:00
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-07-24 03:28:06 +09:00
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 630px) and (height <= 400px) {
|
2017-07-21 08:38:24 +09:00
|
|
|
$duration: 400ms;
|
|
|
|
$delay: 100ms;
|
|
|
|
|
|
|
|
.tabs-bar,
|
|
|
|
.search {
|
|
|
|
will-change: margin-top;
|
|
|
|
transition: margin-top $duration $delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar {
|
|
|
|
will-change: padding-bottom;
|
|
|
|
transition: padding-bottom $duration $delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar {
|
|
|
|
& > a:first-child {
|
2023-03-27 17:56:25 +09:00
|
|
|
will-change: margin-top, margin-inline-start, margin-inline-end, width;
|
2023-02-13 12:57:03 +09:00
|
|
|
transition: margin-top $duration $delay,
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start $duration ($duration + $delay),
|
|
|
|
margin-inline-end $duration ($duration + $delay);
|
2017-07-21 08:38:24 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
& > .navigation-bar__profile-edit {
|
|
|
|
will-change: margin-top;
|
|
|
|
transition: margin-top $duration $delay;
|
|
|
|
}
|
|
|
|
|
2018-06-13 21:44:50 +09:00
|
|
|
.navigation-bar__actions {
|
|
|
|
& > .icon-button.close {
|
|
|
|
will-change: opacity transform;
|
2023-02-13 12:57:03 +09:00
|
|
|
transition: opacity $duration * 0.5 $delay, transform $duration $delay;
|
2018-06-13 21:44:50 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
& > .compose__action-bar .icon-button {
|
|
|
|
will-change: opacity transform;
|
2023-02-13 12:57:03 +09:00
|
|
|
transition: opacity $duration * 0.5 $delay + $duration * 0.5,
|
2022-06-02 02:22:35 +09:00
|
|
|
transform $duration $delay;
|
2018-06-13 21:44:50 +09:00
|
|
|
}
|
2017-07-21 08:38:24 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-composing {
|
|
|
|
.tabs-bar,
|
|
|
|
.search {
|
|
|
|
margin-top: -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar {
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
& > a:first-child {
|
2018-06-17 20:47:56 +09:00
|
|
|
margin: -100px 10px 0 -50px;
|
2017-07-21 08:38:24 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile {
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile-edit {
|
|
|
|
position: absolute;
|
2018-06-17 20:47:56 +09:00
|
|
|
margin-top: -60px;
|
2017-07-21 08:38:24 +09:00
|
|
|
}
|
|
|
|
|
2018-06-13 21:44:50 +09:00
|
|
|
.navigation-bar__actions {
|
|
|
|
.icon-button.close {
|
|
|
|
pointer-events: auto;
|
|
|
|
opacity: 1;
|
2019-06-07 01:51:46 +09:00
|
|
|
transform: scale(1, 1) translate(0, 0);
|
2018-06-17 20:47:56 +09:00
|
|
|
bottom: 5px;
|
2018-06-13 21:44:50 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose__action-bar .icon-button {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
2019-06-07 01:51:46 +09:00
|
|
|
transform: scale(0, 1) translate(100%, 0);
|
2018-06-13 21:44:50 +09:00
|
|
|
}
|
2017-07-21 08:38:24 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-31 10:38:35 +09:00
|
|
|
|
|
|
|
.embed-modal {
|
2019-10-03 10:17:29 +09:00
|
|
|
width: auto;
|
2017-09-05 19:31:24 +09:00
|
|
|
max-width: 80vw;
|
|
|
|
max-height: 80vh;
|
|
|
|
|
2017-08-31 10:38:35 +09:00
|
|
|
h4 {
|
|
|
|
padding: 30px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-09-05 19:31:24 +09:00
|
|
|
.embed-modal__container {
|
|
|
|
padding: 10px;
|
2017-08-31 10:38:35 +09:00
|
|
|
|
2017-09-05 19:31:24 +09:00
|
|
|
.hint {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2017-08-31 10:38:35 +09:00
|
|
|
|
2017-09-05 19:31:24 +09:00
|
|
|
.embed-modal__html {
|
|
|
|
outline: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2019-06-07 01:51:46 +09:00
|
|
|
border: 0;
|
2017-09-05 19:31:24 +09:00
|
|
|
padding: 10px;
|
2018-09-24 03:41:24 +09:00
|
|
|
font-family: $font-monospace, monospace;
|
2017-09-05 19:31:24 +09:00
|
|
|
background: $ui-base-color;
|
2018-04-18 23:52:15 +09:00
|
|
|
color: $primary-text-color;
|
2017-09-05 19:31:24 +09:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 15px;
|
2019-10-03 10:17:29 +09:00
|
|
|
border-radius: 4px;
|
2017-09-05 19:31:24 +09:00
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 600px) {
|
2017-09-05 19:31:24 +09:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.embed-modal__iframe {
|
|
|
|
width: 400px;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
border: 0;
|
2019-10-03 10:17:29 +09:00
|
|
|
border-radius: 4px;
|
2017-09-05 19:31:24 +09:00
|
|
|
}
|
|
|
|
}
|
2017-08-31 10:38:35 +09:00
|
|
|
}
|
2017-11-19 03:39:02 +09:00
|
|
|
|
2022-12-16 02:50:11 +09:00
|
|
|
.moved-account-banner,
|
2023-04-12 21:50:02 +09:00
|
|
|
.follow-request-banner,
|
|
|
|
.account-memorial-banner {
|
2022-11-06 05:11:24 +09:00
|
|
|
padding: 20px;
|
2017-11-19 03:39:02 +09:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2022-11-06 05:11:24 +09:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2017-11-19 03:39:02 +09:00
|
|
|
|
|
|
|
&__message {
|
2022-11-06 05:11:24 +09:00
|
|
|
color: $darker-text-color;
|
2017-11-19 03:39:02 +09:00
|
|
|
padding: 8px 0;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
font-size: 14px;
|
2022-11-06 05:11:24 +09:00
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 16px;
|
2017-11-19 03:39:02 +09:00
|
|
|
}
|
|
|
|
|
2022-11-06 05:11:24 +09:00
|
|
|
&__action {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
gap: 15px;
|
2022-12-16 02:50:11 +09:00
|
|
|
width: 100%;
|
2017-11-19 03:39:02 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-name {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-12-06 07:02:27 +09:00
|
|
|
|
2022-12-16 02:50:11 +09:00
|
|
|
.follow-request-banner .button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-04-12 21:50:02 +09:00
|
|
|
.account-memorial-banner__message {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-12-06 07:02:27 +09:00
|
|
|
.column-inline-form {
|
2019-06-08 17:23:41 +09:00
|
|
|
padding: 15px;
|
2017-12-06 07:02:27 +09:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2022-11-06 07:06:32 +09:00
|
|
|
gap: 15px;
|
2017-12-06 07:02:27 +09:00
|
|
|
align-items: center;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
label {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__backdrop {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2017-12-06 07:02:27 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-editor {
|
|
|
|
background: $ui-base-color;
|
|
|
|
flex-direction: column;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
2017-12-07 03:48:48 +09:00
|
|
|
width: 380px;
|
2017-12-06 07:02:27 +09:00
|
|
|
overflow: hidden;
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 420px) {
|
2017-12-07 03:48:48 +09:00
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2017-12-06 07:02:27 +09:00
|
|
|
h4 {
|
|
|
|
padding: 15px 0;
|
|
|
|
background: lighten($ui-base-color, 13%);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 8px 8px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__pager {
|
|
|
|
height: 50vh;
|
2023-04-04 18:41:05 +09:00
|
|
|
border-radius: 4px;
|
2017-12-06 07:02:27 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__inner {
|
|
|
|
border-radius: 0 0 8px 8px;
|
|
|
|
|
|
|
|
&.backdrop {
|
|
|
|
width: calc(100% - 60px);
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
border-radius: 0 0 0 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__accounts {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__display-name {
|
|
|
|
&:hover strong {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-02-22 08:35:46 +09:00
|
|
|
|
2018-11-06 02:52:38 +09:00
|
|
|
.list-adder {
|
|
|
|
background: $ui-base-color;
|
|
|
|
flex-direction: column;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
width: 380px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 420px) {
|
2018-11-06 02:52:38 +09:00
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__account {
|
|
|
|
background: lighten($ui-base-color, 13%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__lists {
|
|
|
|
background: lighten($ui-base-color, 13%);
|
|
|
|
height: 50vh;
|
|
|
|
border-radius: 0 0 8px 8px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
padding: 10px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list__wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list__display-name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-22 08:35:46 +09:00
|
|
|
.focal-point {
|
|
|
|
position: relative;
|
2019-08-14 11:07:32 +09:00
|
|
|
cursor: move;
|
2018-02-22 08:35:46 +09:00
|
|
|
overflow: hidden;
|
2019-08-16 03:28:56 +09:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background: $base-shadow-color;
|
2018-02-22 08:35:46 +09:00
|
|
|
|
2019-08-14 11:07:32 +09:00
|
|
|
img,
|
2019-10-10 12:21:38 +09:00
|
|
|
video,
|
|
|
|
canvas {
|
2019-08-14 11:07:32 +09:00
|
|
|
display: block;
|
2018-03-11 23:12:33 +09:00
|
|
|
max-height: 80vh;
|
2019-08-14 11:07:32 +09:00
|
|
|
width: 100%;
|
2018-03-11 23:12:33 +09:00
|
|
|
height: auto;
|
2019-08-14 11:07:32 +09:00
|
|
|
margin: 0;
|
|
|
|
object-fit: contain;
|
|
|
|
background: $base-shadow-color;
|
2018-03-11 23:12:33 +09:00
|
|
|
}
|
|
|
|
|
2018-02-22 08:35:46 +09:00
|
|
|
&__reticle {
|
|
|
|
position: absolute;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
background: url('../images/reticle.png') no-repeat 0 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-shadow: 0 0 0 9999em rgba($base-shadow-color, 0.35);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__overlay {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2018-02-22 08:35:46 +09:00
|
|
|
}
|
2019-08-14 11:07:32 +09:00
|
|
|
|
|
|
|
&__preview {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px;
|
2019-08-14 11:07:32 +09:00
|
|
|
z-index: 2;
|
2019-08-16 05:47:51 +09:00
|
|
|
cursor: move;
|
|
|
|
transition: opacity 0.1s ease;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2019-08-14 11:07:32 +09:00
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 0 14px rgba($base-shadow-color, 0.2);
|
|
|
|
}
|
|
|
|
}
|
2019-08-16 03:28:56 +09:00
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 480px) {
|
2019-08-16 03:28:56 +09:00
|
|
|
img,
|
|
|
|
video {
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__preview {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-02-22 08:35:46 +09:00
|
|
|
}
|
2018-03-02 15:12:40 +09:00
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
.account__header__content {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: normal;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2018-05-07 16:31:07 +09:00
|
|
|
}
|
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
.account__header {
|
2018-04-14 19:41:08 +09:00
|
|
|
overflow: hidden;
|
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
&.inactive {
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
.account__header__image,
|
|
|
|
.account__avatar {
|
|
|
|
filter: grayscale(100%);
|
|
|
|
}
|
2018-04-14 19:41:08 +09:00
|
|
|
}
|
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
&__info {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 10px;
|
2018-04-14 19:41:08 +09:00
|
|
|
}
|
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
&__image {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 145px;
|
|
|
|
position: relative;
|
2018-04-14 19:41:08 +09:00
|
|
|
background: darken($ui-base-color, 4%);
|
2023-06-26 12:27:07 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2019-03-26 08:36:25 +09:00
|
|
|
|
|
|
|
img {
|
|
|
|
object-fit: cover;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-04-14 19:41:08 +09:00
|
|
|
}
|
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
&__bar {
|
|
|
|
position: relative;
|
2022-10-26 02:02:21 +09:00
|
|
|
padding: 0 20px;
|
2023-06-26 12:27:07 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2019-03-26 08:36:25 +09:00
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
flex: 0 0 auto;
|
2019-03-27 07:05:21 +09:00
|
|
|
width: 94px;
|
2018-09-18 23:45:58 +09:00
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
.account__avatar {
|
2019-03-30 09:13:19 +09:00
|
|
|
background: darken($ui-base-color, 8%);
|
2023-06-26 12:27:07 +09:00
|
|
|
border: 2px solid $ui-base-color;
|
2019-03-26 08:36:25 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__tabs {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
2022-11-14 14:05:10 +09:00
|
|
|
justify-content: space-between;
|
2019-03-26 08:36:25 +09:00
|
|
|
margin-top: -55px;
|
2022-10-26 02:02:21 +09:00
|
|
|
padding-top: 10px;
|
2022-11-14 14:05:10 +09:00
|
|
|
gap: 8px;
|
|
|
|
overflow: hidden;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: -2px; // aligns the pfp with content below
|
2019-03-26 08:36:25 +09:00
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-10-23 22:58:24 +09:00
|
|
|
gap: 8px;
|
2019-03-26 08:36:25 +09:00
|
|
|
padding-top: 55px;
|
2019-03-27 07:05:21 +09:00
|
|
|
overflow: hidden;
|
2019-03-26 08:36:25 +09:00
|
|
|
|
2022-11-14 14:05:10 +09:00
|
|
|
.button {
|
|
|
|
flex-shrink: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 08:36:25 +09:00
|
|
|
.icon-button {
|
|
|
|
border: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: content-box;
|
|
|
|
padding: 2px;
|
2019-03-27 07:05:21 +09:00
|
|
|
}
|
2019-03-26 08:36:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
2022-10-26 02:02:21 +09:00
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
2019-03-26 08:36:25 +09:00
|
|
|
|
|
|
|
.account-role {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2022-10-26 02:02:21 +09:00
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
2019-03-26 08:36:25 +09:00
|
|
|
color: $primary-text-color;
|
2022-10-26 02:02:21 +09:00
|
|
|
font-weight: 700;
|
2019-03-26 08:36:25 +09:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
2022-10-26 02:02:21 +09:00
|
|
|
font-size: 15px;
|
2019-03-26 08:36:25 +09:00
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2022-12-14 03:43:03 +09:00
|
|
|
|
|
|
|
span {
|
|
|
|
user-select: all;
|
|
|
|
}
|
2019-03-26 08:36:25 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bio {
|
|
|
|
.account__header__content {
|
|
|
|
color: $primary-text-color;
|
2022-10-26 02:02:21 +09:00
|
|
|
}
|
2020-07-07 08:24:03 +09:00
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
.account__header__fields {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 16px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
dl {
|
|
|
|
display: block;
|
|
|
|
padding: 11px 16px;
|
|
|
|
border-bottom-color: lighten($ui-base-color, 4%);
|
2020-07-07 08:24:03 +09:00
|
|
|
}
|
2019-03-26 08:36:25 +09:00
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
dd,
|
|
|
|
dt {
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
padding: 0;
|
|
|
|
text-align: initial;
|
|
|
|
}
|
2021-05-07 21:33:19 +09:00
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
dt {
|
|
|
|
width: auto;
|
|
|
|
background: transparent;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $dark-text-color;
|
2021-05-07 21:33:19 +09:00
|
|
|
}
|
|
|
|
|
2022-10-26 02:02:21 +09:00
|
|
|
dd {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
2019-03-26 08:36:25 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
|
2022-11-04 10:28:00 +09:00
|
|
|
.verified {
|
|
|
|
border: 1px solid rgba($valid-value-color, 0.5);
|
2022-12-07 07:54:02 +09:00
|
|
|
margin-top: -1px;
|
2022-11-04 10:28:00 +09:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
2022-12-07 07:54:02 +09:00
|
|
|
margin-top: 0;
|
2022-11-04 10:28:00 +09:00
|
|
|
}
|
2019-03-26 08:36:25 +09:00
|
|
|
|
2022-11-04 10:28:00 +09:00
|
|
|
&:last-child {
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt,
|
|
|
|
dd {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
2019-03-26 08:36:25 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__extra {
|
2022-10-26 02:02:21 +09:00
|
|
|
margin-top: 16px;
|
2019-03-26 08:36:25 +09:00
|
|
|
|
|
|
|
&__links {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
2022-10-26 02:02:21 +09:00
|
|
|
margin: 0 -10px;
|
|
|
|
padding-top: 16px;
|
|
|
|
padding-bottom: 10px;
|
2019-03-26 08:36:25 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
2019-12-30 00:59:25 +09:00
|
|
|
padding: 5px 10px;
|
2019-03-26 08:36:25 +09:00
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2018-09-18 23:45:58 +09:00
|
|
|
}
|
2018-04-14 19:41:08 +09:00
|
|
|
}
|
2020-07-01 02:19:50 +09:00
|
|
|
|
|
|
|
&__account-note {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
2022-10-26 02:02:21 +09:00
|
|
|
margin-bottom: 10px;
|
2020-07-01 02:19:50 +09:00
|
|
|
|
2020-07-07 08:24:03 +09:00
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
2020-07-01 02:19:50 +09:00
|
|
|
font-weight: 500;
|
2020-07-07 08:24:03 +09:00
|
|
|
color: $darker-text-color;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 5px;
|
2020-07-01 02:19:50 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
2020-07-07 08:24:03 +09:00
|
|
|
width: calc(100% + 20px);
|
|
|
|
color: $secondary-text-color;
|
|
|
|
background: transparent;
|
2020-07-01 02:19:50 +09:00
|
|
|
padding: 10px;
|
2020-07-07 08:24:03 +09:00
|
|
|
margin: 0 -10px;
|
2020-07-01 02:19:50 +09:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
resize: none;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
border-radius: 4px;
|
2020-07-07 08:24:03 +09:00
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: $ui-base-color;
|
|
|
|
}
|
2020-07-01 02:19:50 +09:00
|
|
|
}
|
|
|
|
}
|
2018-04-14 19:41:08 +09:00
|
|
|
}
|
2018-05-28 04:45:30 +09:00
|
|
|
|
2023-06-01 21:47:55 +09:00
|
|
|
.account__contents {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__details {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
column-gap: 1em;
|
|
|
|
}
|
|
|
|
|
2023-03-25 16:46:32 +09:00
|
|
|
.verified-badge {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
color: $valid-value-color;
|
|
|
|
gap: 4px;
|
2023-04-24 05:24:53 +09:00
|
|
|
overflow: hidden;
|
2023-06-01 21:47:55 +09:00
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2023-03-25 16:46:32 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-28 04:45:30 +09:00
|
|
|
.trends {
|
|
|
|
&__header {
|
|
|
|
color: $dark-text-color;
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
border-bottom: 1px solid darken($ui-base-color, 4%);
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 15px;
|
|
|
|
font-size: 16px;
|
|
|
|
cursor: default;
|
|
|
|
|
2018-09-28 09:11:14 +09:00
|
|
|
.fa {
|
2018-05-28 04:45:30 +09:00
|
|
|
display: inline-block;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 5px;
|
2018-05-28 04:45:30 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 15px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2022-10-28 19:56:51 +09:00
|
|
|
gap: 15px;
|
2018-05-28 04:45:30 +09:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
color: $dark-text-color;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
2018-05-29 02:12:53 +09:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-05-28 04:45:30 +09:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__current {
|
2018-05-29 02:12:53 +09:00
|
|
|
flex: 0 0 auto;
|
2018-05-28 04:45:30 +09:00
|
|
|
font-size: 24px;
|
|
|
|
font-weight: 500;
|
2023-03-27 17:56:25 +09:00
|
|
|
text-align: end;
|
2018-05-28 04:45:30 +09:00
|
|
|
color: $secondary-text-color;
|
2022-07-22 10:17:41 +09:00
|
|
|
text-decoration: none;
|
2018-05-28 04:45:30 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__sparkline {
|
2018-05-29 02:12:53 +09:00
|
|
|
flex: 0 0 auto;
|
2018-05-28 04:45:30 +09:00
|
|
|
width: 50px;
|
|
|
|
|
2019-08-07 00:57:52 +09:00
|
|
|
path:first-child {
|
|
|
|
fill: rgba($highlight-text-color, 0.25) !important;
|
2023-01-04 21:13:57 +09:00
|
|
|
fill-opacity: 1 !important;
|
2019-08-07 00:57:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
path:last-child {
|
2018-05-28 04:45:30 +09:00
|
|
|
stroke: lighten($highlight-text-color, 6%) !important;
|
2020-05-14 16:01:23 +09:00
|
|
|
fill: none !important;
|
2018-05-28 04:45:30 +09:00
|
|
|
}
|
|
|
|
}
|
2021-10-15 03:44:59 +09:00
|
|
|
|
|
|
|
&--requires-review {
|
|
|
|
.trends__item__name {
|
|
|
|
color: $gold-star;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__current {
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__sparkline {
|
|
|
|
path:first-child {
|
|
|
|
fill: rgba($gold-star, 0.25) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
path:last-child {
|
|
|
|
stroke: lighten($gold-star, 6%) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--disabled {
|
|
|
|
.trends__item__name {
|
|
|
|
color: lighten($ui-base-color, 12%);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: lighten($ui-base-color, 12%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__current {
|
|
|
|
color: lighten($ui-base-color, 12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__sparkline {
|
|
|
|
path:first-child {
|
|
|
|
fill: rgba(lighten($ui-base-color, 12%), 0.25) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
path:last-child {
|
|
|
|
stroke: lighten(lighten($ui-base-color, 12%), 6%) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--compact &__item {
|
|
|
|
padding: 10px;
|
2018-05-28 04:45:30 +09:00
|
|
|
}
|
|
|
|
}
|
2019-05-23 08:35:22 +09:00
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
.conversation {
|
2019-05-23 08:35:22 +09:00
|
|
|
display: flex;
|
2019-09-22 03:01:16 +09:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2019-05-23 08:35:22 +09:00
|
|
|
padding: 5px;
|
2019-09-22 03:01:16 +09:00
|
|
|
padding-bottom: 0;
|
2019-05-23 08:35:22 +09:00
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
outline: 0;
|
|
|
|
}
|
2019-05-23 08:35:22 +09:00
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
&__avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 12px;
|
2019-12-01 15:06:20 +09:00
|
|
|
position: relative;
|
2020-04-01 02:40:23 +09:00
|
|
|
cursor: pointer;
|
2019-12-01 15:06:20 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__unread {
|
|
|
|
display: inline-block;
|
|
|
|
background: $highlight-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
2022-06-02 02:22:35 +09:00
|
|
|
margin: -0.1ex 0.15em 0.1ex;
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 10px 5px;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 15px;
|
2019-09-27 09:14:49 +09:00
|
|
|
overflow: hidden;
|
2019-05-23 08:35:22 +09:00
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
&__info {
|
|
|
|
overflow: hidden;
|
2019-09-27 09:14:49 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
justify-content: space-between;
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
&__relative-time {
|
|
|
|
font-size: 15px;
|
|
|
|
color: $darker-text-color;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 15px;
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
|
|
|
|
2019-09-22 03:01:16 +09:00
|
|
|
&__names {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin-bottom: 4px;
|
2019-10-01 00:12:33 +09:00
|
|
|
flex-basis: 90px;
|
|
|
|
flex-grow: 1;
|
2019-09-22 03:01:16 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-02 07:39:56 +09:00
|
|
|
|
|
|
|
a {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
2019-12-01 15:06:20 +09:00
|
|
|
|
|
|
|
&--unread {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.conversation__content__info {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conversation__content__relative-time {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2019-05-23 08:35:22 +09:00
|
|
|
}
|
2020-01-24 06:00:13 +09:00
|
|
|
|
|
|
|
.announcements {
|
2020-01-26 00:35:33 +09:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2020-01-24 06:00:13 +09:00
|
|
|
font-size: 13px;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
|
|
|
|
&__mastodon {
|
|
|
|
width: 124px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
@media screen and (max-width: 124px + 300px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
width: calc(100% - 124px);
|
|
|
|
flex: 0 0 auto;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
@media screen and (max-width: 124px + 300px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px;
|
|
|
|
position: relative;
|
2020-01-25 12:20:06 +09:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-weight: 400;
|
2020-03-06 23:20:14 +09:00
|
|
|
max-height: 50vh;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-01-24 06:00:13 +09:00
|
|
|
|
|
|
|
&__range {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-end: 18px;
|
2020-01-24 06:00:13 +09:00
|
|
|
}
|
2020-02-03 09:53:09 +09:00
|
|
|
|
|
|
|
&__unread {
|
|
|
|
position: absolute;
|
2020-02-09 07:44:01 +09:00
|
|
|
top: 19px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 19px;
|
2020-02-09 07:44:01 +09:00
|
|
|
display: block;
|
2020-02-03 09:53:09 +09:00
|
|
|
background: $highlight-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
}
|
2020-01-24 06:00:13 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__pagination {
|
|
|
|
padding: 15px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 3px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 0;
|
2020-01-24 06:00:13 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-multiple-columns .announcements__mastodon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-multiple-columns .announcements__container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reactions-bar {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 15px;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: -2px;
|
2020-01-24 06:00:13 +09:00
|
|
|
width: calc(100% - (90px - 33px));
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
flex-shrink: 0;
|
|
|
|
background: lighten($ui-base-color, 12%);
|
|
|
|
border: 0;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
padding: 0 6px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
|
|
|
|
&__emoji {
|
|
|
|
display: block;
|
|
|
|
margin: 3px 0;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
min-width: auto;
|
|
|
|
min-height: auto;
|
|
|
|
vertical-align: bottom;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__count {
|
|
|
|
display: block;
|
|
|
|
min-width: 9px;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 6px;
|
2020-01-24 06:00:13 +09:00
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 16%);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
|
|
|
|
&__count {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2023-02-13 12:57:03 +09:00
|
|
|
background-color: mix(
|
|
|
|
lighten($ui-base-color, 12%),
|
|
|
|
$ui-highlight-color,
|
|
|
|
80%
|
|
|
|
);
|
2020-01-24 06:00:13 +09:00
|
|
|
|
|
|
|
.reactions-bar__item__count {
|
2020-01-25 13:23:05 +09:00
|
|
|
color: lighten($highlight-text-color, 8%);
|
2020-01-24 06:00:13 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-picker-dropdown {
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .emoji-button {
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-button {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 16px;
|
|
|
|
width: auto;
|
|
|
|
flex-shrink: 0;
|
|
|
|
padding: 0 6px;
|
|
|
|
height: 22px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
opacity: 1;
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--empty {
|
|
|
|
.emoji-button {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-27 03:57:07 +09:00
|
|
|
|
|
|
|
.notification,
|
|
|
|
.status__wrapper {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&.unread {
|
|
|
|
&::before {
|
2023-02-13 12:57:03 +09:00
|
|
|
content: '';
|
2020-09-27 03:57:07 +09:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2020-09-27 03:57:07 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-04-04 23:48:34 +09:00
|
|
|
border-inline-start: 4px solid $highlight-text-color;
|
2020-09-27 03:57:07 +09:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 20:29:43 +09:00
|
|
|
|
|
|
|
.picture-in-picture {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 20px;
|
2020-09-28 20:29:43 +09:00
|
|
|
width: 300px;
|
|
|
|
|
|
|
|
&__footer {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 12px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 10px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
&__account {
|
|
|
|
display: flex;
|
|
|
|
text-decoration: none;
|
2021-07-06 02:16:06 +09:00
|
|
|
overflow: hidden;
|
2020-09-28 20:29:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-end: 10px;
|
2020-09-28 20:29:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
strong,
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.picture-in-picture-placeholder {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 2px dashed lighten($ui-base-color, 8%);
|
|
|
|
background: $base-shadow-color;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
cursor: pointer;
|
|
|
|
color: $darker-text-color;
|
2023-05-02 20:58:48 +09:00
|
|
|
aspect-ratio: 16 / 9;
|
2020-09-28 20:29:43 +09:00
|
|
|
|
|
|
|
i {
|
|
|
|
display: block;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-color: lighten($ui-base-color, 12%);
|
|
|
|
}
|
|
|
|
}
|
2020-10-15 23:24:47 +09:00
|
|
|
|
|
|
|
.notifications-permission-banner {
|
|
|
|
padding: 30px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-11-11 13:36:29 +09:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__close {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px;
|
2020-11-11 13:36:29 +09:00
|
|
|
}
|
2020-10-15 23:24:47 +09:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2022-02-25 08:34:33 +09:00
|
|
|
|
|
|
|
.explore__search-header {
|
2022-10-05 03:13:23 +09:00
|
|
|
background: darken($ui-base-color, 4%);
|
2022-02-25 08:34:33 +09:00
|
|
|
justify-content: center;
|
2022-10-05 03:13:23 +09:00
|
|
|
align-items: center;
|
2022-02-25 08:34:33 +09:00
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
.search {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search__input {
|
2022-10-05 03:13:23 +09:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2022-02-25 08:34:33 +09:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2023-04-01 16:59:10 +09:00
|
|
|
.search__popout {
|
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2022-02-25 08:34:33 +09:00
|
|
|
.search .fa {
|
|
|
|
top: 10px;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-end: 10px;
|
2022-02-25 08:34:33 +09:00
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search .fa-times-circle {
|
|
|
|
top: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.explore__search-results {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.story {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 15px 0;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
background-color: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__details {
|
|
|
|
padding: 0 15px;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
&__publisher {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__shared {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__thumbnail {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin: 0 15px;
|
|
|
|
position: relative;
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
|
|
|
|
.skeleton {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
border-radius: 4px;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__preview {
|
|
|
|
border-radius: 4px;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: fill;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2022-02-25 08:34:33 +09:00
|
|
|
z-index: 0;
|
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-05 10:47:56 +09:00
|
|
|
|
|
|
|
.server-banner {
|
|
|
|
padding: 20px 0;
|
|
|
|
|
|
|
|
&__introduction {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__hero {
|
|
|
|
display: block;
|
|
|
|
border-radius: 4px;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
aspect-ratio: 1.9;
|
|
|
|
border: 0;
|
|
|
|
background: $ui-base-color;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: calc(50% - 5px);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__number {
|
|
|
|
font-weight: 600;
|
|
|
|
color: $primary-text-color;
|
2022-10-05 14:02:09 +09:00
|
|
|
font-size: 14px;
|
2022-10-05 10:47:56 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__number-label {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 500;
|
2022-10-05 14:02:09 +09:00
|
|
|
font-size: 14px;
|
2022-10-05 10:47:56 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar-wrapper {
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 0;
|
2022-10-05 10:47:56 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
}
|
2022-10-07 17:14:31 +09:00
|
|
|
|
|
|
|
.interaction-modal {
|
|
|
|
max-width: 90vw;
|
|
|
|
width: 600px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-radius: 8px;
|
2022-12-07 08:40:37 +09:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2022-10-07 17:14:31 +09:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 22px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__lead {
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__choices {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&__choice {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 50%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
|
|
|
&__choices {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&__choice {
|
|
|
|
width: auto;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.copypaste {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
input {
|
|
|
|
display: block;
|
|
|
|
font-family: inherit;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
border: 1px solid $highlight-text-color;
|
|
|
|
color: $darker-text-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 6px 9px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-size: 14px;
|
|
|
|
transition: border-color 300ms linear;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
transition: background 300ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
input {
|
|
|
|
border: 1px solid $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
|
|
|
.privacy-policy {
|
|
|
|
background: $ui-base-color;
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
margin-top: 20px;
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
.prose {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
p,
|
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
margin-top: 1.25em;
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
img {
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 2em;
|
2023-03-21 04:04:25 +09:00
|
|
|
max-width: 100%;
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
video {
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 2em;
|
2023-03-21 04:04:25 +09:00
|
|
|
max-width: 100%;
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
figure {
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
|
|
|
figcaption {
|
|
|
|
font-size: 0.875em;
|
|
|
|
line-height: 1.4285714;
|
|
|
|
margin-top: 0.8571429em;
|
2022-10-08 13:01:11 +09:00
|
|
|
}
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
figure > * {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
h1 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
line-height: 1.33;
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
h2 {
|
|
|
|
font-size: 1.25em;
|
|
|
|
margin-top: 1.6em;
|
|
|
|
margin-bottom: 0.6em;
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
margin-top: 1.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
ol {
|
|
|
|
counter-reset: list-counter;
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
li {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
ol > li {
|
|
|
|
counter-increment: list-counter;
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
&::before {
|
2023-02-13 12:57:03 +09:00
|
|
|
content: counter(list-counter) '.';
|
2022-10-13 21:42:37 +09:00
|
|
|
position: absolute;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2022-10-08 13:01:11 +09:00
|
|
|
}
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
ul > li::before {
|
2023-02-13 12:57:03 +09:00
|
|
|
content: '';
|
2022-10-13 21:42:37 +09:00
|
|
|
position: absolute;
|
|
|
|
background-color: $darker-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.375em;
|
|
|
|
height: 0.375em;
|
|
|
|
top: 0.5em;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0.25em;
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
ul > li,
|
|
|
|
ol > li {
|
|
|
|
position: relative;
|
2023-03-27 17:56:25 +09:00
|
|
|
padding-inline-start: 1.75em;
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
& > ul > li p {
|
|
|
|
margin-top: 0.75em;
|
|
|
|
margin-bottom: 0.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ul > li > *:first-child {
|
|
|
|
margin-top: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ul > li > *:last-child {
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ol > li > *:first-child {
|
|
|
|
margin-top: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ol > li > *:last-child {
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul ul,
|
|
|
|
ul ol,
|
|
|
|
ol ul,
|
|
|
|
ol ol {
|
|
|
|
margin-top: 0.75em;
|
|
|
|
margin-bottom: 0.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
strong,
|
|
|
|
b {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
em,
|
|
|
|
i {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
2022-10-08 13:01:11 +09:00
|
|
|
}
|
|
|
|
}
|
2022-10-13 21:42:37 +09:00
|
|
|
|
|
|
|
code {
|
|
|
|
font-size: 0.875em;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0.2em 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 0;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
margin-top: 3em;
|
|
|
|
margin-bottom: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 + *,
|
|
|
|
h5 + *,
|
|
|
|
h6 + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > :first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > :last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-10-08 13:01:11 +09:00
|
|
|
}
|
2022-10-09 13:08:37 +09:00
|
|
|
|
|
|
|
.dismissable-banner {
|
2023-06-23 06:48:40 +09:00
|
|
|
position: relative;
|
|
|
|
margin: 10px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 1px solid $highlight-text-color;
|
|
|
|
background: rgba($highlight-text-color, 0.15);
|
|
|
|
padding-inline-end: 45px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__background-image {
|
|
|
|
width: 125%;
|
|
|
|
position: absolute;
|
|
|
|
bottom: -25%;
|
|
|
|
inset-inline-end: -25%;
|
|
|
|
z-index: -1;
|
|
|
|
opacity: 0.15;
|
|
|
|
mix-blend-mode: luminosity;
|
|
|
|
}
|
2022-10-09 13:08:37 +09:00
|
|
|
|
|
|
|
&__message {
|
|
|
|
flex: 1 1 auto;
|
2023-06-23 06:48:40 +09:00
|
|
|
padding: 15px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-weight: 500;
|
2022-10-09 13:08:37 +09:00
|
|
|
color: $primary-text-color;
|
2023-06-23 06:48:40 +09:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
font-size: 22px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
display: flex;
|
2023-06-26 19:31:48 +09:00
|
|
|
flex-wrap: wrap;
|
2023-06-23 06:48:40 +09:00
|
|
|
gap: 4px;
|
2023-06-26 19:31:48 +09:00
|
|
|
|
|
|
|
&__wrapper {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: block;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2023-06-23 06:48:40 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-tertiary {
|
|
|
|
background: rgba($ui-base-color, 0.15);
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
}
|
2022-10-09 13:08:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&__action {
|
2023-06-23 06:48:40 +09:00
|
|
|
position: absolute;
|
|
|
|
inset-inline-end: 0;
|
|
|
|
top: 0;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
2022-10-09 13:08:37 +09:00
|
|
|
}
|
|
|
|
}
|
2022-10-13 21:42:37 +09:00
|
|
|
|
|
|
|
.image {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__preview {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 17:56:25 +09:00
|
|
|
inset-inline-start: 0;
|
2022-10-13 21:42:37 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.loaded &__preview {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.loaded img {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-31 21:06:17 +09:00
|
|
|
.link-footer {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
|
|
|
z-index: 1;
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $dark-text-color;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $dark-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
.about {
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2022-10-31 21:06:17 +09:00
|
|
|
&__footer {
|
|
|
|
color: $dark-text-color;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2022-10-13 21:42:37 +09:00
|
|
|
&__header {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&__hero {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
aspect-ratio: 1.9;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 50%;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
width: 0;
|
|
|
|
border: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: lighten($ui-base-color, 8%);
|
|
|
|
border-left-width: 1px;
|
|
|
|
min-height: calc(100% - 60px);
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 15px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:23:57 +09:00
|
|
|
@media screen and (width <= 600px) {
|
2022-10-13 21:42:37 +09:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
min-height: 0;
|
|
|
|
width: 100%;
|
|
|
|
border-left-width: 0;
|
|
|
|
border-top-width: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-multiple-columns & {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
min-height: 0;
|
|
|
|
width: 100%;
|
|
|
|
border-left-width: 0;
|
|
|
|
border-top-width: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__mail {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-31 21:06:17 +09:00
|
|
|
.link-footer {
|
2022-10-13 21:42:37 +09:00
|
|
|
padding: 0;
|
|
|
|
margin-top: 60px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar-wrapper {
|
2023-03-27 17:56:25 +09:00
|
|
|
margin-inline-start: 0;
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__relationship {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__section {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 22px;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
color: $highlight-text-color;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active &__title {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
border: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
border-top: 0;
|
|
|
|
padding: 20px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__domain-blocks {
|
|
|
|
margin-top: 30px;
|
2022-11-11 16:26:58 +09:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
2022-10-13 21:42:37 +09:00
|
|
|
|
2022-11-11 16:26:58 +09:00
|
|
|
&__domain {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 15px;
|
2022-10-13 21:42:37 +09:00
|
|
|
color: $darker-text-color;
|
|
|
|
|
2022-11-11 16:26:58 +09:00
|
|
|
&:nth-child(2n) {
|
|
|
|
background: darken($ui-base-color, 2%);
|
|
|
|
}
|
2022-10-13 21:42:37 +09:00
|
|
|
|
2022-11-11 16:26:58 +09:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2022-10-13 21:42:37 +09:00
|
|
|
|
2022-11-11 16:26:58 +09:00
|
|
|
h6 {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: inherit;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-10-13 21:42:37 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-09 03:01:08 +09:00
|
|
|
|
|
|
|
.notification-list {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 2rem;
|
|
|
|
inset-inline-start: 0;
|
|
|
|
z-index: 999;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
position: relative;
|
|
|
|
inset-inline-start: -100%;
|
|
|
|
width: auto;
|
|
|
|
padding: 15px;
|
|
|
|
margin: 0;
|
2023-07-12 06:30:21 +09:00
|
|
|
color: $white;
|
2023-07-09 03:01:08 +09:00
|
|
|
background: rgba($black, 0.85);
|
|
|
|
backdrop-filter: blur(8px);
|
2023-07-12 06:30:21 +09:00
|
|
|
border: 1px solid rgba(lighten($classic-base-color, 4%), 0.85);
|
2023-07-09 03:01:08 +09:00
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 10px 15px -3px rgba($base-shadow-color, 0.25),
|
|
|
|
0 4px 6px -4px rgba($base-shadow-color, 0.25);
|
|
|
|
cursor: default;
|
|
|
|
transition: 0.5s cubic-bezier(0.89, 0.01, 0.5, 1.1);
|
|
|
|
transform: translateZ(0);
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 21px;
|
|
|
|
|
|
|
|
&.notification-bar-active {
|
|
|
|
inset-inline-start: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar-title {
|
|
|
|
margin-inline-end: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar-title,
|
|
|
|
.notification-bar-action {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar-action {
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-inline-start: 10px;
|
|
|
|
cursor: pointer;
|
2023-07-12 06:30:21 +09:00
|
|
|
color: $blurple-300;
|
2023-07-09 03:01:08 +09:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($ui-base-color, 0.85);
|
|
|
|
}
|
|
|
|
}
|