From 0542e9226e1e41abe292f3d9b5efad468189e4e6 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 29 Aug 2015 12:34:49 +0200 Subject: [PATCH] style for fixed autocomplete --- html/style-mandarine.css | 68 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/html/style-mandarine.css b/html/style-mandarine.css index 6fc506b00..234e001c9 100644 --- a/html/style-mandarine.css +++ b/html/style-mandarine.css @@ -2005,3 +2005,71 @@ button.cancel { .queue{ display:none; } + +/***************************************************************************** + * autocomplete style + *****************************************************************************/ + +div.autocomplete_fixed { + background-color:#FFFFFF; + border:1px solid #C76626; + margin:0px; + padding:0px; + text-align:left; +} +div.autocomplete_fixed em { + color: #C76626; + font-weight:bold; +} +div.autocomplete_fixed ul { + list-style-type:none; + background-color:#FFFFFF; + border:1px solid blue; + width:300px; + margin:0px; + padding:0px; + } +div.tag { + +} +@media only screen and (max-width: 1280px) { + div.autocomplete_fixed ul { + list-style-type:none; + background-color:#FFFFFF; + border:1px solid blue; + width:300px; + margin:0px; + padding:0px; + } + div.tag { + + } + +} +@media only screen and (min-width: 1281px) { + div.autocomplete_fixed ul { + list-style-type:none; + background-color:#FFFFFF; + border:1px solid orangered; + width:500px; + margin:0px; + padding:0px; + } + div.tag { + width: 50%; + } + + +} +div.autocomplete_fixed ul li.selected { + background-color: #feccb1; + border-bottom: 1px solid black; +} + +div.autocomplete_fixed ul li { + list-style-type:none; + display:block; + margin:0px; + padding:0px; + cursor:pointer; +} \ No newline at end of file