Commit 8c5ab3426d907438f2b508480e37476e386390d1
1 parent
c37aa673
Exists in
master
and in
2 other branches
Responsive search button color update
Showing
5 changed files
with
17 additions
and
2 deletions
Show diff stats
amadeus/static/css/themes/black.css
... | ... | @@ -639,6 +639,9 @@ a.add-row { |
639 | 639 | .chat-panel .chat-collapse { |
640 | 640 | background: #EEE; } |
641 | 641 | |
642 | +.fa-search-custom{ | |
643 | + color: #424242; | |
644 | +} | |
642 | 645 | /* === End Chat === */ |
643 | 646 | @media(max-width: 768px) { |
644 | 647 | .navbar .navbar-nav .dropdown .dropdown-menu li > a { | ... | ... |
amadeus/static/css/themes/contrast.css
amadeus/static/css/themes/green.css
... | ... | @@ -591,6 +591,11 @@ a.add-row { |
591 | 591 | .chat-panel .chat-collapse { |
592 | 592 | background: #EEE; } |
593 | 593 | |
594 | + | |
595 | +.fa-search-custom{ | |
596 | + color: #009C8A; | |
597 | +} | |
598 | + | |
594 | 599 | /* === End Chat === */ |
595 | 600 | @media(max-width: 768px) { |
596 | 601 | .navbar .navbar-nav .dropdown .dropdown-menu li > a { | ... | ... |
amadeus/static/css/themes/red.css
... | ... | @@ -639,6 +639,10 @@ a.add-row { |
639 | 639 | .chat-panel .chat-collapse { |
640 | 640 | background: #EEE; } |
641 | 641 | |
642 | +.fa-search-custom{ | |
643 | + color: #D32F2F; | |
644 | +} | |
645 | + | |
642 | 646 | /* === End Chat === */ |
643 | 647 | @media(max-width: 768px) { |
644 | 648 | .navbar .navbar-nav .dropdown .dropdown-menu li > a { | ... | ... |
amadeus/templates/base.html
... | ... | @@ -233,11 +233,11 @@ |
233 | 233 | <form id="SearchForm" action="{% url 'subjects:search' %}" method="get" accept-charset="utf-8"> |
234 | 234 | <div class="input-group"> |
235 | 235 | <div class="form-group is-empty" > |
236 | - <input type="text" class="form-control top-search" placeholder="{% trans 'Search for subjects and resources' %}" name="search" style="color:#009C8A;"> | |
236 | + <input type="text" class="form-control top-search fa-search-custom" placeholder="{% trans 'Search for subjects and resources' %}" name="search"> | |
237 | 237 | </div> |
238 | 238 | <span class="input-group-btn input-group-sm"> |
239 | 239 | <button type="submit" class="btn btn-primary" id="btn-search"> |
240 | - <i class="fa fa-search" aria-hidden="true" style="font-size:20px; color: #009C8A;"></i> | |
240 | + <i class="fa fa-search fa-search-custom" aria-hidden="true" style="font-size:20px;"></i> | |
241 | 241 | </button> |
242 | 242 | </span> |
243 | 243 | </div> | ... | ... |