[#22,bugfix][xs]: edit button for cells had gone missing.

This commit is contained in:
Rufus Pollock 2012-01-07 03:17:52 +00:00
parent 638eff6c3c
commit b183e70688

View File

@ -132,20 +132,6 @@
width: 20px;
}
/********* read-only mode **********/
.read-only .data-table tr td:first-child,
.read-only .data-table tr th:first-child
{
display: none;
}
.read-only .column-header-menu,
.read-only .row-header-menu
{
display: none;
}
/**********************************************************
* Data Table Menus
*********************************************************/
@ -228,6 +214,10 @@ a.data-table-cell-edit:hover {
background-position: -25px 0px;
}
.data-table td:hover .data-table-cell-edit {
visibility: visible;
}
div.data-table-cell-content-numeric > a.data-table-cell-edit {
left: 0px;
right: auto;
@ -502,3 +492,21 @@ td.expression-preview-value {
color: #666;
}
/**********************************************************
* Read-only mode
*********************************************************/
.read-only .data-table tr td:first-child,
.read-only .data-table tr th:first-child
{
display: none;
}
.read-only .column-header-menu,
.read-only .row-header-menu,
.read-only a.data-table-cell-edit
{
display: none;
}