* Change public accounts pages to mount the web UI * Fix handling of remote usernames in routes - When logged in, serve web app - When logged out, redirect to permalink - Fix `app-body` class not being set sometimes due to name conflict * Fix missing `multiColumn` prop * Fix failing test * Use `discoverable` attribute to control indexing directives * Fix `<ColumnLoading />` not using `multiColumn` * Add `noindex` to accounts in REST API * Change noindex directive to not be rendered by default before a route is mounted * Add loading indicator for detailed status in web UI * Fix missing indicator appearing while account is loading in web UI
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| // components.scss
 | |
| .compose-form {
 | |
|   .compose-form__modifiers {
 | |
|     .compose-form__upload {
 | |
|       &-description {
 | |
|         input {
 | |
|           &::placeholder {
 | |
|             opacity: 1;
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .status__content a,
 | |
| .reply-indicator__content a {
 | |
|   color: lighten($ui-highlight-color, 12%);
 | |
|   text-decoration: underline;
 | |
| 
 | |
|   &.mention {
 | |
|     text-decoration: none;
 | |
|   }
 | |
| 
 | |
|   &.mention span {
 | |
|     text-decoration: underline;
 | |
| 
 | |
|     &:hover,
 | |
|     &:focus,
 | |
|     &:active {
 | |
|       text-decoration: none;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &:hover,
 | |
|   &:focus,
 | |
|   &:active {
 | |
|     text-decoration: none;
 | |
|   }
 | |
| 
 | |
|   &.status__content__spoiler-link {
 | |
|     color: $secondary-text-color;
 | |
|     text-decoration: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .status__content__read-more-button {
 | |
|   text-decoration: underline;
 | |
| 
 | |
|   &:hover,
 | |
|   &:focus,
 | |
|   &:active {
 | |
|     text-decoration: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .getting-started__footer a {
 | |
|   text-decoration: underline;
 | |
| 
 | |
|   &:hover,
 | |
|   &:focus,
 | |
|   &:active {
 | |
|     text-decoration: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .nothing-here {
 | |
|   color: $darker-text-color;
 | |
| }
 | |
| 
 | |
| .compose-form .autosuggest-textarea__textarea::placeholder,
 | |
| .compose-form .spoiler-input__input::placeholder {
 | |
|   color: $inverted-text-color;
 | |
| }
 |