Fix background for hovered "Create table" link in nav frame
This commit is contained in:
@@ -192,20 +192,32 @@ div#left_tableList li {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
#newtable{border:1px solid #aaa;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;margin-top:15px !important;padding:1px !important;
|
#newtable {
|
||||||
|
margin-top: 15px !important;
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
|
||||||
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
|
||||||
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#newtable:hover{
|
|
||||||
|
#newtable a {
|
||||||
|
display: block;
|
||||||
|
padding: 1px;
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
|
||||||
|
background: -moz-linear-gradient(top, #ffffff, #cccccc);
|
||||||
|
background: -o-linear-gradient(top, #ffffff, #cccccc);
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
-moz-border-radius: 20px;
|
||||||
|
-webkit-border-radius: 20px;
|
||||||
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#newtable li:hover {
|
||||||
|
background: transparent !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#newtable a:hover {
|
||||||
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)) !important;
|
background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)) !important;
|
||||||
background: -moz-linear-gradient(top, #cccccc, #dddddd) !important;
|
background: -moz-linear-gradient(top, #cccccc, #dddddd) !important;
|
||||||
background: -o-linear-gradient(top, #cccccc, #dddddd) !important;
|
background: -o-linear-gradient(top, #cccccc, #dddddd) !important;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd') !important;
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd') !important;
|
||||||
cursor:pointer !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
select{
|
select{
|
||||||
|
Reference in New Issue
Block a user