463 lines
		
	
	
	
		
			7.8 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			463 lines
		
	
	
	
		
			7.8 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| .account {
 | |
|   padding: 10px;
 | |
|   border-bottom: 1px solid lighten($ui-base-color, 8%);
 | |
|   color: inherit;
 | |
|   text-decoration: none;
 | |
| 
 | |
|   .account__display-name {
 | |
|     flex: 1 1 auto;
 | |
|     display: block;
 | |
|     color: $ui-primary-color;
 | |
|     overflow: hidden;
 | |
|     text-decoration: none;
 | |
|     font-size: 14px;
 | |
|   }
 | |
| 
 | |
|   &.small {
 | |
|     border: none;
 | |
|     padding: 0;
 | |
| 
 | |
|     & > .account__avatar-wrapper { margin: 0 8px 0 0 }
 | |
| 
 | |
|     & > .display-name {
 | |
|       height: 24px;
 | |
|       line-height: 24px;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .account__wrapper {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .account__avatar-wrapper {
 | |
|   float: left;
 | |
|   margin: 6px 16px 6px 6px;
 | |
| }
 | |
| 
 | |
| .account__avatar {
 | |
|   @include avatar-radius();
 | |
|   position: relative;
 | |
|   cursor: pointer;
 | |
| 
 | |
|   &-inline {
 | |
|     display: inline-block;
 | |
|     vertical-align: middle;
 | |
|     margin-right: 5px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .account__avatar-overlay {
 | |
|   position: relative;
 | |
|   @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;
 | |
| }
 | |
| 
 | |
| .account__header__wrapper {
 | |
|   flex: 0 0 auto;
 | |
|   background: lighten($ui-base-color, 4%);
 | |
| }
 | |
| 
 | |
| .account__header {
 | |
|   flex: 0 0 auto;
 | |
|   background: lighten($ui-base-color, 4%);
 | |
|   text-align: center;
 | |
|   background-size: cover;
 | |
|   background-position: center;
 | |
|   position: relative;
 | |
| 
 | |
|   .account__avatar {
 | |
|     @include avatar-radius();
 | |
|     @include avatar-size(90px);
 | |
|     display: block;
 | |
|     margin: 0 auto 10px;
 | |
|     overflow: hidden;
 | |
|   }
 | |
| 
 | |
|   &.inactive {
 | |
|     opacity: 0.5;
 | |
| 
 | |
|     .account__header__avatar {
 | |
|       filter: grayscale(100%);
 | |
|     }
 | |
| 
 | |
|     .account__header__username {
 | |
|       color: $ui-primary-color;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   & > div {
 | |
|     background: rgba(lighten($ui-base-color, 4%), 0.9);
 | |
|     padding: 20px 10px;
 | |
|   }
 | |
| 
 | |
|   .account__header__content {
 | |
|     color: $ui-secondary-color;
 | |
|   }
 | |
| 
 | |
|   .account__header__display-name {
 | |
|     color: $primary-text-color;
 | |
|     display: inline-block;
 | |
|     width: 100%;
 | |
|     font-size: 20px;
 | |
|     line-height: 27px;
 | |
|     font-weight: 500;
 | |
|     overflow: hidden;
 | |
|     text-overflow: ellipsis;
 | |
|   }
 | |
| 
 | |
|   .account__header__username {
 | |
|     color: $ui-highlight-color;
 | |
|     font-size: 14px;
 | |
|     font-weight: 400;
 | |
|     display: block;
 | |
|     margin-bottom: 10px;
 | |
|     overflow: hidden;
 | |
|     text-overflow: ellipsis;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .account__disclaimer {
 | |
|   padding: 10px;
 | |
|   border-top: 1px solid lighten($ui-base-color, 8%);
 | |
|   color: $ui-base-lighter-color;
 | |
| 
 | |
|   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__header__content {
 | |
|   color: $ui-primary-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__display-name {
 | |
|   .emojione {
 | |
|     width: 25px;
 | |
|     height: 25px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .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-dropdown {
 | |
|   flex: 0 1 calc(50% - 140px);
 | |
|   padding: 10px;
 | |
| 
 | |
|   .dropdown--active {
 | |
|     .dropdown__content.dropdown__right {
 | |
|       left: 6px;
 | |
|       right: initial;
 | |
|     }
 | |
| 
 | |
|     &::after {
 | |
|       bottom: initial;
 | |
|       margin-left: 11px;
 | |
|       margin-top: -7px;
 | |
|       right: initial;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .account__action-bar-links {
 | |
|   display: flex;
 | |
|   flex: 1 1 auto;
 | |
|   line-height: 18px;
 | |
| }
 | |
| 
 | |
| .account__action-bar__tab {
 | |
|   text-decoration: none;
 | |
|   overflow: hidden;
 | |
|   flex: 0 1 80px;
 | |
|   border-left: 1px solid lighten($ui-base-color, 8%);
 | |
|   padding: 10px 5px;
 | |
| 
 | |
|   & > span {
 | |
|     display: block;
 | |
|     text-transform: uppercase;
 | |
|     font-size: 11px;
 | |
|     color: $ui-primary-color;
 | |
|   }
 | |
| 
 | |
|   strong {
 | |
|     display: block;
 | |
|     font-size: 15px;
 | |
|     font-weight: 500;
 | |
|     color: $primary-text-color;
 | |
| 
 | |
|     @each $lang in $cjk-langs {
 | |
|       &:lang(#{$lang}) {
 | |
|         font-weight: 700;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   abbr {
 | |
|     color: $ui-base-lighter-color;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .account__header__avatar {
 | |
|   background-size: 90px 90px;
 | |
|   display: block;
 | |
|   height: 90px;
 | |
|   margin: 0 auto 10px;
 | |
|   overflow: hidden;
 | |
|   width: 90px;
 | |
| }
 | |
| 
 | |
| .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 {
 | |
|   margin-left: 42px;
 | |
|   padding: 8px 0 0 26px;
 | |
|   cursor: default;
 | |
|   color: $ui-primary-color;
 | |
|   font-size: 15px;
 | |
|   position: relative;
 | |
| 
 | |
|   .fa {
 | |
|     color: $ui-highlight-color;
 | |
|   }
 | |
| 
 | |
|   > 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 {
 | |
|   color: $ui-primary-color;
 | |
|   cursor: default;
 | |
|   display: block;
 | |
|   font-weight: 500;
 | |
|   margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .column-settings__row {
 | |
|   .text-btn {
 | |
|     margin-bottom: 15px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .account--follows-info {
 | |
|   color: $primary-text-color;
 | |
|   position: absolute;
 | |
|   top: 10px;
 | |
|   left: 10px;
 | |
|   opacity: 0.7;
 | |
|   display: inline-block;
 | |
|   vertical-align: top;
 | |
|   background-color: rgba($base-overlay-background, 0.4);
 | |
|   text-transform: uppercase;
 | |
|   font-size: 11px;
 | |
|   font-weight: 500;
 | |
|   padding: 4px;
 | |
|   border-radius: 4px;
 | |
| }
 | |
| 
 | |
| .account--action-button {
 | |
|   position: absolute;
 | |
|   top: 10px;
 | |
|   right: 20px;
 | |
| }
 | |
| 
 | |
| .account-gallery__container {
 | |
|   margin: -2px;
 | |
|   padding: 4px;
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
| }
 | |
| 
 | |
| .account-gallery__item {
 | |
|   flex: 1 1 auto;
 | |
|   width: calc(100% / 3 - 4px);
 | |
|   height: 95px;
 | |
|   margin: 2px;
 | |
| 
 | |
|   a {
 | |
|     display: block;
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     background-color: $base-overlay-background;
 | |
|     background-size: cover;
 | |
|     background-position: center;
 | |
|     position: relative;
 | |
|     color: inherit;
 | |
|     text-decoration: none;
 | |
| 
 | |
|     &:hover,
 | |
|     &:active,
 | |
|     &:focus {
 | |
|       outline: 0;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .account-section-headline {
 | |
|   color: $ui-base-lighter-color;
 | |
|   background: lighten($ui-base-color, 2%);
 | |
|   border-bottom: 1px solid lighten($ui-base-color, 4%);
 | |
|   padding: 15px 10px;
 | |
|   font-size: 14px;
 | |
|   font-weight: 500;
 | |
|   position: relative;
 | |
|   cursor: default;
 | |
| 
 | |
|   &::before,
 | |
|   &::after {
 | |
|     display: block;
 | |
|     content: "";
 | |
|     position: absolute;
 | |
|     bottom: 0;
 | |
|     left: 18px;
 | |
|     width: 0;
 | |
|     height: 0;
 | |
|     border-style: solid;
 | |
|     border-width: 0 10px 10px;
 | |
|     border-color: transparent transparent lighten($ui-base-color, 4%);
 | |
|   }
 | |
| 
 | |
|   &::after {
 | |
|     bottom: -1px;
 | |
|     border-color: transparent transparent $ui-base-color;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .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;
 | |
|     color: $ui-base-lighter-color;
 | |
|     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;
 | |
|   }
 | |
| }
 |