mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
2371f66615
ESC will close Local Search search. When local search text box loses focus it will close the slider.
39 lines
876 B
Plaintext
39 lines
876 B
Plaintext
@{
|
|
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> |