You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
876 B
39 lines
876 B
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<style>
|
|
#localSeriesSlider {
|
|
right: 150px;
|
|
}
|
|
|
|
.sliderContent .localSeriesLookup {
|
|
width: 94%;
|
|
}
|
|
|
|
.sliderContent {
|
|
height: 53px;
|
|
}
|
|
</style>
|
|
|
|
<div id="localSeriesSlider" class="top-slider">
|
|
<div class="sliderContent">
|
|
Local Series Search
|
|
<input class="localSeriesLookup" type="text" />
|
|
</div>
|
|
<div class="sliderButton">
|
|
Search<div class="sliderImage sliderClosed"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
//Ctrl+Shift+F to open the slider
|
|
$(document).bind('keydown', 'ctrl+shift+f', function () {
|
|
$('#localSeriesSlider').children('.sliderButton').click();
|
|
});
|
|
|
|
//Use ESC to close the slider
|
|
$('.localSeriesLookup').bind('keydown', 'esc', function () {
|
|
$(this).parent('.sliderContent').slideUp();
|
|
});
|
|
</script> |