[Glitch] Fix list edition modal styling
Port 45a520603b10792e24a2190215c0305c739108d0 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
		
							parent
							
								
									6cedbb4c50
								
							
						
					
					
						commit
						39723a4d9c
					
				| 
						 | 
				
			
			@ -8498,7 +8498,6 @@ noscript {
 | 
			
		|||
  justify-content: flex-start;
 | 
			
		||||
  gap: 15px;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  border: 1px solid var(--background-border-color);
 | 
			
		||||
  border-top: 0;
 | 
			
		||||
 | 
			
		||||
  label {
 | 
			
		||||
| 
						 | 
				
			
			@ -8525,79 +8524,23 @@ noscript {
 | 
			
		|||
  background: rgba($base-overlay-background, 0.5);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.list-adder,
 | 
			
		||||
.list-editor {
 | 
			
		||||
  background: $ui-base-color;
 | 
			
		||||
  backdrop-filter: var(--background-filter);
 | 
			
		||||
  background: var(--modal-background-color);
 | 
			
		||||
  border: 1px solid var(--modal-border-color);
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  border-radius: 8px;
 | 
			
		||||
  box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
 | 
			
		||||
  width: 380px;
 | 
			
		||||
  overflow: hidden;
 | 
			
		||||
 | 
			
		||||
  @media screen and (width <= 420px) {
 | 
			
		||||
    width: 90%;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  h4 {
 | 
			
		||||
    padding: 15px 0;
 | 
			
		||||
    background: lighten($ui-base-color, 13%);
 | 
			
		||||
    font-weight: 500;
 | 
			
		||||
    font-size: 16px;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    border-radius: 8px 8px 0 0;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .drawer__pager {
 | 
			
		||||
    height: 50vh;
 | 
			
		||||
    border-radius: 4px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .drawer__inner {
 | 
			
		||||
    border-radius: 0 0 8px 8px;
 | 
			
		||||
 | 
			
		||||
    &.backdrop {
 | 
			
		||||
      width: calc(100% - 60px);
 | 
			
		||||
      box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
 | 
			
		||||
      border-radius: 0 0 0 8px;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &__accounts {
 | 
			
		||||
    overflow-y: auto;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .account__display-name {
 | 
			
		||||
    &:hover strong {
 | 
			
		||||
      text-decoration: none;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .account__avatar {
 | 
			
		||||
    cursor: default;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .search {
 | 
			
		||||
    margin-bottom: 0;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.list-adder {
 | 
			
		||||
  background: $ui-base-color;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  border-radius: 8px;
 | 
			
		||||
  box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
 | 
			
		||||
  width: 380px;
 | 
			
		||||
  overflow: hidden;
 | 
			
		||||
 | 
			
		||||
  @media screen and (width <= 420px) {
 | 
			
		||||
    width: 90%;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &__account {
 | 
			
		||||
    background: lighten($ui-base-color, 13%);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &__lists {
 | 
			
		||||
    background: lighten($ui-base-color, 13%);
 | 
			
		||||
    height: 50vh;
 | 
			
		||||
    border-radius: 0 0 8px 8px;
 | 
			
		||||
    overflow-y: auto;
 | 
			
		||||
| 
						 | 
				
			
			@ -8618,6 +8561,52 @@ noscript {
 | 
			
		|||
    text-decoration: none;
 | 
			
		||||
    font-size: 16px;
 | 
			
		||||
    padding: 10px;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
    gap: 4px;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.list-editor {
 | 
			
		||||
  h4 {
 | 
			
		||||
    padding: 15px 0;
 | 
			
		||||
    background: lighten($ui-base-color, 13%);
 | 
			
		||||
    font-weight: 500;
 | 
			
		||||
    font-size: 16px;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    border-radius: 8px 8px 0 0;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .drawer__pager {
 | 
			
		||||
    height: 50vh;
 | 
			
		||||
    border: 0;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .drawer__inner {
 | 
			
		||||
    &.backdrop {
 | 
			
		||||
      width: calc(100% - 60px);
 | 
			
		||||
      box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
 | 
			
		||||
      border-radius: 0 0 0 8px;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &__accounts {
 | 
			
		||||
    background: unset;
 | 
			
		||||
    overflow-y: auto;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .account__display-name {
 | 
			
		||||
    &:hover strong {
 | 
			
		||||
      text-decoration: none;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .account__avatar {
 | 
			
		||||
    cursor: default;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .search {
 | 
			
		||||
    margin-bottom: 0;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue