29 lines
753 B
PHP
29 lines
753 B
PHP
<div class="d-flex">
|
|
<div class="global-search-container">
|
|
<input type="text" class="form-control d-inline-block" id="globalSearch" placeholder="<?= __('Search in Cerebrate') ?>">
|
|
<i class="icon <?= $this->FontAwesome->getClass('search') ?>"></i>
|
|
</div>
|
|
<div class="header-menu d-flex ml-1">
|
|
<?= $this->element('layouts/header/header-notifications') ?>
|
|
<?= $this->element('layouts/header/header-profile') ?>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.top-navbar .global-search-container {
|
|
position: relative;
|
|
}
|
|
|
|
#globalSearch {
|
|
padding-right: 26px;
|
|
}
|
|
#globalSearch {
|
|
padding-right: 26px;
|
|
}
|
|
|
|
.top-navbar .global-search-container > i.icon {
|
|
position: absolute;
|
|
right: 8px;
|
|
line-height: 38px;
|
|
}
|
|
</style>
|