Component-Builder/admin/custom/uikit-v2/css/components/autocomplete.gradient.css

58 lines
1.3 KiB
CSS
Raw Normal View History

2019-04-22 13:31:39 +00:00
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
2016-01-30 20:28:43 +00:00
/* ========================================================================
Component: Autocomplete
========================================================================== */
/*
* 1. Container width fits its content
* 2. Create position context
* 3. Prevent `inline-block` consequences
* 4. Remove the gap between the container and its child element
*/
.uk-autocomplete {
/* 1 */
display: inline-block;
/* 2 */
position: relative;
/* 3 */
max-width: 100%;
/* 4 */
vertical-align: middle;
}
2017-11-12 00:33:10 +00:00
/* Legacy dropdown modifier */
.uk-dropdown-flip {
left: auto;
right: 0;
}
2016-01-30 20:28:43 +00:00
/* Nav modifier `uk-nav-autocomplete`
========================================================================== */
/*
* Items
*/
.uk-nav-autocomplete > li > a {
2017-11-12 00:33:10 +00:00
color: #444;
2016-01-30 20:28:43 +00:00
}
/*
* Active
* 1. Remove default focus style
*/
.uk-nav-autocomplete > li.uk-active > a {
background: #009dd8;
2017-11-12 00:33:10 +00:00
color: #fff;
2016-01-30 20:28:43 +00:00
/* 1 */
outline: none;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/*
* Sub-object: `uk-nav-header`
*/
.uk-nav-autocomplete .uk-nav-header {
2017-11-12 00:33:10 +00:00
color: #999;
2016-01-30 20:28:43 +00:00
}
/*
* Sub-object: `uk-nav-divider`
*/
.uk-nav-autocomplete .uk-nav-divider {
2017-11-12 00:33:10 +00:00
border-top: 1px solid #ddd;
2016-01-30 20:28:43 +00:00
}