From 886fc9551c45ec83c70a9fd7d394d1829f41b9e7 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 30 Jul 2011 13:25:45 +0200 Subject: [PATCH] limited width of select forms in dialogs (fixes #101) --- htdocs/frontend/stylesheets/style.css | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/htdocs/frontend/stylesheets/style.css b/htdocs/frontend/stylesheets/style.css index e514940..4f5d3e6 100644 --- a/htdocs/frontend/stylesheets/style.css +++ b/htdocs/frontend/stylesheets/style.css @@ -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%; +} +