mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	GUAC-972: Ensure list links stretch the entire width of the list.
This commit is contained in:
		| @@ -75,7 +75,7 @@ div.recent-connections .protocol { | |||||||
|     vertical-align: middle; |     vertical-align: middle; | ||||||
| } | } | ||||||
|  |  | ||||||
| .caption > * { | .caption .choice { | ||||||
|     display: inline-block; |     display: inline-block; | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -21,6 +21,8 @@ | |||||||
|        THE SOFTWARE. |        THE SOFTWARE. | ||||||
|     --> |     --> | ||||||
|  |  | ||||||
|  |     <div class="caption"> | ||||||
|  |  | ||||||
|         <!-- Connection icon --> |         <!-- Connection icon --> | ||||||
|         <div class="protocol"> |         <div class="protocol"> | ||||||
|             <div class="icon type" ng-class="item.protocol"></div> |             <div class="icon type" ng-class="item.protocol"></div> | ||||||
| @@ -29,4 +31,5 @@ | |||||||
|         <!-- Connection name --> |         <!-- Connection name --> | ||||||
|         <span class="name">{{item.name}}</span> |         <span class="name">{{item.name}}</span> | ||||||
|  |  | ||||||
|  |     </div> | ||||||
| </a> | </a> | ||||||
|   | |||||||
| @@ -45,10 +45,12 @@ THE SOFTWARE. | |||||||
|             <!-- List of users this user has access to --> |             <!-- List of users this user has access to --> | ||||||
|             <div class="user-list"> |             <div class="user-list"> | ||||||
|                 <div ng-repeat="user in users | orderBy : 'username'" class="user list-item"> |                 <div ng-repeat="user in users | orderBy : 'username'" class="user list-item"> | ||||||
|  |                     <a ng-href="#/manage/users/{{user.username}}"> | ||||||
|                         <div class="caption"> |                         <div class="caption"> | ||||||
|                             <div class="icon user"></div> |                             <div class="icon user"></div> | ||||||
|                         <a class="name" ng-href="#/manage/users/{{user.username}}">{{user.username}}</a> |                             <span class="name">{{user.username}}</span> | ||||||
|                         </div> |                         </div> | ||||||
|  |                     </a> | ||||||
|                 </div> |                 </div> | ||||||
|             </div> |             </div> | ||||||
|         </div> |         </div> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user