2018-08-27 17:01:08 +02:00
|
|
|
#search-overlay
|
2018-11-22 15:31:53 +01:00
|
|
|
position: fixed
|
2018-08-27 17:01:08 +02:00
|
|
|
top: 0
|
|
|
|
left: 0
|
|
|
|
right: 0
|
|
|
|
bottom: 0
|
|
|
|
width: 100%
|
|
|
|
height: 100%
|
|
|
|
visibility: hidden
|
|
|
|
opacity: 0
|
2018-11-22 15:31:53 +01:00
|
|
|
overflow-y: scroll
|
|
|
|
z-index: $zindex-sticky + 1
|
|
|
|
transition: visibility $long-transition, opacity $long-transition
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
&.show
|
2018-08-27 17:01:08 +02:00
|
|
|
opacity: 1
|
|
|
|
visibility: visible
|
2018-11-22 15:31:53 +01:00
|
|
|
background-color: rgba($body-bg, .7)
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
.qs-result
|
|
|
|
max-width: 80vw
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
#qs-toggle
|
|
|
|
opacity: 1
|
|
|
|
visibility: visible
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
.quick-search
|
|
|
|
opacity: 0
|
|
|
|
transition: opacity $short-transition
|
|
|
|
visibility: hidden
|
2018-08-31 19:32:17 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
.quick-search.show
|
|
|
|
opacity: 1
|
|
|
|
visibility: visible
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
.qs-input
|
|
|
|
input
|
|
|
|
border-style: solid
|
|
|
|
border-radius: $border-radius
|
|
|
|
height: $input-height-inner
|
|
|
|
padding: $input-padding-y 25px $input-padding-y $input-padding-x
|
|
|
|
width: 30vw
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
&:focus
|
|
|
|
&+i+select
|
|
|
|
border-color: $color-primary
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
&.multi-scope // has a select next to it
|
|
|
|
border-right: none
|
|
|
|
border-bottom-right-radius: 0
|
|
|
|
border-top-right-radius: 0
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
select
|
|
|
|
border-width: 2px
|
|
|
|
border-left: none
|
|
|
|
border-bottom-right-radius: $border-radius
|
|
|
|
border-top-right-radius: $border-radius
|
|
|
|
height: $input-height-inner
|
|
|
|
margin-left: 5px
|
|
|
|
padding: $input-padding-y $input-padding-x
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
&:focus, option
|
|
|
|
// background-color: $dark
|
|
|
|
// color: $light
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-11-22 15:31:53 +01:00
|
|
|
.qs-busy-symbol
|
|
|
|
margin-left: -2em
|