mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-20 20:21:23 +01:00
- Improved egw_action.js: - Bugfixing regaring handling of egwActionObjects organized in trees (hasn't been tested before) - Improved egwActionObjectInterface interface and functionality: AOIs can now mark themselves as invisible/visible and request the action objects to reconnect the action implementations - Action objects do now automatically register the action implementations - Vastly improved speed when working with huge amounts (> 500) of objects organized in trees (as done in the grid test) - Improved egwActionObject functionality: Added new functions regarding selecting groups of objects
95 lines
1.4 KiB
CSS
95 lines
1.4 KiB
CSS
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body, td, th {
|
|
font-family: Verdana,Arial,Helvetica,sans-serif;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.grid {
|
|
width: 100%;
|
|
border-spacing: 0px;
|
|
}
|
|
|
|
.grid tr.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.grid td, .grid th {
|
|
border: 1px solid white;
|
|
}
|
|
|
|
.grid tr.focused td {
|
|
border: 1px dotted black;
|
|
}
|
|
|
|
.grid tr.selected td {
|
|
background-image: url(imgs/select_overlay.png);
|
|
background-position: center;
|
|
background-repeat: repeat-x;
|
|
}
|
|
|
|
.grid span.arrow {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 8px;
|
|
height: 8px;
|
|
background-repeat: no-repeat;
|
|
margin-right: 2px;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.grid span.arrow.opened {
|
|
cursor: pointer;
|
|
background-image: url(imgs/arrows.png);
|
|
background-position: -8px 0;
|
|
}
|
|
|
|
.grid span.arrow.closed {
|
|
cursor: pointer;
|
|
background-image: url(imgs/arrows.png);
|
|
background-position: 0 0;
|
|
}
|
|
|
|
.grid tr.odd {
|
|
background-color: #F1F1F1;
|
|
}
|
|
|
|
.grid th {
|
|
background-color: #E0E0E0;
|
|
font-weight: normal;
|
|
padding: 5px;
|
|
text-align: left;
|
|
}
|
|
|
|
.grid td {
|
|
padding: 0 5px 0 5px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.grid th.front {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.grid span.caption {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.grid span.indentation {
|
|
display: inline-block;
|
|
}
|
|
|
|
.grid img.icon {
|
|
vertical-align: middle;
|
|
margin: 2px 5px 2px 2px;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
user-select: none;
|
|
}
|