Started on row editor, removed lots of 's for nice speed increase

This commit is contained in:
Rashid Khan
2013-02-12 16:25:39 -07:00
parent 0703dd8799
commit 81962c831b
13 changed files with 105 additions and 66 deletions

View File

@@ -20,20 +20,32 @@
z-index: 2000;
}
span.editlink {
.panel i.editlink {
position: absolute;
right: 5px;
z-index: 800;
display: none;
}
.panel:hover span.editlink {
.panel:hover i.editlink {
display: block;
opacity: 0.3;
}
.panel span.editlink:hover {
display: block;
.panel i.editlink:hover {
opacity: 1;
}
.row-header i.editlink {
display: none;
}
.row-header:hover i.editlink {
display: inline-block;
opacity: 0.3;
}
.row-header i.editlink:hover {
opacity: 1;
}