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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-1 / +32 lines)
Lines 2048-2051 fieldset.rows+h3 {clear:both;padding-top:.5em;} Link Here
2048
	border : 1px solid #EEE;
2048
	border : 1px solid #EEE;
2049
	padding : 0.3em 0.4em;
2049
	padding : 0.3em 0.4em;
2050
}
2050
}
2051
</style>
2051
#circ_circulation_issue {
2052
    position: relative;
2053
    }
2054
2055
#clearscreen {
2056
    margin-right: 0;
2057
    position: absolute;
2058
    top:0;
2059
    right:0;
2060
    }
2061
/* CSS Hack to target Firefox */
2062
@-moz-document url-prefix() {
2063
    #clearscreen {
2064
        margin-right : 1em;
2065
        top: -1em;
2066
    }
2067
}
2068
#clearscreen a {
2069
    display:block;
2070
    -moz-border-radius: 0 0 0 5px;
2071
    border-radius: 0 0 0 5px;
2072
    padding : 0 .7em .2em .7em;
2073
    background-color : #EEE;
2074
    color : #CCC;
2075
    text-shadow: 0px -1px 0px #666;
2076
    text-decoration: none;
2077
    font-size: 160%;
2078
    font-weight : bold
2079
    }
2080
#clearscreen a:hover {
2081
    color : #cc0000;
2082
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-3 / +1 lines)
Lines 159-165 function refocus(calendar) { Link Here
159
};
159
};
160
//]]>
160
//]]>
161
</script>
161
</script>
162
163
[% INCLUDE 'calendar.inc' %]
162
[% INCLUDE 'calendar.inc' %]
164
</head>
163
</head>
165
<body>
164
<body>
Lines 458-464 No patron matched <span class="ex">[% message %]</span> Link Here
458
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform">
457
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform">
459
<fieldset id="circ_circulation_issue">
458
<fieldset id="circ_circulation_issue">
460
    [% IF ( DisplayClearScreenButton ) %]
459
    [% IF ( DisplayClearScreenButton ) %]
461
	    <input type="button" value="Clear Screen" onclick="window.location = '/cgi-bin/koha/circ/circulation.pl'" />
460
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
462
    [% END %]
461
    [% END %]
463
462
464
    <label for="barcode">Checking out to [% firstname %] [% surname %] ([% cardnumber %]) </label>
463
    <label for="barcode">Checking out to [% firstname %] [% surname %] ([% cardnumber %]) </label>
465
- 

Return to bug 6623