mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
b59a977696
Minimum supported IE is 8. The release of this library removes code that supported IE7. Additionally, IE8, IE9, and IE10 support has been discontinued, however, the workarounds for these browsers are still present in this code.
60 lines
No EOL
983 B
CSS
60 lines
No EOL
983 B
CSS
#fileBrowserDialog{
|
|
max-height:480px;
|
|
overflow-y:auto
|
|
}
|
|
|
|
#fileBrowserDialog ul{
|
|
margin:0;
|
|
padding:0
|
|
}
|
|
|
|
#fileBrowserDialog ul li{
|
|
margin:2px 0;
|
|
cursor:pointer;
|
|
list-style-type:none
|
|
}
|
|
|
|
#fileBrowserDialog ul li a{
|
|
display:block;
|
|
padding:4px 0
|
|
}
|
|
|
|
#fileBrowserDialog ul li a:hover{
|
|
color:#09A2FF;
|
|
background:none
|
|
}
|
|
|
|
#fileBrowserDialog ul li a span.ui-icon{
|
|
margin:0 4px;
|
|
float:left
|
|
}
|
|
|
|
/* jquery ui autocomplete overrides to make it look more like the old autocomplete */
|
|
.ui-autocomplete{
|
|
max-height:180px;
|
|
overflow-y:auto;
|
|
/* prevent horizontal scrollbar */
|
|
overflow-x:hidden;
|
|
/* add padding to account for vertical scrollbar */
|
|
padding-right:20px
|
|
}
|
|
|
|
* html .ui-autocomplete{
|
|
height:180px
|
|
}
|
|
|
|
.ui-dialog .ui-menu .ui-menu-item{
|
|
font-size:12px;
|
|
color:#232323;
|
|
background-color:#eee
|
|
}
|
|
|
|
.ui-dialog .ui-menu .ui-menu-item-alternate{
|
|
background-color:#fff
|
|
}
|
|
|
|
.ui-dialog .ui-menu .ui-menu-item .ui-state-active{
|
|
background:none;
|
|
background-color:#0A246A;
|
|
color:#fff
|
|
} |