limited width of select forms in dialogs (fixes #101)

This commit is contained in:
Steffen Vogel 2011-07-30 13:25:45 +02:00
parent 18e29412f6
commit 886fc9551c

View file

@ -95,6 +95,7 @@ tr.entity td {
height: 28px;
}
/* header */
#headline {
margin-bottom: 15px;
}
@ -104,10 +105,16 @@ tr.entity td {
float: left;
}
#links {
#export {
float: right;
}
#export option {
font-size: 16px;
padding-left: 20px;
background-repeat: no-repeat;
}
/* treeTable for entities */
#entity-list tbody span {
background-position: left center;
@ -143,3 +150,10 @@ tr.entity td {
.expander {
width: 20px;
}
/* dialogs */
.dialog select {
width: 100%;
}