PINES Custom UI Change: Date Field on Circ Screen
authorTerran McCanna <tmccanna@georgialibraries.org>
Wed, 6 Feb 2019 17:53:38 +0000 (12:53 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Mon, 16 Mar 2020 21:15:47 +0000 (17:15 -0400)
Forced size of custom date selector on checkout screen since
it is too small. This will probably be fixed differently in
master later, but this will help us for now.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Open-ILS/src/templates/staff/circ/patron/t_checkout.tt2

index 7cbe492..76a303d 100644 (file)
@@ -41,7 +41,7 @@
       <div class="flex-cell"></div>
 
 <div class="form-group row">
-<div class="col-md-12 col-lg-4" uib-dropdown>
+<div class="col-md-3" uib-dropdown style="width:100px;">
       <button type="button" ng-class="{'btn-success' : date_options.has_sticky_date}" class="btn btn-default" uib-dropdown-toggle>
         [% l('Date Options') %]
         <span class="caret"></span>
           [% l('Specific Due Date') %]
         </label>
       </div> -->
-      <div class="col-md-12 col-lg-6">
-        <eg-date-input min-date="minDate" out-of-range="outOfRange"
-          ng-model="checkoutArgs.due_date" ng-disabled="!date_options.has_sticky_date" show-time-picker>
-        </eg-date-input>
+      <div class="col-md-4" style="width:200px;">
+        <eg-date-input ng-model="checkoutArgs.due_date" ng-disabled="!date_options.has_sticky_date" show-time-picker></eg-date-input>
       </div>
 </div>
     </div>