forked from extern/egroupware
5fea4ed9a5
- Better support for dropping application entries on Home portlet area - Add a portlet that shows a list of entries, supports dropping into the list
53 lines
777 B
CSS
53 lines
777 B
CSS
/**
|
|
* Home CSS
|
|
*/
|
|
|
|
#portlets {
|
|
border: 1px solid silver;
|
|
width: 100%;
|
|
min-width: 100px;
|
|
min-height: 100px;
|
|
position: relative;
|
|
}
|
|
|
|
.home .et2_portlet > .ui-widget-header {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.et2_portlet.ui-widget-content {
|
|
overflow: hidden;
|
|
}
|
|
.et2_portlet.ui-widget-content > div:last-of-type {
|
|
height: 100%;
|
|
}
|
|
|
|
/* Shapeshift
|
|
#portlets {
|
|
position: relative;
|
|
}
|
|
.home .et2_portlet {
|
|
position: absolute;
|
|
}
|
|
#portlets .ss-placeholder-child {
|
|
background: transparent;
|
|
border: 1px dashed silver;
|
|
position: absolute;
|
|
}
|
|
*/
|
|
|
|
/* Gridster */
|
|
#portlets {
|
|
position: relative;
|
|
}
|
|
.home .et2_portlet {
|
|
position: absolute;
|
|
margin: 5px;
|
|
}
|
|
#portlets .preview-holder {
|
|
margin: 5px;
|
|
list-style: none;
|
|
background: transparent;
|
|
border: 1px dashed silver;
|
|
position: absolute;
|
|
}
|