mirror of https://github.com/lidarr/Lidarr
56 lines
1.1 KiB
CSS
56 lines
1.1 KiB
CSS
/*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;
|
|
}
|