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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-1 / +6 lines)
Lines 33-38 button { Link Here
33
    }
33
    }
34
}
34
}
35
35
36
.row + .page-section {
37
    margin-top: 1rem;
38
}
39
36
a {
40
a {
37
    &:hover,
41
    &:hover,
38
    &:active,
42
    &:active,
Lines 1896-1901 li { Link Here
1896
1900
1897
#searchresults {
1901
#searchresults {
1898
    background-color: #FFFFFF;
1902
    background-color: #FFFFFF;
1903
    margin-bottom: 1rem;
1899
    margin-top: 20px;
1904
    margin-top: 20px;
1900
    min-width: 100%;
1905
    min-width: 100%;
1901
    padding: 20px;
1906
    padding: 20px;
Lines 2666-2672 td.bundle { Link Here
2666
}
2671
}
2667
2672
2668
.toptabs {
2673
.toptabs {
2669
    margin-top: 5px;
2674
    margin: 1rem 0;
2670
}
2675
}
2671
2676
2672
fieldset > .toptabs {
2677
fieldset > .toptabs {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt (-8 / +7 lines)
Lines 61-68 Link Here
61
        </div>
61
        </div>
62
        [% END %]
62
        [% END %]
63
63
64
        <form name="payForm" id="payForm" method="post" action="/cgi-bin/koha/pos/pay.pl">
64
        <div class="row">
65
            <div class="row">
65
            <form name="payForm" id="payForm" method="post" action="/cgi-bin/koha/pos/pay.pl">
66
66
67
                <div class="col-md-6">
67
                <div class="col-md-6">
68
                    <fieldset class="rows">
68
                    <fieldset class="rows">
Lines 162-176 Link Here
162
                        <a class="cancel" href="/cgi-bin/koha/pos/pay.pl">Cancel</a>
162
                        <a class="cancel" href="/cgi-bin/koha/pos/pay.pl">Cancel</a>
163
                    </fieldset>
163
                    </fieldset>
164
                </div>
164
                </div>
165
            </div>
165
            </form>
166
        </form>
166
        </div>
167
        [% END %]
167
        [% END %]
168
168
169
        [%- SET StaffPOSHome = AdditionalContents.get( location => "StaffPOSHome", lang => lang, library => logged_in_user.branchcode ) -%]
169
        [%- SET StaffPOSHome = AdditionalContents.get( location => "StaffPOSHome", lang => lang, library => logged_in_user.branchcode ) -%]
170
        [%- FOREACH block IN StaffPOSHome.content -%]
170
        [%- FOREACH block IN StaffPOSHome.content -%]
171
        <div class="page-section">
171
            <div class="page-section">
172
            [%- block.content | $raw -%]
172
                [%- block.content | $raw -%]
173
        </div>
173
            </div>
174
        [%- END -%]
174
        [%- END -%]
175
175
176
    </div>
176
    </div>
177
- 

Return to bug 35540