summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose
diff options
context:
space:
mode:
authorGabriel Albo <gabriel@albo.com.br>2015-11-04 15:09:42 -0200
committerGabriel Albo <gabriel@albo.com.br>2015-11-04 15:42:13 -0200
commit1b34317dcdc39b779e6506b1ad4e51ea4365bf7f (patch)
tree776b03b8899fb50ef053534fd8ff01de8f82bdde /web-ui/app/templates/compose
parent9c2318ee52b70437cd4e834539d20ed00194280d (diff)
#504 - Making the recipients fields have a distinct background color when focused (like subject and body already did)
Diffstat (limited to 'web-ui/app/templates/compose')
-rw-r--r--web-ui/app/templates/compose/recipients.hbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/web-ui/app/templates/compose/recipients.hbs b/web-ui/app/templates/compose/recipients.hbs
index 7971678f..effe48e2 100644
--- a/web-ui/app/templates/compose/recipients.hbs
+++ b/web-ui/app/templates/compose/recipients.hbs
@@ -2,18 +2,18 @@
<div id='recipients-to-area' class="recipients-area input-container columns large-12 no-padding">
<input class="recipients-navigation-handler"/>
<label for="recipients-to-box" class="recipients-label column large-1">{{t 'TO'}}: </label>
- <input id='recipients-to-box' type="text" tabindex="1"/>
+ <input id='recipients-to-box' class="recipients-input" type="text" tabindex="1"/>
</div>
<div id="recipients-cc-area" class="recipients-area input-container columns large-12 no-padding">
<input class="recipients-navigation-handler"/>
<label for="recipients-cc-box" class="recipients-label column large-1">{{t 'CC'}}: </label>
- <input id='recipients-cc-box' type="text" tabindex="2"/>
+ <input id='recipients-cc-box' class="recipients-input" type="text" tabindex="2"/>
</div>
<div id="recipients-bcc-area" class="recipients-area input-container columns large-12 no-padding">
<input class="recipients-navigation-handler"/>
<label for ="recipients-bcc-box" class="recipients-label column large-1">{{t 'BCC'}}: </label>
- <input id='recipients-bcc-box' type="text" tabindex="3"/>
+ <input id='recipients-bcc-box' class="recipients-input" type="text" tabindex="3"/>
</div>
</div>