From 3bb082be96de356e426871b0e40975c4acaadbb9 Mon Sep 17 00:00:00 2001
From: "florian.azizian" <florian.azizian@maarch.org>
Date: Wed, 15 Nov 2017 12:25:08 +0100
Subject: [PATCH] FIX #6394 set width in redirection view

---
 apps/maarch_entreprise/Views/profile.component.html | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/apps/maarch_entreprise/Views/profile.component.html b/apps/maarch_entreprise/Views/profile.component.html
index ffeb9b847bb..f301f4f3878 100755
--- a/apps/maarch_entreprise/Views/profile.component.html
+++ b/apps/maarch_entreprise/Views/profile.component.html
@@ -176,11 +176,11 @@
                 <div class="alert alert-danger" role="alert">{{lang.autoLogoutAbsence}}</div>
                 <nav class="navbar navbar-default">
                     <div class="container-fluid">
-                        <form class="navbar-form navbar-left">
-                            <div class="form-group">
-                                <select id="selectBasketAbsenceUser" class="form-control">
-                                    <option>{{lang.chooseBasket}}</option>
-                                    <option *ngFor="let basket of user.baskets" [disabled]="basket.disabled">
+                        <form class="navbar-form navbar-left" style="width: 100%">
+                            <div style="margin-left: 16%;padding-top: 15px">Ctrl + Clic pour sélectionner plusieurs corbeilles</div>
+                            <div class="form-group" style="margin-left: 16%;max-width: 51%;">
+                                <select style="height: 150px;max-width: 87%;" id="selectBasketAbsenceUser" class="form-control">
+                                    <option *ngFor="let basket of user.baskets" [disabled]="basket.disabled" title="{{basket.basket_name}}">
                                         {{basket.basket_name}}
                                         <span *ngIf="basket.group_id">({{basket.group_id}})</span>
                                         <span *ngIf="basket.userToDisplay">({{basket.userToDisplay}})</span>
-- 
GitLab