Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions src/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -739,21 +739,32 @@ footer {
width: 100%;
padding: 0 15px 0 37px;
background: transparent;
font-family: 'Merriweather Sans', Arial, Helvetica, sans-serif;
font-size: 22px;
outline: none;
box-shadow: none; }
.search-wrapper input:focus {
outline: none;
box-shadow: none; }

.search-wrapper ::-webkit-input-placeholder {
color: #7f7f7f; }
color: #7f7f7f;
text-transform: uppercase;
font-size: 11px;
}

.search-wrapper ::-moz-placeholder {
/* Firefox 19+ */
color: #7f7f7f; }
color: #7f7f7f;
text-transform: uppercase;
font-size: 11px;
}

.search-wrapper :-ms-input-placeholder {
color: #7f7f7f; }
color: #7f7f7f;
text-transform: uppercase;
font-size: 11px;
}

.search-wrapper .submenu:before {
content: '';
Expand Down
2 changes: 1 addition & 1 deletion src/js/app/header/partials/header-nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<button type="button" class="btn-expand-search search-icon"></button>
</div>
<div class="submenu">
<input type="text" placeholder="find people" ng-model="vm.searchTerm" ng-keyup="vm.checkSubmit($event)"/>
<input type="text" placeholder="find members" ng-model="vm.searchTerm" ng-keyup="vm.checkSubmit($event)"/>
</div>
</li>
<li ng-switch="vm.isAuth" ng-class="{'anonymous-menu': !vm.isAuth}" class="menu-item link-group user-menu">
Expand Down