mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Remove whitespace and semi-colon redundancy from CSS shedding 4.5kb.
This commit is contained in:
parent
cb8f6aa1af
commit
a127187d3a
5 changed files with 3579 additions and 3569 deletions
|
@ -49,6 +49,7 @@
|
|||
* Change log rotation to occur at midnight
|
||||
* Change to keep a maximum of 7 log files
|
||||
* Add automatic compression of old log files
|
||||
* Remove whitespace and semi-colon redundancy from CSS shedding 4.5kb
|
||||
* Change overhaul menu and button icons
|
||||
|
||||
[develop changelog]
|
||||
|
|
|
@ -1,50 +1,58 @@
|
|||
#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;
|
||||
#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;
|
||||
.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;
|
||||
|
||||
* html .ui-autocomplete{
|
||||
height:180px
|
||||
}
|
||||
.ui-menu .ui-menu-item {
|
||||
background-color: #eeeeee;
|
||||
|
||||
.ui-menu .ui-menu-item{
|
||||
background-color:#eee
|
||||
}
|
||||
|
||||
.ui-menu .ui-menu-item-alternate{
|
||||
background-color: #ffffff;
|
||||
background-color:#fff
|
||||
}
|
||||
|
||||
.ui-menu a.ui-state-hover{
|
||||
background: none;
|
||||
background-color: #0A246A;
|
||||
color: #ffffff;
|
||||
}
|
||||
background:none;
|
||||
background-color:#0A246A;
|
||||
color:#fff
|
||||
}
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue