View | Details | Raw Unified | Return to bug 10987
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-2 / +4 lines)
Lines 2267-2277 ul.ui-tabs-nav li { Link Here
2267
}
2267
}
2268
2268
2269
.authref {
2269
.authref {
2270
    text-indent: 2em;
2270
    font-style: normal;
2271
    text-indent: 4em;
2271
}
2272
}
2272
2273
2273
.authref .label {
2274
.seefrom, .seealso {
2274
    font-style: italic;
2275
    font-style: italic;
2276
    text-indent: 2em;
2275
}
2277
}
2276
2278
2277
#authfinderops {
2279
#authfinderops {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc (-11 / +10 lines)
Lines 21-33 Link Here
21
            <span class="RT">RT: [% heading | html %]</span>
21
            <span class="RT">RT: [% heading | html %]</span>
22
        [% END %]
22
        [% END %]
23
    [% ELSE %]
23
    [% ELSE %]
24
        <span class="label">
25
        [% IF ( linkType=='seefrom' ) %]
26
            used for/see from:
27
        [% ELSIF  ( linkType=='seealso' ) %]
28
            see also:
29
        [% END %]
30
        </span>
31
        <span class="heading">
24
        <span class="heading">
32
        [% IF ( linkType=='seealso' ) %]
25
        [% IF ( linkType=='seealso' ) %]
33
            [% IF ( authid ) %]
26
            [% IF ( authid ) %]
Lines 98-106 Link Here
98
              </div>
91
              </div>
99
            [% END %]
92
            [% END %]
100
        [% ELSE %]
93
        [% ELSE %]
101
            [% IF ( summary.seefrom ) %]
94
            [% IF ( summary.seefrom.size > 1 ) %]
95
            <div class="seefrom">
96
                <span class="seefrom">used for/see from:</span>
102
                [% FOREACH seefro IN summary.seefrom %]
97
                [% FOREACH seefro IN summary.seefrom %]
103
                    <div class="seefrom authref">
98
                    <div class="authref">
104
                    [% PROCESS showreference
99
                    [% PROCESS showreference
105
                        heading=seefro.heading
100
                        heading=seefro.heading
106
                        linkType='seefrom'
101
                        linkType='seefrom'
Lines 109-118 Link Here
109
                    %]
104
                    %]
110
                    </div>
105
                    </div>
111
                [% END %]
106
                [% END %]
107
            </div>
112
            [% END %]
108
            [% END %]
113
            [% IF ( summary.seealso ) %]
109
            [% IF ( summary.seealso.size > 1 ) %]
110
            <div class="seealso">
111
                <span class="seealso">see also:</span>
114
                [% FOREACH seeals IN summary.seealso %]
112
                [% FOREACH seeals IN summary.seealso %]
115
                    <div class="seealso authref">
113
                    <div class="authref">
116
                    [% PROCESS showreference
114
                    [% PROCESS showreference
117
                        heading=seeals.heading
115
                        heading=seeals.heading
118
                        linkType='seealso'
116
                        linkType='seealso'
Lines 121-126 Link Here
121
                    %]
119
                    %]
122
                    </div>
120
                    </div>
123
                [% END %]
121
                [% END %]
122
            </div>
124
            [% END %]
123
            [% END %]
125
        [% END %]
124
        [% END %]
126
    [% END %]
125
    [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc (-6 / +2 lines)
Lines 20-31 Link Here
20
              <span class="RT">RT: [% heading | html %]</span>
20
              <span class="RT">RT: [% heading | html %]</span>
21
        [% END %]
21
        [% END %]
22
    [% ELSE %]
22
    [% ELSE %]
23
        <span class="label">
24
        [% IF ( linkType=='seefrom' ) %]
25
            used for/see from:
26
        [% ELSIF ( linkType=='seealso' ) %]
27
            see also:
28
        [% END %]
29
        <span class="heading">
23
        <span class="heading">
30
        [% IF ( linkType=='seealso' ) %]
24
        [% IF ( linkType=='seealso' ) %]
31
            [% IF ( authid ) %]
25
            [% IF ( authid ) %]
Lines 90-95 Link Here
90
            [% END %]
84
            [% END %]
91
        [% ELSE %]
85
        [% ELSE %]
92
            [% IF ( summary.seefrom ) %]
86
            [% IF ( summary.seefrom ) %]
87
                    <span class="seefrom">used for/see from:</span>
93
                [% FOREACH seefro IN summary.seefrom %]
88
                [% FOREACH seefro IN summary.seefrom %]
94
                    <div class="seefrom authref">
89
                    <div class="seefrom authref">
95
                    [% PROCESS showreference
90
                    [% PROCESS showreference
Lines 101-106 Link Here
101
                [% END %]
96
                [% END %]
102
            [% END %]
97
            [% END %]
103
            [% IF ( summary.seealso ) %]
98
            [% IF ( summary.seealso ) %]
99
                    <span class="seealso">see also:</span>
104
                [% FOREACH seeals IN summary.seealso %]
100
                [% FOREACH seeals IN summary.seealso %]
105
                    <div class="seealso authref">
101
                    <div class="seealso authref">
106
                    [% PROCESS showreference
102
                    [% PROCESS showreference
(-)a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css (-2 / +4 lines)
Lines 2640-2650 ul.ui-tabs-nav li { Link Here
2640
}
2640
}
2641
2641
2642
.authref {
2642
.authref {
2643
    text-indent: 2em;
2643
    font-style: normal;
2644
    text-indent: 4em;
2644
}
2645
}
2645
2646
2646
.authref .label {
2647
.seefrom, .seealso {
2647
    font-style: italic;
2648
    font-style: italic;
2649
    text-indent: 2em;
2648
}
2650
}
2649
2651
2650
.authstanza {
2652
.authstanza {
(-)a/koha-tmpl/opac-tmpl/prog/en/css/opac.css (-2 / +4 lines)
Lines 2779-2789 ul.ui-tabs-nav li { Link Here
2779
}
2779
}
2780
2780
2781
.authref {
2781
.authref {
2782
    text-indent: 2em;
2782
    font-style: normal;
2783
    text-indent: 4em;
2783
}
2784
}
2784
2785
2785
.authref .label {
2786
.seefrom, .seealso {
2786
    font-style: italic;
2787
    font-style: italic;
2788
    text-indent: 2em;
2787
}
2789
}
2788
2790
2789
.authstanza {
2791
.authstanza {
(-)a/koha-tmpl/opac-tmpl/prog/en/includes/authorities-search-results.inc (-12 / +10 lines)
Lines 20-32 Link Here
20
            <span class="RT">RT: [% heading | html %]</span>
20
            <span class="RT">RT: [% heading | html %]</span>
21
        [% END %]
21
        [% END %]
22
    [% ELSE %]
22
    [% ELSE %]
23
        <span class="label">
24
        [% IF ( linkType=='seefrom' ) %]
25
            used for/see from:
26
        [% ELSIF  ( linkType=='seealso' ) %]
27
            see also:
28
        [% END %]
29
        </span>
30
        <span class="heading">
23
        <span class="heading">
31
        [% IF ( linkType=='seealso' ) %]
24
        [% IF ( linkType=='seealso' ) %]
32
            [% IF ( authid ) %]
25
            [% IF ( authid ) %]
Lines 97-105 Link Here
97
              </div>
90
              </div>
98
            [% END %]
91
            [% END %]
99
        [% ELSE %]
92
        [% ELSE %]
100
            [% IF ( summary.seefrom ) %]
93
            [% IF ( summary.seefrom.size > 1 ) %]
94
            <div class="seefrom">
95
                <span class="seefrom">used for/see from:</span>
101
                [% FOREACH seefro IN summary.seefrom %]
96
                [% FOREACH seefro IN summary.seefrom %]
102
                    <div class="seefrom authref">
97
                    <div class="authref">
103
                    [% PROCESS showreference
98
                    [% PROCESS showreference
104
                        heading=seefro.heading
99
                        heading=seefro.heading
105
                        linkType='seefrom'
100
                        linkType='seefrom'
Lines 108-117 Link Here
108
                    %]
103
                    %]
109
                    </div>
104
                    </div>
110
                [% END %]
105
                [% END %]
106
            </div>
111
            [% END %]
107
            [% END %]
112
            [% IF ( summary.seealso ) %]
108
            [% IF ( summary.seealso.size > 1 ) %]
109
            <div class="seealso">
110
                <span class="seealso">see also:</span>
113
                [% FOREACH seeals IN summary.seealso %]
111
                [% FOREACH seeals IN summary.seealso %]
114
                    <div class="seealso authref">
112
                    <div class="authref">
115
                    [% PROCESS showreference
113
                    [% PROCESS showreference
116
                        heading=seeals.heading
114
                        heading=seeals.heading
117
                        linkType='seealso'
115
                        linkType='seealso'
Lines 120-125 Link Here
120
                    %]
118
                    %]
121
                    </div>
119
                    </div>
122
                [% END %]
120
                [% END %]
121
            </div>
123
            [% END %]
122
            [% END %]
124
        [% END %]
123
        [% END %]
125
    [% END %]
124
    [% END %]
126
- 

Return to bug 10987