mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
TopSlider added for local series searching!
Should be easy to add others (would want to have it close other open ones, I think).
This commit is contained in:
parent
08804208cf
commit
745d9d9355
13 changed files with 241 additions and 78 deletions
67
NzbDrone.Web/Content/Slider.css
Normal file
67
NzbDrone.Web/Content/Slider.css
Normal file
|
@ -0,0 +1,67 @@
|
|||
.top-slider {
|
||||
position: absolute;
|
||||
opacity: 0.85;
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
.sliderButton {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.sliderContent {
|
||||
background-color:#333333;
|
||||
text-align:center;
|
||||
width: 100%;
|
||||
color:#FFFFFF;
|
||||
font-weight:bold;
|
||||
margin: 0px;
|
||||
display: none;
|
||||
|
||||
@*Rounded Edges*@
|
||||
border:1px solid #444444;
|
||||
-moz-border-radius-bottomright: 8px;
|
||||
-webkit-border-bottom-right-radius: 8px;
|
||||
-moz-border-radius-bottomleft: 8px;
|
||||
-webkit-border-bottom-left-radius: 8px;
|
||||
}
|
||||
|
||||
.openCloseWrapper {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
color:#FFFFFF;
|
||||
}
|
||||
|
||||
.sliderButtonContainer {
|
||||
width: 70px;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
background-color:#333333;
|
||||
cursor:pointer;
|
||||
|
||||
@*Rounded Edges*@
|
||||
border: 1px solid #444444;
|
||||
border-top: 0px;
|
||||
-moz-border-radius-bottomright: 10px;
|
||||
-webkit-border-bottom-right-radius: 10px;
|
||||
-moz-border-radius-bottomleft: 10px;
|
||||
-webkit-border-bottom-left-radius: 10px;
|
||||
}
|
||||
|
||||
.sliderImage {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
display: inline-block;
|
||||
margin-bottom: -3px;
|
||||
margin-right: -5px;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
.sliderClosed {
|
||||
background:url('../../Content/Images/ui-icons_2e83ff_256x240.png') -64px -16px no-repeat;
|
||||
}
|
||||
|
||||
.sliderOpened {
|
||||
background:url('../../Content/Images/ui-icons_2e83ff_256x240.png') 0px -16px no-repeat;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue