Radarr/NzbDrone.Web/Content/Messages.css

54 lines
1.1 KiB
CSS
Raw Normal View History

2011-11-26 06:27:00 +00:00
/*Pinned messages*/
2012-10-12 02:18:23 +00:00
.infoBox, .successBox, .warningBox, .errorBox, .validationBox {
2011-11-26 06:27:00 +00:00
border: 0px solid;
margin: 10px 0px;
2012-10-12 02:18:23 +00:00
padding: 10px 10px 10px 10px;
2011-11-26 06:27:00 +00:00
background-repeat: no-repeat;
background-position: 10px center;
2012-10-12 02:18:23 +00:00
line-height: 20px;
2011-11-26 06:27:00 +00:00
}
2012-10-12 02:18:23 +00:00
.infoBox {
2011-11-26 06:27:00 +00:00
color: #00529B;
background-color: #f4f7f9;
}
2012-10-12 02:18:23 +00:00
.successBox {
2011-11-26 06:27:00 +00:00
color: #4F8A10;
background-color: #DFF2BF;
}
2012-10-12 02:18:23 +00:00
.warningBox {
2011-11-26 06:27:00 +00:00
color: #9F6000;
background-color: #FEEFB3;
}
2012-10-12 02:18:23 +00:00
.errorBox {
2011-11-26 06:27:00 +00:00
color: #D8000C;
background-color: #FFBABA;
2012-10-12 02:18:23 +00:00
}
.infoBox i, .successBox i, .warningBox i, .errorBox i, .validationBox i {
font-size: 2.33em;
vertical-align: text-bottom;
padding-right: 8px;
2011-11-26 06:27:00 +00:00
}
/*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;
2012-09-15 04:54:08 +00:00
z-index: 999;
2011-11-26 06:27:00 +00:00
bottom: 0;
right: 0;
font-size: 20px;
color: White;
text-align: center;
white-space:nowrap;
}