@@ -, +, @@ regressions Default framework. flex to remain the full width, keeping the controls to duplicate and delete a subfield out directly to the right of the input. click the linked authority term to open the Authority detail display are all different colors, and subfield codes are on the same line as the subfield contents. shrink your browser window editor, shrinking and widening to fill the width of the page, keeping the controls to duplicate and delete subfields immediately to the right of the field the Authority detail display are still properly colored and subfield codes are still on the same line as the subfield contents. --- koha-tmpl/intranet-tmpl/prog/css/addbiblio.css | 58 ++++++++++++++++++++++---- 1 file changed, 50 insertions(+), 8 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css +++ a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css @@ -159,21 +159,21 @@ a.tagnum { float: left; } -.subfieldcode { +#cat_addbiblio .subfieldcode, #authoritytabs .subfieldcode { float: none; } -.labelsubfield { +#cat_addbiblio .labelsubfield, #authoritytabs .labelsubfield { font-size: 90%; float: none; } -.subfield { +#cat_addbiblio .subfield, #authoritytabs .subfield { float: none; padding: .25em .5em; } -.subfield label { +#cat_addbiblio .subfield label, #authoritytabs .subfield label { color: #00698a; } @@ -182,21 +182,21 @@ a.tagnum { width:30em; } -.input_marceditor { +#cat_addbiblio .input_marceditor, #authoritytabs .input_marceditor { float: none; width: 100%; } -.subfield_line { +#cat_addbiblio .subfield_line, #authoritytabs .subfield_line { display: flex; } -.field_marceditor { +#cat_addbiblio .field_marceditor, #authoritytabs .field_marceditor { flex-grow: 1; padding: .25em .5em; } -.subfield_loop_mandatory { +#cat_addbiblio .subfield_loop_mandatory, #authoritytabs .subfield_loop_mandatory { padding: .25em .5em; } @@ -400,3 +400,45 @@ tbody tr.active td { z-index: 2000; } +#authoritiestabs .marc_field { + display: inline-block; + padding: .3em; + border-radius: 3px; +} + +#authoritiestabs .marc_subfield { + font-weight: bold; + color: #666; +} + +#authoritiestabs .marc_subfield_desc { + color: #00698a; + font-style: italic; +} + +#authoritiestabs .auth_subfield { + display: flex; +} + +#authoritiestabs .tag { + padding: .4em 0; +} + +#authoritiestabs .tag_desc { + color: #026; +} + +#authoritiestabs .tag_num { + color: #080; +} + +#authoritiestabs .tag_title { + font-size: 100%; + font-weight: bold; + padding: 0; +} + +#authoritiestabs .ui-tabs-nav.ui-widget-header { + border-bottom: 1px solid #b9d8d9; + border-radius: 0; +} --