mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Added support for pinned messaged.
This commit is contained in:
parent
deecc08982
commit
482c591716
12 changed files with 74 additions and 36 deletions
55
NzbDrone.Web/Content/Messages.css
Normal file
55
NzbDrone.Web/Content/Messages.css
Normal file
|
@ -0,0 +1,55 @@
|
|||
/*Pinned messages*/
|
||||
|
||||
.infoBox, .successBox, .warningBox, .errorBox, .validationBox
|
||||
{
|
||||
border: 0px solid;
|
||||
margin: 10px 0px;
|
||||
padding: 10px 10px 10px 50px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px center;
|
||||
}
|
||||
.infoBox
|
||||
{
|
||||
color: #00529B;
|
||||
background-color: #f4f7f9;
|
||||
background-image: url(images/blue.png);
|
||||
}
|
||||
.successBox
|
||||
{
|
||||
color: #4F8A10;
|
||||
background-color: #DFF2BF;
|
||||
background-image: url(images/green.png);
|
||||
}
|
||||
.warningBox
|
||||
{
|
||||
color: #9F6000;
|
||||
background-color: #FEEFB3;
|
||||
background-image: url(images/yellow.png);
|
||||
}
|
||||
.errorBox
|
||||
{
|
||||
color: #D8000C;
|
||||
background-color: #FFBABA;
|
||||
background-image: url(images/red.png);
|
||||
}
|
||||
|
||||
/*Progress Notification*/
|
||||
#msgBox
|
||||
{
|
||||
display: none;
|
||||
height: 30px;
|
||||
background-color: #272525;
|
||||
opacity: .9;
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
|
||||
padding: 10px;
|
||||
text-align: left;
|
||||
position: fixed;
|
||||
z-index: 99;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
font-size: 20px;
|
||||
color: White;
|
||||
text-align: center;
|
||||
white-space:nowrap;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue