| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/admin/styles/admin/layouts/main/header/ |
Upload File : |
/*
Header Search Box
==========================================================================
Styles for the admin header search box.
*/
// Placeholder style.
@mixin placeholder-style {
padding-top: 2px;
padding-left: 4px;
color: $header-text-color;
font-size: $font-size-base;
font-weight: normal;
opacity: 1;
}
> .search {
width: calc(100% - 650px); // 650 comes from .logo width and .actions width.
&:before {
@extend %fa-icon;
@extend .fas;
content: fa-content($fa-var-search);
color: $header-text-color;
font-size: 15px;
line-height: 44px;
margin-left: 24px;
position: absolute;
}
// Input field.
.input {
padding: 0 0 0 (2 * $padding-large);
outline: 0;
color: $header-text-color;
background: transparent;
border: 0;
border-radius: 0; // reset standard input field behaviour
width: 100%;
height: 46px;
font-size: 14px;
transition: background-color 250ms linear;
// Placeholder styles.
&::-webkit-input-placeholder {
@include placeholder-style;
}
&:-moz-placeholder {
@include placeholder-style;
}
&::-moz-placeholder {
@include placeholder-style;
}
&:-ms-input-placeholder {
@include placeholder-style;
}
}
// Search list.
.list {
display: none;
// Visible state of search list.
&.active {
display: block;
position: relative;
top: -2px;
}
// Search list item.
.list-item {
font-size: $font-size-large;
cursor: pointer;
a {
padding: ($padding-small / 2) $padding-large;
.placeholder {
color: $header-bg-color;
}
}
}
}
}