invoiceninja/public/css/typeahead.js-bootstrap.css

71 lines
1.5 KiB
CSS
Raw Normal View History

2016-02-28 22:43:43 +02:00
/**********************************************************
* typeahead.js v0.11.1 - twitter bootstrap v3.3.5 *
**********************************************************/
/*root typeahead class*/
.twitter-typeahead {
/*display: inherit !important;*/
2016-02-28 22:43:43 +02:00
width: 100%;
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
.twitter-typeahead .tt-input[disabled] {
background-color : #eeeeee !important;
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*Added to input that's initialized into a typeahead*/
.twitter-typeahead .tt-input {
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*Added to hint input.*/
.twitter-typeahead .hint {
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*Added to menu element*/
.twitter-typeahead .tt-menu {
width: 100%;
max-height: 500px;
overflow-y: none;
border: 1px solid #cccccc;
border-radius:4px;
-moz-box-shadow: 12px 14px 30px -7px #616161;
-webkit-box-shadow: 12px 14px 30px -7px #616161;
box-shadow: 12px 14px 30px -7px #616161;
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*Added to dataset elements*/
.twitter-typeahead .tt-dataset {
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*dded to suggestion elements*/
.twitter-typeahead .tt-suggestion {
padding: 3px 20px;
white-space: nowrap;
}
/*Added to menu element when it contains no content*/
.twitter-typeahead .tt-empty {
background-color: white;
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*Added to menu element when it is opened*/
.twitter-typeahead .tt-open {
background-color: white;
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*Added to suggestion element when menu cursor moves to said suggestion*/
.twitter-typeahead .tt-suggestion:hover,
.twitter-typeahead .tt-suggestion:focus,
.twitter-typeahead .tt-cursor {
cursor: hand !important;
background-color: #337ab7;
color: white;
2013-11-26 14:45:07 +02:00
}
2016-02-28 22:43:43 +02:00
/*Added to the element that wraps highlighted text*/
.twitter-typeahead .tt-highlight {
2013-11-26 14:45:07 +02:00
}