2018-01-13 22:48:18 +00:00
|
|
|
.account {
|
|
|
|
padding: 10px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2018-01-13 23:47:59 +00:00
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2018-01-13 22:48:18 +00:00
|
|
|
|
|
|
|
.account__display-name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: block;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2018-01-13 23:47:59 +00:00
|
|
|
|
|
|
|
&.small {
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
& > .account__avatar-wrapper { margin: 0 8px 0 0 }
|
|
|
|
|
|
|
|
& > .display-name {
|
|
|
|
height: 24px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar-wrapper {
|
|
|
|
float: left;
|
2018-05-11 14:05:47 +00:00
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 12px;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
@include avatar-radius();
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&-inline {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar-overlay {
|
2018-01-14 23:48:54 +00:00
|
|
|
position: relative;
|
2018-01-13 22:48:18 +00:00
|
|
|
@include avatar-size(48px);
|
|
|
|
|
|
|
|
&-base {
|
|
|
|
@include avatar-radius();
|
|
|
|
@include avatar-size(36px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&-overlay {
|
|
|
|
@include avatar-radius();
|
|
|
|
@include avatar-size(24px);
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__relationship {
|
|
|
|
height: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:47:59 +00:00
|
|
|
.account__header__wrapper {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.account__disclaimer {
|
|
|
|
padding: 10px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $dark-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: 500;
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__action-bar {
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
line-height: 36px;
|
|
|
|
overflow: hidden;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__action-bar-links {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
line-height: 18px;
|
2018-07-30 11:21:48 +00:00
|
|
|
text-align: center;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__action-bar__tab {
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
2018-07-30 11:21:48 +00:00
|
|
|
flex: 0 1 100%;
|
2018-01-13 22:48:18 +00:00
|
|
|
border-left: 1px solid lighten($ui-base-color, 8%);
|
2018-07-30 11:21:48 +00:00
|
|
|
padding: 10px 0;
|
2018-09-13 09:20:21 +00:00
|
|
|
border-bottom: 4px solid transparent;
|
|
|
|
|
2019-03-28 16:19:34 +00:00
|
|
|
&:first-child {
|
|
|
|
border-left: 0;
|
|
|
|
}
|
|
|
|
|
2018-09-13 09:20:21 +00:00
|
|
|
&.active {
|
|
|
|
border-bottom: 4px solid $ui-highlight-color;
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
|
|
|
|
& > span {
|
|
|
|
display: block;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 11px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
abbr {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $highlight-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-authorize {
|
|
|
|
padding: 14px 10px;
|
|
|
|
|
|
|
|
.detailed-status__display-name {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-authorize__avatar {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification__message {
|
2018-01-14 23:48:54 +00:00
|
|
|
margin-left: 42px;
|
|
|
|
padding: 8px 0 0 26px;
|
2018-01-13 22:48:18 +00:00
|
|
|
cursor: default;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
font-size: 15px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.fa {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $highlight-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account--panel {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account--panel__button,
|
|
|
|
.detailed-status__button {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-settings__outer {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-settings__section {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
2019-02-15 17:21:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-settings__hashtags {
|
|
|
|
.column-settings__row {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2018-12-18 16:56:08 +00:00
|
|
|
|
2019-02-15 17:21:00 +00:00
|
|
|
.column-select {
|
2018-12-18 16:56:08 +00:00
|
|
|
&__control {
|
|
|
|
@include search-input();
|
|
|
|
}
|
|
|
|
|
2019-02-15 17:21:00 +00:00
|
|
|
&__placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
padding-left: 2px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__value-container {
|
|
|
|
padding-left: 6px;
|
|
|
|
}
|
|
|
|
|
2018-12-18 16:56:08 +00:00
|
|
|
&__multi-value {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2019-02-15 17:21:00 +00:00
|
|
|
|
|
|
|
&__remove {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 12%);
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
2018-12-18 16:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__multi-value__label,
|
|
|
|
&__input {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
2019-02-15 17:21:00 +00:00
|
|
|
&__clear-indicator,
|
2018-12-18 16:56:08 +00:00
|
|
|
&__dropdown-indicator {
|
2019-02-15 17:21:00 +00: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 {
|
|
|
|
@include search-popout();
|
|
|
|
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-12-18 16:56:08 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-settings__row {
|
|
|
|
.text-btn {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 23:36:25 +00:00
|
|
|
.relationship-tag {
|
2018-03-05 10:09:29 +00:00
|
|
|
color: $primary-text-color;
|
2019-03-25 23:36:25 +00:00
|
|
|
margin-bottom: 4px;
|
|
|
|
display: block;
|
2018-03-05 10:09:29 +00:00
|
|
|
vertical-align: top;
|
2019-03-28 17:33:26 +00:00
|
|
|
background-color: $base-overlay-background;
|
2018-03-05 10:09:29 +00:00
|
|
|
text-transform: uppercase;
|
2018-01-13 22:48:18 +00:00
|
|
|
font-size: 11px;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 4px;
|
2019-03-28 17:33:26 +00:00
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-gallery__container {
|
|
|
|
display: flex;
|
2018-03-16 18:54:00 +00:00
|
|
|
justify-content: center;
|
2018-01-13 22:48:18 +00:00
|
|
|
flex-wrap: wrap;
|
2018-03-16 18:54:00 +00:00
|
|
|
padding: 2px;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-gallery__item {
|
2018-03-16 18:54:00 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
width: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
padding-top: 100%;
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
2018-03-16 18:54:00 +00:00
|
|
|
width: calc(100% - 4px);
|
|
|
|
height: calc(100% - 4px);
|
|
|
|
margin: 2px;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2018-01-13 22:48:18 +00:00
|
|
|
background-color: $base-overlay-background;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
2018-03-16 18:54:00 +00:00
|
|
|
position: absolute;
|
2018-10-02 13:48:55 +00:00
|
|
|
color: $ui-primary-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
text-decoration: none;
|
2018-03-16 18:54:00 +00:00
|
|
|
border-radius: 4px;
|
2018-01-13 22:48:18 +00:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
2018-10-02 14:01:28 +00:00
|
|
|
color: $ui-secondary-color;
|
2018-03-16 18:54:00 +00:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: rgba($base-overlay-background, 0.3);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-02 13:48:55 +00:00
|
|
|
|
|
|
|
&__icons {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
2018-12-18 16:23:04 +00:00
|
|
|
.notification__filter-bar,
|
2018-03-16 18:54:00 +00:00
|
|
|
.account__section-headline {
|
2018-03-16 19:48:22 +00:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2018-01-13 22:48:18 +00:00
|
|
|
cursor: default;
|
2018-03-16 18:54:00 +00:00
|
|
|
display: flex;
|
2018-12-19 12:00:08 +00:00
|
|
|
flex-shrink: 0;
|
2018-01-13 22:48:18 +00:00
|
|
|
|
2018-12-18 16:23:04 +00:00
|
|
|
button {
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border: 0;
|
2018-12-19 12:00:08 +00:00
|
|
|
margin: 0;
|
2018-12-18 16:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
2018-03-16 18:54:00 +00:00
|
|
|
a {
|
2018-01-13 22:48:18 +00:00
|
|
|
display: block;
|
2018-03-16 19:48:22 +00:00
|
|
|
flex: 1 1 auto;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2018-03-16 19:48:22 +00:00
|
|
|
padding: 15px 0;
|
2018-03-16 18:54:00 +00:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2018-03-16 19:48:22 +00:00
|
|
|
text-align: center;
|
2018-03-16 18:54:00 +00:00
|
|
|
text-decoration: none;
|
|
|
|
position: relative;
|
2018-01-13 22:48:18 +00:00
|
|
|
|
2018-03-16 18:54:00 +00:00
|
|
|
&.active {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2018-03-16 18:54:00 +00:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 10px 10px;
|
2018-03-16 19:48:22 +00:00
|
|
|
border-color: transparent transparent lighten($ui-base-color, 8%);
|
2018-03-16 18:54:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
bottom: -1px;
|
|
|
|
border-color: transparent transparent $ui-base-color;
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__moved-note {
|
|
|
|
padding: 14px 10px;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
position: relative;
|
|
|
|
margin-left: 58px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $dark-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
padding: 8px 0;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon-wrapper {
|
|
|
|
left: -26px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-avatar {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-name {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-05-09 20:19:10 +00:00
|
|
|
|
2019-03-25 23:36:25 +00: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__header {
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&.inactive {
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
.account__header__image,
|
|
|
|
.account__avatar {
|
|
|
|
filter: grayscale(100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__info {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__image {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 145px;
|
|
|
|
position: relative;
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
|
|
|
|
img {
|
|
|
|
object-fit: cover;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bar {
|
|
|
|
position: relative;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 5px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
flex: 0 0 auto;
|
2019-03-26 22:05:21 +00:00
|
|
|
width: 94px;
|
2019-03-25 23:36:25 +00:00
|
|
|
margin-left: -2px;
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
border: 2px solid lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__tabs {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 7px 5px;
|
|
|
|
margin-top: -55px;
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding-top: 55px;
|
2019-03-26 22:05:21 +00:00
|
|
|
overflow: hidden;
|
2019-03-25 23:36:25 +00:00
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
border: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: content-box;
|
|
|
|
padding: 2px;
|
2019-03-26 22:05:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2019-03-25 23:36:25 +00:00
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
.account-role {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bio {
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0 -5px;
|
|
|
|
|
|
|
|
.account__header__content {
|
|
|
|
padding: 20px 15px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__header__fields {
|
|
|
|
margin: 0;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
dl:first-child .verified {
|
|
|
|
border-radius: 0 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.verified a {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__extra {
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
&__links {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-09 20:19:10 +00:00
|
|
|
}
|