2019-06-12 14:03:10 +00:00
|
|
|
.compose-panel {
|
|
|
|
width: 285px;
|
|
|
|
margin-top: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: calc(100% - 10px);
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
2022-09-29 02:39:33 +00: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-06-27 20:30:55 +00:00
|
|
|
.search__input {
|
2019-06-12 14:03:10 +00:00
|
|
|
line-height: 18px;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
2023-04-16 15:45:18 +00:00
|
|
|
padding-inline-end: 30px;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.search__icon .fa {
|
|
|
|
top: 15px;
|
|
|
|
}
|
|
|
|
|
2022-12-01 19:06:08 +00:00
|
|
|
.navigation-bar {
|
2019-06-12 14:03:10 +00:00
|
|
|
flex: 0 1 48px;
|
|
|
|
}
|
|
|
|
|
2022-11-06 12:30:37 +00:00
|
|
|
.compose-form {
|
2019-06-12 14:03:10 +00:00
|
|
|
flex: 1;
|
|
|
|
overflow-y: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 310px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__autosuggest-wrapper {
|
|
|
|
overflow-y: auto;
|
|
|
|
background-color: $white;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autosuggest-textarea__textarea {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
overflow-y: auto;
|
2019-08-06 15:57:52 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-09-29 02:39:33 +00:00
|
|
|
.logo {
|
|
|
|
height: 30px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel,
|
|
|
|
.compose-panel {
|
2019-06-12 14:03:10 +00:00
|
|
|
hr {
|
2019-08-06 15:57:52 +00:00
|
|
|
flex: 0 0 auto;
|
2019-06-12 14:03:10 +00:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2019-08-06 15:57:52 +00:00
|
|
|
|
|
|
|
.flex-spacer {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 600px) {
|
|
|
|
.tabs-bar__link {
|
|
|
|
span {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area--mobile {
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
.column,
|
|
|
|
.drawer {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-07 10:38:52 +00:00
|
|
|
.account-card {
|
2019-08-29 22:14:36 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-form {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2019-06-12 14:03:10 +00:00
|
|
|
.autosuggest-textarea__textarea {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search__input {
|
|
|
|
line-height: 18px;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
2023-04-16 15:45:18 +00:00
|
|
|
padding-inline-end: 30px;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.search__icon .fa {
|
|
|
|
top: 15px;
|
|
|
|
}
|
|
|
|
|
2019-07-19 07:25:22 +00:00
|
|
|
.scrollable {
|
|
|
|
overflow: visible;
|
2019-07-23 13:47:18 +00:00
|
|
|
|
2023-02-13 03:57:03 +00:00
|
|
|
@supports (display: grid) {
|
2019-07-23 13:47:18 +00:00
|
|
|
contain: content;
|
|
|
|
}
|
2019-07-19 07:25:22 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 12:32:45 +00:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-06-12 14:03:10 +00:00
|
|
|
padding: 10px 0;
|
2019-08-01 10:26:58 +00:00
|
|
|
padding-top: 0;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.detailed-status {
|
|
|
|
padding: 15px;
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.media-gallery,
|
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
|
|
|
margin-top: 15px;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
2022-10-04 18:13:23 +00:00
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.account__header__bar {
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.navigation-bar,
|
|
|
|
.compose-form {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.compose-form .compose-form__publish .compose-form__publish-button-wrapper {
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.notification__report {
|
2023-04-16 15:45:18 +00:00
|
|
|
padding: 15px;
|
|
|
|
padding-inline-start: (48px + 15px * 2);
|
2022-10-04 18:13:23 +00:00
|
|
|
min-height: 48px + 2px;
|
2022-06-27 07:30:15 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
&__avatar {
|
2023-04-16 15:45:18 +00:00
|
|
|
inset-inline-start: 15px;
|
2022-10-04 18:13:23 +00:00
|
|
|
top: 17px;
|
2022-06-27 07:30:15 +00:00
|
|
|
}
|
2022-10-04 18:13:23 +00:00
|
|
|
}
|
2022-06-27 07:30:15 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.status {
|
|
|
|
padding: 15px;
|
|
|
|
min-height: 48px + 2px;
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.media-gallery,
|
|
|
|
&__action-bar,
|
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
|
|
|
margin-top: 10px;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
2022-10-04 18:13:23 +00:00
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.account {
|
|
|
|
padding: 15px 10px;
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
&__header__bio {
|
|
|
|
margin: 0 -10px;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
2022-10-04 18:13:23 +00:00
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.notification {
|
|
|
|
&__message {
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.status {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.account {
|
|
|
|
padding-top: 8px;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-18 12:32:45 +00:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-06-12 14:03:10 +00:00
|
|
|
.tabs-bar {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-swipeable-view-container .columns-area--mobile {
|
2019-08-01 10:26:58 +00:00
|
|
|
height: calc(100% - 10px) !important;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 16:24:38 +00:00
|
|
|
.getting-started__wrapper {
|
2019-06-12 14:03:10 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.tabs-bar__link.optional {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-page .search {
|
2019-06-12 14:03:10 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2022-05-06 19:40:49 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.navigation-panel__legal {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
2022-10-09 13:55:32 +00:00
|
|
|
$sidebar-width: 285px;
|
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.columns-area__panels__main {
|
2022-10-09 13:55:32 +00:00
|
|
|
width: calc(100% - $sidebar-width);
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.columns-area__panels {
|
|
|
|
min-height: calc(100vh - $ui-header-height);
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area__panels__pane--navigational {
|
2022-10-09 13:55:32 +00:00
|
|
|
min-width: $sidebar-width;
|
2022-10-04 18:13:23 +00:00
|
|
|
|
|
|
|
.columns-area__panels__pane__inner {
|
2022-10-09 13:55:32 +00:00
|
|
|
width: $sidebar-width;
|
2022-10-04 18:13:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel {
|
|
|
|
margin: 0;
|
|
|
|
background: $ui-base-color;
|
2023-04-16 15:45:18 +00:00
|
|
|
border-inline-start: 1px solid lighten($ui-base-color, 8%);
|
2022-10-04 18:13:23 +00:00
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel__sign-in-banner,
|
|
|
|
.navigation-panel__logo,
|
|
|
|
.getting-started__trends {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-link__icon {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-15 15:40:45 +00:00
|
|
|
.layout-single-column .ui__header {
|
2022-10-04 18:13:23 +00:00
|
|
|
display: flex;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-header,
|
|
|
|
.column-back-button,
|
2022-10-22 21:18:32 +00:00
|
|
|
.scrollable,
|
|
|
|
.error-column {
|
2022-10-04 18:13:23 +00:00
|
|
|
border-radius: 0 !important;
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-09 13:55:32 +00: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-10 19:41:25 +00:00
|
|
|
|
|
|
|
.list-panel {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-09 13:55:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
.explore__search-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-09 13:55:32 +00:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
2022-10-04 18:13:23 +00:00
|
|
|
.columns-area__panels__pane--compositional {
|
2019-06-12 14:03:10 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-04 18:13:23 +00:00
|
|
|
|
|
|
|
.explore__search-header {
|
|
|
|
display: flex;
|
|
|
|
}
|
2019-06-12 14:03:10 +00:00
|
|
|
}
|