Port d2a9ea58da to glitch-soc
This introduces new requirements in the API:
  `/api/v1/timelines/tag/:tag` now accepts new params: `any`, `all` and `none`
  It now returns status matching tag :tag or any of the :any, provided that
  they also include all tags in `all` and none of `none`.
		
	
			
		
			
				
	
	
		
			143 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			143 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| .search {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .search__input {
 | |
|   display: block;
 | |
|   padding: 10px;
 | |
|   padding-right: 30px;
 | |
|   @include search-input();
 | |
| }
 | |
| 
 | |
| .search__icon {
 | |
|   .fa {
 | |
|     position: absolute;
 | |
|     top: 10px;
 | |
|     right: 10px;
 | |
|     z-index: 2;
 | |
|     display: inline-block;
 | |
|     opacity: 0;
 | |
|     transition: all 100ms linear;
 | |
|     font-size: 18px;
 | |
|     width: 18px;
 | |
|     height: 18px;
 | |
|     color: $secondary-text-color;
 | |
|     cursor: default;
 | |
|     pointer-events: none;
 | |
| 
 | |
|     &.active {
 | |
|       pointer-events: auto;
 | |
|       opacity: 0.3;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   .fa-search {
 | |
|     transform: rotate(90deg);
 | |
| 
 | |
|     &.active {
 | |
|       pointer-events: none;
 | |
|       transform: rotate(0deg);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   .fa-times-circle {
 | |
|     top: 11px;
 | |
|     transform: rotate(0deg);
 | |
|     cursor: pointer;
 | |
| 
 | |
|     &.active {
 | |
|       transform: rotate(90deg);
 | |
|     }
 | |
| 
 | |
|     &:hover {
 | |
|       color: $primary-text-color;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .search-results__header {
 | |
|   color: $dark-text-color;
 | |
|   background: lighten($ui-base-color, 2%);
 | |
|   border-bottom: 1px solid darken($ui-base-color, 4%);
 | |
|   padding: 15px 10px;
 | |
|   font-size: 14px;
 | |
|   font-weight: 500;
 | |
| }
 | |
| 
 | |
| .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;
 | |
| 
 | |
|     .fa {
 | |
|       display: inline-block;
 | |
|       margin-right: 5px;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &__item {
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|     padding: 15px;
 | |
|     border-bottom: 1px solid lighten($ui-base-color, 8%);
 | |
| 
 | |
|     &: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;
 | |
|         overflow: hidden;
 | |
|         text-overflow: ellipsis;
 | |
|         white-space: nowrap;
 | |
| 
 | |
|         &:hover,
 | |
|         &:focus,
 | |
|         &:active {
 | |
|           span {
 | |
|             text-decoration: underline;
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     &__current {
 | |
|       flex: 0 0 auto;
 | |
|       width: 100px;
 | |
|       font-size: 24px;
 | |
|       line-height: 36px;
 | |
|       font-weight: 500;
 | |
|       text-align: center;
 | |
|       color: $secondary-text-color;
 | |
|     }
 | |
| 
 | |
|     &__sparkline {
 | |
|       flex: 0 0 auto;
 | |
|       width: 50px;
 | |
| 
 | |
|       path {
 | |
|         stroke: lighten($highlight-text-color, 6%) !important;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 |