mirror of
				http://git.whoc.org.uk/git/password-manager.git
				synced 2025-10-31 11:27:34 +01:00 
			
		
		
		
	Fixed Password Generator rendering issue
This commit is contained in:
		| @@ -3435,7 +3435,7 @@ div.cardList.narrow { | ||||
|   z-index: 101; } | ||||
|   .passwordGenerator .passwordGeneratorBaloon form { | ||||
|     position: absolute; | ||||
|     bottom: calc(100% + 4px); | ||||
|     bottom: 4px; | ||||
|     left: 0; | ||||
|     min-width: 220px; | ||||
|     width: 80%; | ||||
| @@ -3447,6 +3447,17 @@ div.cardList.narrow { | ||||
|     border-radius: 6px; | ||||
|     box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2); | ||||
|     font-size: 9pt; } | ||||
|     .passwordGenerator .passwordGeneratorBaloon form:after { | ||||
|       content: ''; | ||||
|       position: absolute; | ||||
|       top: 100%; | ||||
|       left: 10%; | ||||
|       margin-left: 0px; | ||||
|       width: 0; | ||||
|       height: 0; | ||||
|       border-top: 5px solid #333333; | ||||
|       border-left: 5px solid transparent; | ||||
|       border-right: 5px solid transparent; } | ||||
|     .passwordGenerator .passwordGeneratorBaloon form span { | ||||
|       font-size: 8pt; | ||||
|       color: #ccc; } | ||||
|   | ||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| @@ -674,7 +674,8 @@ $cardViewBasePadding: 10px; | ||||
| 		 | ||||
| 		form { | ||||
| 			position: absolute; | ||||
| 			bottom: calc(100% + 4px); | ||||
| //			bottom: calc(100% + 4px); | ||||
| 			bottom: 4px; | ||||
| 			left: 0; | ||||
| 			min-width: 220px; | ||||
| 			width: 80%; | ||||
| @@ -686,6 +687,20 @@ $cardViewBasePadding: 10px; | ||||
| 			box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2); | ||||
| 			font-size: 9pt; | ||||
|  | ||||
| 			$arrowSize: 5px; | ||||
| 			&:after { | ||||
| 				content:''; | ||||
| 				position:absolute; | ||||
| 				top:100%; | ||||
| 				left:10%; | ||||
| 				margin-left: 0px; | ||||
| 				width:0; | ||||
| 				height:0; | ||||
| 				border-top:$arrowSize solid $passwordBaloonColor; | ||||
| 				border-left:$arrowSize solid transparent; | ||||
| 				border-right:$arrowSize solid transparent; | ||||
| 			} | ||||
|  | ||||
| 			span { | ||||
| 				font-size: 8pt; | ||||
| 				color: #ccc; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Giulio Cesare Solaroli
					Giulio Cesare Solaroli