mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
55 lines
807 B
CSS
55 lines
807 B
CSS
/**
|
|
* CSS for the widget browser
|
|
* Api\Etemplate\WidgetBrowser.php
|
|
*/
|
|
|
|
/* Basic layout */
|
|
#widget_list {
|
|
position: fixed;
|
|
width: 260px;
|
|
}
|
|
#widget_list ul {
|
|
position: fixed;
|
|
top: 0px;
|
|
overflow-y: scroll;
|
|
height: 55%;
|
|
width: inherit;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#widget_attributes {
|
|
position: fixed;
|
|
bottom: 0px;
|
|
height: 44%;
|
|
width: inherit;
|
|
overflow-y: auto;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#widget_attributes table{
|
|
width: 100%;
|
|
}
|
|
#widget_container{
|
|
position: fixed;
|
|
left: 260px;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Nicer looks */
|
|
#widget_list li {
|
|
cursor:pointer;
|
|
padding: 0.4em;
|
|
font-size: 1.4em;
|
|
height: 16px;
|
|
}
|
|
/* DTD Generator Button*/
|
|
.dtd_btn{
|
|
width: 100px;
|
|
height: 35px;
|
|
float: right;
|
|
box-shadow: 1px 1px 1px 1px gray;
|
|
border: white solid 1px;
|
|
border-radius: 10px;
|
|
}
|