diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-29 14:38:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-03-29 14:38:26 +0000 |
commit | 6a2ba8a7539931490a32437c30d22f19a1e2748b (patch) | |
tree | c8f0133b84b458f5635cc18c6832627dd495ea15 /src/templates | |
parent | bce42a579545048055671e5726cf20fb6feea44b (diff) | |
parent | cb3ee3b4eae61abc7d9f221e9e7f378b4d1f7b68 (diff) |
Merge "fix slider appearance on Firefox"
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/booking/quick_deploy.html | 8 | ||||
-rw-r--r-- | src/templates/booking/steps/booking_meta.html | 9 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/templates/booking/quick_deploy.html b/src/templates/booking/quick_deploy.html index 819bf05..2c1a3d2 100644 --- a/src/templates/booking/quick_deploy.html +++ b/src/templates/booking/quick_deploy.html @@ -26,6 +26,14 @@ .grid_element_2third { grid-column-start: span 8; } + #id_length { + -moz-appearance: none; + border: none; + box-shadow: none; + } + input[type=range]::-moz-range-track { + background: #cccccc; + } </style> {% bootstrap_form_errors form type='non_fields' %} <form id="quick_booking_form" action="/booking/quick/" method="POST" class="form"> diff --git a/src/templates/booking/steps/booking_meta.html b/src/templates/booking/steps/booking_meta.html index e4881ae..fe43f53 100644 --- a/src/templates/booking/steps/booking_meta.html +++ b/src/templates/booking/steps/booking_meta.html @@ -21,6 +21,15 @@ grid-template-columns: 45% 10% 45%; border: none; } + + #id_length { + -moz-appearance: none; + border: none; + box-shadow: none; + } + input[type=range]::-moz-range-track { + background: #cccccc; + } </style> {% bootstrap_form_errors form type='non_fields' %} |