2016-01-29 01:27:15 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Martin Donath <martin.donath@squidfunk.com>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2016-02-04 17:03:20 +03:00
|
|
|
* Nothing to see here, move along
|
2016-09-02 01:33:45 +03:00
|
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.md-search__suggest {
|
|
|
|
background: $md-color-white;
|
|
|
|
border-radius: 0 0 px2rem(3px) px2rem(3px);
|
|
|
|
color: black;
|
|
|
|
text-align: left;
|
|
|
|
border-top: px2rem(1px) solid $md-color-black--lightest;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
.md-search__input:focus ~ & {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-search__input:focus {
|
|
|
|
border-radius: px2rem(3px) px2rem(3px) 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include break-to-device(mobile landscape) {
|
|
|
|
.md-search__inner {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 56px;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: 2;
|
|
|
|
transform: translate3d(5%, 0, 0);
|
|
|
|
transition: transform .3s .15s cubic-bezier(0.1, 0.7, 0.1, 1.0), opacity .15s .15s;
|
|
|
|
|
|
|
|
#md-toggle-search:checked ~ .md-header & {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
left: 0;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-search__suggest {
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
}
|