Fix list edition modal styling (#32358)
This commit is contained in:
		
							parent
							
								
									fda52b2a52
								
							
						
					
					
						commit
						03dbebdfef
					
				| @ -7961,7 +7961,6 @@ noscript { | |||||||
|   justify-content: flex-start; |   justify-content: flex-start; | ||||||
|   gap: 15px; |   gap: 15px; | ||||||
|   align-items: center; |   align-items: center; | ||||||
|   border: 1px solid var(--background-border-color); |  | ||||||
|   border-top: 0; |   border-top: 0; | ||||||
| 
 | 
 | ||||||
|   label { |   label { | ||||||
| @ -7988,79 +7987,23 @@ noscript { | |||||||
|   background: rgba($base-overlay-background, 0.5); |   background: rgba($base-overlay-background, 0.5); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | .list-adder, | ||||||
| .list-editor { | .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; |   flex-direction: column; | ||||||
|   border-radius: 8px; |   border-radius: 8px; | ||||||
|   box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4); |  | ||||||
|   width: 380px; |   width: 380px; | ||||||
|   overflow: hidden; |   overflow: hidden; | ||||||
| 
 | 
 | ||||||
|   @media screen and (width <= 420px) { |   @media screen and (width <= 420px) { | ||||||
|     width: 90%; |     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 { | .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 { |   &__lists { | ||||||
|     background: lighten($ui-base-color, 13%); |  | ||||||
|     height: 50vh; |     height: 50vh; | ||||||
|     border-radius: 0 0 8px 8px; |     border-radius: 0 0 8px 8px; | ||||||
|     overflow-y: auto; |     overflow-y: auto; | ||||||
| @ -8081,6 +8024,52 @@ noscript { | |||||||
|     text-decoration: none; |     text-decoration: none; | ||||||
|     font-size: 16px; |     font-size: 16px; | ||||||
|     padding: 10px; |     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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user