diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php index 74060db20..5b1fea4a7 100644 --- a/themes/darkblue_orange/css/theme_right.css.php +++ b/themes/darkblue_orange/css/theme_right.css.php @@ -1377,4 +1377,54 @@ input#input_import_file { .formelementrow { margin: 5px 0px 5px 0px; +} + +/** + * ENUM/SET editor styles + */ +p.enum_notice { + margin: 5px 2px; + font-size: 80%; +} + +#enum_editor { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + width: 50%; + height: 80%; + background: #D0DCE0; + z-index: 101; + padding: 15px; + overflow: auto; +} + +#popup_background { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + width: 100%; + height: 100%; + top: 0; + left: 0; + background: #000; + z-index: 100; +} + +a.close_enum_editor { + float: right; +} + +#enum_editor #values { + margin: 15px 0px; +} + +#enum_editor #values input { + margin: 5px 0px; + float: top; + width: 100%; +} + +#enum_editor input { + float: bottom; } \ No newline at end of file diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 462fec425..3eb8d96d1 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -53,7 +53,7 @@ h3 { font-weight: bold; } -a:link, +a, a:link, a:visited, a:active { text-decoration: none; @@ -1248,7 +1248,7 @@ table#serverconnection_trg_local { .exportoptions li, .importoptions li { margin: 7px; } -.exportoptions label, .importoptions label, .exportoptions p, .importoptions p { +.exportoptions label, .importoptions label, .exportoptions p, .importoptions p { margin: 5px; float: none; } @@ -1309,3 +1309,53 @@ input#input_import_file { .formelementrow { margin: 5px 0px 5px 0px; } + +/** + * ENUM/SET editor styles + */ +p.enum_notice { + margin: 5px 2px; + font-size: 80%; +} + +#enum_editor { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + width: 50%; + height: 80%; + background: #D0DCE0; + z-index: 101; + padding: 15px; + overflow: auto; +} + +#popup_background { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + width: 100%; + height: 100%; + top: 0; + left: 0; + background: #000; + z-index: 100; +} + +a.close_enum_editor { + float: right; +} + +#enum_editor #values { + margin: 15px 0px; +} + +#enum_editor #values input { + margin: 5px 0px; + float: top; + width: 100%; +} + +#enum_editor input { + float: bottom; +} \ No newline at end of file