some improvements to lists (editable, sortable)
This commit is contained in:
parent
53fb84425e
commit
c29a8c9fda
2 changed files with 233 additions and 43 deletions
|
|
@ -22,6 +22,10 @@ div, input, textarea {
|
|||
font-family: Lucida Grande, Segoe UI, DejaVu Sans, Arial;
|
||||
font-size: 11px;
|
||||
}
|
||||
img {
|
||||
-moz-user-drag: none;
|
||||
-webkit-user-drag: none;
|
||||
}
|
||||
td {
|
||||
padding: 0;
|
||||
}
|
||||
|
|
@ -243,6 +247,16 @@ input.OxMedium {
|
|||
-moz-border-radius: 8px;
|
||||
-webkit-border-radius: 8px;
|
||||
}
|
||||
input.OxMedium.OxRounded {
|
||||
padding: 0 6px 0 6px;
|
||||
-moz-border-radius: 8px;
|
||||
-webkit-border-radius: 8px;
|
||||
}
|
||||
input.OxMedium.OxSquare {
|
||||
padding: 0 2px 0 2px;
|
||||
-moz-border-radius: 0;
|
||||
-webkit-border-radius: 0;
|
||||
}
|
||||
input.OxSmall {
|
||||
height: 10px;
|
||||
padding: 0 4px 0 4px;
|
||||
|
|
@ -422,12 +436,18 @@ OxInput
|
|||
*/
|
||||
div.OxInput {
|
||||
height: 16px;
|
||||
-moz-border-radius: 8px;
|
||||
-webkit-border-radius: 8px;
|
||||
}
|
||||
div.OxInput.OxMedium {
|
||||
height: 16px;
|
||||
}
|
||||
div.OxInput.OxRounded {
|
||||
-moz-border-radius: 8px;
|
||||
-webkit-border-radius: 8px;
|
||||
}
|
||||
div.OxInput.OxSquare {
|
||||
-moz-border-radius: 0;
|
||||
-webkit-border-radius: 0;
|
||||
}
|
||||
div.OxInput > .OxInputLabel {
|
||||
float: left;
|
||||
padding: 0 6px 0 6px;
|
||||
|
|
@ -763,11 +783,6 @@ Lists
|
|||
//-webkit-user-select: text;
|
||||
}
|
||||
|
||||
.OxTextList .OxCell {
|
||||
float: left;
|
||||
height: 12px;
|
||||
padding: 2px 4px 2px 4px;
|
||||
}
|
||||
.OxTextList .OxBar {
|
||||
//z-index: 10;
|
||||
//-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
|
||||
|
|
@ -879,6 +894,10 @@ Lists
|
|||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.OxTextList .OxBody .OxItem .OxCell.OxEdit {
|
||||
height: 16px;
|
||||
padding: 0;
|
||||
}
|
||||
.OxTextList .OxBody .OxItem .OxCell > img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue