I have a problem with google chrome and bootstrap's css
So this is the thing, in HTML i just set the class of bootstrap
<div id ="SiteLanguage" style="margin-top:10px">
<asp:DropDownList
CssClass="selectpicker btn btn-primary dropdown-toggle"
id="ddlSiteLanguageSelect"
runat="server" AutoPostBack="true"
OnSelectedIndexChanged="ddlSiteLanguageSelect_IndexChanged">
</asp:DropDownList>
</div>
And in CSS i override bootstrap's properties
select > option:checked, select > option:hover
{
box-shadow: 0 0 10px 100px #dc6900 inset;
background-color: #dc6900;
}
.selectpicker:hover, .btn:hover, .btn-primary:hover, .dropdown-toggle:hover, .dropdown-content a:hover
{
background-color: #dc6900;
}
And in Mozzila it looks awesome, as it was intended, hover color is dark orange
But in Google Chrome ... for some reason, from somewhere, on hover it's dragging blue color and i can't figure it out from where ...
So after days of trying, googling, changing and switching ... I ran out of ideas what to do here. Can you toss me some advice please?
Thank you
Edit :
I uploaded problem to http://s000.tinyupload.com/index.php?file_id=47969215008672622206
Google drive link : https://drive.google.com/file/d/0Bza939idb7sJcmluWVhnX2VzNFE/view?ts=5785f7b5
In Style folder : main file is Upitnici.css
,
scripts folder just contains libraries
If you open Problem.html
in Mozzila you'll see everything ok, In google chrome you you'll see hovering on options having blue background color
Thank you!