mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
css: Add "bootstrap-focus-style" class to select elements.
This commit adds "bootstrap-focus-style" class to the select elements such that we can add CSS rule for focusing a select element at single place only using this class.
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
<div class="row1">
|
||||
<div>
|
||||
<label for="bot_name"><b>Bot</b></label>
|
||||
<select id="bot_name">
|
||||
<select class="bootstrap-focus-style" id="bot_name">
|
||||
<option value=""></option>
|
||||
{% for bot in bots %}
|
||||
<option value="{{ bot.api_key }}"> {{ bot.full_name }} </option>
|
||||
@@ -47,7 +47,7 @@
|
||||
|
||||
<div>
|
||||
<label><b>Integration</b></label>
|
||||
<select id="integration_name">
|
||||
<select class="bootstrap-focus-style" id="integration_name">
|
||||
<option value=""></option>
|
||||
{% for integration in integrations %}
|
||||
<option value="{{ integration }}"> {{ integration }} </option>
|
||||
@@ -57,7 +57,7 @@
|
||||
|
||||
<div>
|
||||
<label for="fixture_name"><b>Fixture</b></label>
|
||||
<select id="fixture_name"></select>
|
||||
<select class="bootstrap-focus-style" id="fixture_name"></select>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user