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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-3 / +37 lines)
Lines 44-52 Link Here
44
    padding-left: 0;
44
    padding-left: 0;
45
    padding-right: 0;
45
    padding-right: 0;
46
46
47
    &:has(nav.fixed-top) {
48
        padding-top: 4rem;
49
    }
50
51
    fieldset div {
52
        margin-bottom: .3rem;
53
    }
54
55
    label {
56
        font-weight: bold;
57
    }
58
47
    .main {
59
    .main {
48
        font-size: 90%;
60
        font-size: 90%;
49
        padding: 0 1em;
61
        margin: 0;
62
        padding: 1rem;
50
    }
63
    }
51
64
52
    legend {
65
    legend {
Lines 1163-1169 fieldset { Link Here
1163
}
1176
}
1164
1177
1165
.selections-toolbar {
1178
.selections-toolbar {
1166
    background: linear-gradient( #B2B2B2 0%, #E0E0E0 14%, #E8E8E8 100% );
1179
    background: linear-gradient( #B2B2B2 0%, #E0E0E0 5%, #E8E8E8 100% );
1167
    display: flex;
1180
    display: flex;
1168
    flex-wrap: wrap;
1181
    flex-wrap: wrap;
1169
    margin: 0;
1182
    margin: 0;
Lines 1499-1504 nav { Link Here
1499
        border-right-color: #FCF9FC;
1512
        border-right-color: #FCF9FC;
1500
        margin: 5px 0;
1513
        margin: 5px 0;
1501
    }
1514
    }
1515
1516
    &.fixed-top {
1517
        background-color: #FFF;
1518
        border-bottom: 1px solid #DDD;
1519
        box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
1520
        padding: .2rem 1rem;
1521
1522
        .navbar-brand {
1523
            flex-grow: 1;
1524
1525
            h1 {
1526
                color: #444;
1527
                margin: 0;
1528
                padding: 0;
1529
            }
1530
        }
1531
1532
        .navbar-nav {
1533
            flex-shrink: 1;
1534
        }
1535
    }
1502
}
1536
}
1503
1537
1504
/* action buttons */
1538
/* action buttons */
Lines 2165-2171 nav { Link Here
2165
2199
2166
/* Class to be added to toolbar when it starts being fixed at the top of the screen */
2200
/* Class to be added to toolbar when it starts being fixed at the top of the screen */
2167
.floating {
2201
.floating {
2168
    box-shadow: 0 3px 2px 0 rgba( 0, 0, 0, .4 );
2202
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.2);
2169
    margin-top: 0;
2203
    margin-top: 0;
2170
    z-index: 5;
2204
    z-index: 5;
2171
}
2205
}
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-addbybiblionumber.tt (-54 / +102 lines)
Lines 10-81 Link Here
10
>
10
>
11
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
12
[% BLOCK cssinclude %]
12
[% BLOCK cssinclude %]
13
    <style>
14
        form {
15
            margin-left: 3rem;
16
        }
17
        .form-divider {
18
            background-color: #eee;
19
            border-bottom: 1px solid #d5d5d5;
20
            border-top: 1px solid #d5d5d5;
21
            margin: 0.5rem -1rem 0.5rem -1rem;
22
            padding: 0.5rem 2rem;
23
        }
24
    </style>
13
[% END %]
25
[% END %]
14
</head>
26
</head>
15
[% INCLUDE 'bodytag.inc' bodyid='addtolist' bodyclass='popup' %]
27
[% INCLUDE 'bodytag.inc' bodyid='addtolist' bodyclass='popup' %]
28
<nav class="navbar fixed-top">
29
    <div class="navbar-brand">
30
        [% IF ( newshelf ) %]
31
            <h1>Add to a new list</h1>
32
        [% ELSE %]
33
            [% IF ( multiple ) %]
34
                <h1>Add [% total | html %] items to [% IF ( singleshelf ) %]<em>[% shelfname | html %]</em>:[% ELSE %]<span>a list</span>[% END %]</h1>
35
            [% ELSE %]
36
                <h1>Add to [% IF ( singleshelf ) %]<em>[% shelfname | html %]</em>[% ELSE %]<span>a list</span>[% END %]</h1>
37
            [% END %]
38
        [% END %]
39
    </div>
40
    <ul class="navbar-nav">
41
        <li class="nav-item">
42
            <button type="button" class="btn-close close" aria-label="Close"></button>
43
        </li>
44
    </ul>
45
</nav>
46
16
<div class="main">
47
<div class="main">
17
    <div class="container-fluid">
48
    <div class="container-fluid">
18
        <div class="row">
49
        <div class="row">
19
            <div class="col order-first order-md-first order-lg-2">
50
            <div class="col">
20
                <div id="useraddbybiblionumber" class="maincontent">
51
                <div id="add_to_list" class="maincontent">
21
                    [% IF ( authorized ) %]
52
                    [% IF ( authorized ) %]
22
                        [% UNLESS ( newshelf ) %]
53
                        <ul>
23
                            [% IF ( multiple ) %]
54
                            [% FOREACH biblio IN biblios %]
24
                                <h1>Add [% total | html %] items to [% IF ( singleshelf ) %]<em>[% shelfname | html %]</em>:[% ELSE %]<span>a list:</span>[% END %]</h1>
55
                                <li
25
                            [% ELSE %]
56
                                    >[% INCLUDE 'biblio-title.inc' %]
26
                                <h1>Add to [% IF ( singleshelf ) %]<em>[% shelfname | html %]</em>[% ELSE %]<span>a list:</span>[% END %]</h1>
57
                                    [% IF ( biblio.author ) %]<span class="author"> [% biblio.author | html %]</span>[% END %]
58
                                </li>
27
                            [% END %]
59
                            [% END %]
28
                            <ul>
60
                        </ul>
29
                                [% FOREACH biblio IN biblios %]
61
                        [% UNLESS ( newshelf ) %]
30
                                    <li
31
                                        >[% INCLUDE 'biblio-title.inc' %]
32
                                        [% IF ( biblio.author ) %]<span class="author"> [% biblio.author | html %]</span>[% END %]
33
                                    </li>
34
                                [% END %]
35
                            </ul>
36
                            [% IF private_shelves.count or public_shelves.count or private_shelves_shared_with_me.count %]
62
                            [% IF private_shelves.count or public_shelves.count or private_shelves_shared_with_me.count %]
37
                                <form name="f1" action="/cgi-bin/koha/opac-addbybiblionumber.pl" method="post">
63
                                <form name="f1" action="/cgi-bin/koha/opac-addbybiblionumber.pl" method="post">
38
                                    [% INCLUDE 'csrf-token.inc' %]
64
                                    [% INCLUDE 'csrf-token.inc' %]
39
                                    <fieldset>
65
                                    <fieldset>
40
                                        <legend>Select a list</legend>
66
                                        <legend>Select a list</legend>
41
                                        <label for="shelfnumber">Add to list:</label>
67
                                        <div>
42
                                        <select name="shelfnumber" id="shelfnumber">
68
                                            <label class="form-label" for="shelfnumber">Add to list:</label>
43
                                            [% IF private_shelves.count %]
69
                                            <select name="shelfnumber" id="shelfnumber" class="form-select">
44
                                                <optgroup label="Private lists">
70
                                                [% IF private_shelves.count %]
45
                                                    [% FOREACH private_shelf IN private_shelves %]
71
                                                    <optgroup label="Private lists">
46
                                                        <option value="[% private_shelf.shelfnumber | html %]">[% private_shelf.shelfname | html %]</option>
72
                                                        [% FOREACH private_shelf IN private_shelves %]
47
                                                    [% END %]
73
                                                            <option value="[% private_shelf.shelfnumber | html %]">[% private_shelf.shelfname | html %]</option>
48
                                                </optgroup>
74
                                                        [% END %]
49
                                            [% END %]
75
                                                    </optgroup>
50
                                            [% IF private_shelves_shared_with_me.count %]
76
                                                [% END %]
51
                                                <optgroup label="Private lists shared with me">
77
                                                [% IF private_shelves_shared_with_me.count %]
52
                                                    [% FOREACH private_shelf IN private_shelves_shared_with_me %]
78
                                                    <optgroup label="Private lists shared with me">
53
                                                        <option value="[% private_shelf.shelfnumber | html %]">[% private_shelf.shelfname | html %]</option>
79
                                                        [% FOREACH private_shelf IN private_shelves_shared_with_me %]
54
                                                    [% END %]
80
                                                            <option value="[% private_shelf.shelfnumber | html %]">[% private_shelf.shelfname | html %]</option>
55
                                                </optgroup>
81
                                                        [% END %]
56
                                            [% END %]
82
                                                    </optgroup>
57
                                            [% IF public_shelves.count %]
83
                                                [% END %]
58
                                                <optgroup label="Public lists">
84
                                                [% IF public_shelves.count %]
59
                                                    [% FOREACH public_shelf IN public_shelves %]
85
                                                    <optgroup label="Public lists">
60
                                                        <option value="[% public_shelf.shelfnumber | html %]">[% public_shelf.shelfname | html %]</option>
86
                                                        [% FOREACH public_shelf IN public_shelves %]
61
                                                    [% END %]
87
                                                            <option value="[% public_shelf.shelfnumber | html %]">[% public_shelf.shelfname | html %]</option>
62
                                                </optgroup>
88
                                                        [% END %]
89
                                                    </optgroup>
90
                                                [% END %]
91
                                            </select>
92
                                            [% FOREACH biblio IN biblios %]
93
                                                <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
63
                                            [% END %]
94
                                            [% END %]
64
                                        </select>
95
                                            <input type="hidden" name="op" value="cud-modifyshelfcontents" />
65
                                        [% FOREACH biblio IN biblios %]
96
                                        </div>
66
                                            <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
67
                                        [% END %]
68
                                        <input type="hidden" name="op" value="cud-modifyshelfcontents" />
69
                                    </fieldset>
97
                                    </fieldset>
70
                                    <fieldset class="action">
98
                                    <fieldset class="action">
71
                                        <input type="submit" value="Save" class="btn btn-primary" />
99
                                        <input type="submit" value="Save" class="btn btn-primary" />
72
                                        <a class="close cancel" href="#">Cancel</a>
100
                                        <a class="close cancel" href="#">Cancel</a>
73
                                    </fieldset>
101
                                    </fieldset>
74
                                </form>
102
                                </form>
75
                                <p>...or...</p>
76
                            [% ELSE %]
103
                            [% ELSE %]
77
                                [% IF ( singleshelf ) %]
104
                                [% IF ( singleshelf ) %]
78
                                    <form name="f1" action="/cgi-bin/koha/opac-addbybiblionumber.pl" method="post">
105
                                    <form name="f1" action="/cgi-bin/koha/opac-addbybiblionumber.pl" method="post" style="margin-left:0">
79
                                        [% INCLUDE 'csrf-token.inc' %]
106
                                        [% INCLUDE 'csrf-token.inc' %]
80
                                        [% FOREACH biblio IN biblios %]
107
                                        [% FOREACH biblio IN biblios %]
81
                                            <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
108
                                            <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
Lines 90-110 Link Here
90
                                [% END %]
117
                                [% END %]
91
                            [% END # IF / existingshelves %]
118
                            [% END # IF / existingshelves %]
92
                        [% END # / UNLESS newshelf %]
119
                        [% END # / UNLESS newshelf %]
120
                    [% END # / IF authorized %]
121
                </div>
122
            </div>
123
        </div>
124
    </div>
125
126
    [% IF ( authorized && !newshelf && !singleshelf) %]
127
        [% #UNLESS ( newshelf ) %]
128
        [% #UNLESS ( singleshelf ) %]
129
        <div class="form-divider">...or...</div>
130
        [% #END %]
131
        [% #END %]
132
    [% END %]
93
133
134
    <div class="container-fluid">
135
        <div class="row">
136
            <div class="col">
137
                <div id="add_to_new_list" class="maincontent">
138
                    [% IF ( authorized ) %]
94
                        [% UNLESS ( singleshelf ) %]
139
                        [% UNLESS ( singleshelf ) %]
95
                            <form name="f2" method="post" action="/cgi-bin/koha/opac-addbybiblionumber.pl">
140
                            <form name="f2" method="post" action="/cgi-bin/koha/opac-addbybiblionumber.pl">
96
                                [% INCLUDE 'csrf-token.inc' %]
141
                                [% INCLUDE 'csrf-token.inc' %]
97
                                <fieldset>
142
                                <fieldset>
98
                                    <legend>Add to a new list:</legend>
143
                                    <legend>Add to a new list:</legend>
99
                                    <label for="newvirtualshelf">List name:</label>
144
                                    <div>
100
                                    <input type="text" name="newvirtualshelf" id="newvirtualshelf" size="40" />
145
                                        <label for="newvirtualshelf" class="form-label required">List name:</label>
101
                                    <label for="category">Category:</label>
146
                                        <input type="text" name="newvirtualshelf" id="newvirtualshelf" size="40" class="form-control" required="required" />
102
                                    <select name="public" id="public">
147
                                    </div>
103
                                        <option value="0">Private</option>
148
                                    <div>
104
                                        [% IF (OpacAllowPublicListCreation) %]
149
                                        <label for="public" class="form-label">Category:</label>
105
                                            <option value="1">Public</option>
150
                                        <select name="public" id="public" class="form-select">
106
                                        [% END %]
151
                                            <option value="0">Private</option>
107
                                    </select>
152
                                            [% IF (OpacAllowPublicListCreation) %]
153
                                                <option value="1">Public</option>
154
                                            [% END %]
155
                                        </select>
156
                                    </div>
108
                                </fieldset>
157
                                </fieldset>
109
                                [% FOREACH biblio IN biblios %]
158
                                [% FOREACH biblio IN biblios %]
110
                                    <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
159
                                    <input type="hidden" name="biblionumber" value="[% biblio.biblionumber | html %]" />
Lines 126-132 Link Here
126
                            [% END %]
175
                            [% END %]
127
                        </p>
176
                        </p>
128
                    [% END # IF authorized %]
177
                    [% END # IF authorized %]
129
                    <p><a href="#" class="close">Close this window.</a></p>
130
                </div>
178
                </div>
131
                <!-- / #useraddbybiblionumber -->
179
                <!-- / #useraddbybiblionumber -->
132
            </div>
180
            </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt (-14 / +41 lines)
Lines 18-44 Link Here
18
>
18
>
19
[% INCLUDE 'doc-head-close.inc' %]
19
[% INCLUDE 'doc-head-close.inc' %]
20
[% BLOCK cssinclude %]
20
[% BLOCK cssinclude %]
21
    <style>
21
    [% FILTER collapse %]
22
        .item-status,
22
        <style>
23
        .dt-buttons {
23
            .item-status,
24
            display: inline;
24
            .dt-buttons {
25
        }
25
                display: inline;
26
        @media print {
27
            body {
28
                height: 99%;
29
            }
26
            }
30
        }
27
            @media print {
31
    </style>
28
                body {
29
                    height: 99%;
30
                }
31
            }
32
            .popup:has(nav.fixed-top) {
33
                padding-top: 0;
34
            }
35
            #bookbag_form {
36
                margin-top: 2.7rem;
37
            }
38
            .popup .main {
39
                padding: 0;
40
            }
41
            .container-fluid {
42
                padding-right: 0;
43
                padding-left: 0;
44
            }
45
            .maincontent.moredetail #bookbag_form {
46
                margin-top: 3.2rem;
47
            }
48
        </style>
49
    [% END %]
32
[% END %]
50
[% END %]
33
</head>
51
</head>
34
[% INCLUDE 'bodytag.inc' bodyid='basket' %]
52
[% INCLUDE 'bodytag.inc' bodyid='basket' bodyclass='popup' %]
53
<nav class="navbar fixed-top">
54
    <div class="navbar-brand">
55
        <h1>Your cart</h1>
56
    </div>
57
    <ul class="navbar-nav">
58
        <li class="nav-item">
59
            <button type="button" class="btn-close close" aria-label="Close"></button>
60
        </li>
61
    </ul>
62
</nav>
35
<div class="main">
63
<div class="main">
36
    <div class="container-fluid">
64
    <div class="container-fluid">
37
        <div class="row">
65
        <div class="row">
38
            <div class="col">
66
            <div class="col">
39
                <div id="userbasket" class="maincontent">
67
                <div id="userbasket" class="maincontent [% IF ( verbose ) %]moredetail[% END %]">
40
                    <h1>Your cart</h1>
68
                    <div id="floating" class="sticky" style="top:2.8rem;">
41
                    <div id="floating" class="sticky">
42
                        <div id="toolbar" class="toolbar noprint">
69
                        <div id="toolbar" class="toolbar noprint">
43
                            [% IF ( verbose ) %]
70
                            [% IF ( verbose ) %]
44
                                <a href="opac-basket.pl" class="btn btn-link btn-sm brief"><i class="fa fa-fw fa-search-minus" aria-hidden="true"></i> Brief display</a>
71
                                <a href="opac-basket.pl" class="btn btn-link btn-sm brief"><i class="fa fa-fw fa-search-minus" aria-hidden="true"></i> Brief display</a>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-downloadcart.tt (+7 lines)
Lines 5-10 Link Here
5
[% END %]
5
[% END %]
6
</head>
6
</head>
7
[% INCLUDE 'bodytag.inc' bodyid='opac-downloadcart' bodyclass='popup' %]
7
[% INCLUDE 'bodytag.inc' bodyid='opac-downloadcart' bodyclass='popup' %]
8
<nav class="navbar fixed-top">
9
    <ul class="navbar-nav">
10
        <li class="nav-item">
11
            <button type="button" class="btn-close close" aria-label="Close"></button>
12
        </li>
13
    </ul>
14
</nav>
8
<div class="main">
15
<div class="main">
9
    <div class="container-fluid">
16
    <div class="container-fluid">
10
        <div class="row">
17
        <div class="row">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-review.tt (-4 / +13 lines)
Lines 5-16 Link Here
5
[% END %]
5
[% END %]
6
</head>
6
</head>
7
[% INCLUDE 'bodytag.inc' bodyid='comment' bodyclass='popup' %]
7
[% INCLUDE 'bodytag.inc' bodyid='comment' bodyclass='popup' %]
8
<nav class="navbar fixed-top">
9
    <div class="navbar-brand">
10
        <h1>Reviews</h1>
11
    </div>
12
    <ul class="navbar-nav">
13
        <li class="nav-item">
14
            <button type="button" class="btn-close close" aria-label="Close"></button>
15
        </li>
16
    </ul>
17
</nav>
8
<div class="main">
18
<div class="main">
9
    <div class="container-fluid">
19
    <div class="container-fluid">
10
        <div class="row">
20
        <div class="row">
11
            <div class="col order-first order-md-first order-lg-2">
21
            <div class="col">
12
                <div id="userreview" class="maincontent">
22
                <div id="userreview" class="maincontent">
13
                    <h1>Reviews</h1>
14
                    [% IF ( ERRORS ) %]
23
                    [% IF ( ERRORS ) %]
15
                        <div class="alert alert-warning">
24
                        <div class="alert alert-warning">
16
                            [% FOREACH ERROR IN ERRORS %]
25
                            [% FOREACH ERROR IN ERRORS %]
Lines 60-68 Link Here
60
                        </fieldset>
69
                        </fieldset>
61
                    </form>
70
                    </form>
62
                </div>
71
                </div>
63
                <!-- / #usersendshelfform -->
72
                <!-- / #userreview -->
64
            </div>
73
            </div>
65
            <!-- / .span12 -->
74
            <!-- / .row -->
66
        </div>
75
        </div>
67
        <!-- / .row -->
76
        <!-- / .row -->
68
    </div>
77
    </div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt (-3 / +18 lines)
Lines 6-11 Link Here
6
[% END %]
6
[% END %]
7
</head>
7
</head>
8
[% INCLUDE 'bodytag.inc' bodyid='addtolist' bodyclass='popup' %]
8
[% INCLUDE 'bodytag.inc' bodyid='addtolist' bodyclass='popup' %]
9
<nav class="navbar fixed-top">
10
    <div class="navbar-brand">
11
        [% IF ( email_add ) %]
12
            [% IF ( SENT ) %]
13
                <h1>Message sent</h1>
14
            [% END %]
15
        [% ELSE %]
16
            <h1>Sending your cart</h1>
17
        [% END # / IF email_add %]
18
    </div>
19
    <ul class="navbar-nav">
20
        <li class="nav-item">
21
            <button type="button" class="btn-close close" aria-label="Close"></button>
22
        </li>
23
    </ul>
24
</nav>
9
<div class="main">
25
<div class="main">
10
    <div class="container-fluid">
26
    <div class="container-fluid">
11
        <div class="row">
27
        <div class="row">
Lines 14-21 Link Here
14
                    [% IF ( email_add ) %]
30
                    [% IF ( email_add ) %]
15
31
16
                        [% IF ( SENT ) %]
32
                        [% IF ( SENT ) %]
17
                            <h1>Message sent</h1>
33
                            <div class="alert alert-success">
18
                            <div class="alert alert-info">
19
                                <p>The cart was sent to: [% email_add | html %]</p>
34
                                <p>The cart was sent to: [% email_add | html %]</p>
20
                            </div>
35
                            </div>
21
                            <p><a class="focus close" href="#">Close window</a></p>
36
                            <p><a class="focus close" href="#">Close window</a></p>
Lines 35-41 Link Here
35
                    [% ELSE %]
50
                    [% ELSE %]
36
                        <form action="/cgi-bin/koha/opac-sendbasket.pl" method="post" id="sendbasketform">
51
                        <form action="/cgi-bin/koha/opac-sendbasket.pl" method="post" id="sendbasketform">
37
                            <fieldset class="brief">
52
                            <fieldset class="brief">
38
                                <legend><h1>Sending your cart</h1></legend>
53
                                <legend class="sr-only">Message details</legend>
39
                                <label for="email_add">Email address:</label>
54
                                <label for="email_add">Email address:</label>
40
                                <input type="text" id="email_add" name="email_add" size="43" class="focus form-control" />
55
                                <input type="text" id="email_add" name="email_add" size="43" class="focus form-control" />
41
                                <label for="comment">Comment:</label>
56
                                <label for="comment">Comment:</label>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendshelfform.tt (-2 / +21 lines)
Lines 6-11 Link Here
6
[% END %]
6
[% END %]
7
</head>
7
</head>
8
[% INCLUDE 'bodytag.inc' bodyid='sendshelf' bodyclass='popup' %]
8
[% INCLUDE 'bodytag.inc' bodyid='sendshelf' bodyclass='popup' %]
9
<nav class="navbar fixed-top">
10
    <div class="navbar-brand">
11
        [% IF ( email ) %]
12
            [% IF ( SENT ) %]
13
                <h1>Message sent</h1>
14
            [% END %]
15
        [% ELSE %]
16
            [% IF ( invalidlist || Koha.Preference('OPACDisableSendList') ) %]
17
18
            [% ELSE %]
19
                <h1>Sending your list</h1>
20
            [% END # / IF invalidlist %]
21
        [% END # / IF email %]
22
    </div>
23
    <ul class="navbar-nav">
24
        <li class="nav-item">
25
            <button type="button" class="btn-close close" aria-label="Close"></button>
26
        </li>
27
    </ul>
28
</nav>
9
<div class="main">
29
<div class="main">
10
    <div class="container-fluid">
30
    <div class="container-fluid">
11
        <div class="row">
31
        <div class="row">
Lines 13-19 Link Here
13
                <div id="usersendshelfform" class="maincontent">
33
                <div id="usersendshelfform" class="maincontent">
14
                    [% IF ( email ) %]
34
                    [% IF ( email ) %]
15
                        [% IF ( SENT ) %]
35
                        [% IF ( SENT ) %]
16
                            <h1>Message sent</h1>
17
                            <div class="alert alert-success">
36
                            <div class="alert alert-success">
18
                                <p>The list was sent to: [% email | html %]</p>
37
                                <p>The list was sent to: [% email | html %]</p>
19
                            </div>
38
                            </div>
Lines 34-40 Link Here
34
                            <form action="/cgi-bin/koha/opac-sendshelf.pl" method="post" id="sendshelfform">
53
                            <form action="/cgi-bin/koha/opac-sendshelf.pl" method="post" id="sendshelfform">
35
                                [% INCLUDE 'csrf-token.inc' %]
54
                                [% INCLUDE 'csrf-token.inc' %]
36
                                <fieldset class="brief">
55
                                <fieldset class="brief">
37
                                    <legend><h1>Sending your list</h1></legend>
56
                                    <legend class="sr-only">Message details</legend>
38
                                    <label for="email">Email address:</label>
57
                                    <label for="email">Email address:</label>
39
                                    <input type="text" id="email" name="email" size="43" class="focus form-control" />
58
                                    <input type="text" id="email" name="email" size="43" class="focus form-control" />
40
59
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js (-1 / +1 lines)
Lines 72-78 function openBasket() { Link Here
72
72
73
    if (strCookie) {
73
    if (strCookie) {
74
        var iW = 820;
74
        var iW = 820;
75
        var iH = 450;
75
        var iH = 820;
76
        var optWin =
76
        var optWin =
77
            "status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=yes,height=" +
77
            "status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=yes,height=" +
78
            iH +
78
            iH +
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/global.js (-2 / +1 lines)
Lines 61-67 function Dopop(link) { Link Here
61
    newin = window.open(
61
    newin = window.open(
62
        link,
62
        link,
63
        "popup",
63
        "popup",
64
        "width=660,height=450,toolbar=false,scrollbars=yes,resizable=yes"
64
        "width=820,height=600,toolbar=false,scrollbars=yes,resizable=yes"
65
    );
65
    );
66
}
66
}
67
67
68
- 

Return to bug 40060