mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-18 07:15:13 -05:00
93 lines
2.1 KiB
CSS
93 lines
2.1 KiB
CSS
/*
|
|
Document : jquery.pnotify.default.css
|
|
Created on : Nov 23, 2009, 3:14:10 PM
|
|
Author : Hunter Perrin
|
|
Version : 1.0.0
|
|
Description:
|
|
Default styling for Pines Notify jQuery plugin.
|
|
*/
|
|
|
|
/* Notice
|
|
----------------------------------*/
|
|
.ui-pnotify {
|
|
position: fixed;
|
|
right: 10px;
|
|
bottom: 10px;
|
|
/* Ensure that the notices are on top of everything else. */
|
|
z-index: 9999;
|
|
}
|
|
/* This hides position: fixed from IE6, which doesn't understand it. */
|
|
html > body .ui-pnotify {
|
|
position: fixed;
|
|
}
|
|
.ui-pnotify .ui-widget {
|
|
background: none;
|
|
}
|
|
.ui-pnotify-container {
|
|
background-position: 0 0;
|
|
border: 1px solid #111;
|
|
background-color: #3D3D3D !important;
|
|
-moz-border-radius: 7px;
|
|
-webkit-border-radius: 7px;
|
|
border-radius: 7px;
|
|
font-size: 14px;
|
|
-moz-box-shadow: 0px 0px 2px #000000;
|
|
-webkit-box-shadow: 0px 0px 2px #000000;
|
|
-o-box-shadow: 0px 0px 2px #000000;
|
|
box-shadow: 0px 0px 2px #000000;
|
|
padding: 7px 10px;
|
|
text-align: center;
|
|
min-height: 22px;
|
|
z-index: 9999;
|
|
font-family: "Open Sans", "Trebuchet MS", Helvetica, Arial, sans-serif;
|
|
line-height: normal;
|
|
}
|
|
.ui-pnotify-closer {
|
|
float: right;
|
|
margin-left: .2em;
|
|
}
|
|
.ui-pnotify-title {
|
|
display: block;
|
|
background: none;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
font-family: "Open Sans", "Trebuchet MS", Helvetica, Arial, sans-serif;
|
|
line-height: normal;
|
|
color: #ffffff;
|
|
}
|
|
.ui-pnotify-text {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-family: "Open Sans", "Trebuchet MS", Helvetica, Arial, sans-serif;
|
|
line-height: normal;
|
|
color: #ffffff;
|
|
}
|
|
.ui-pnotify-icon, .ui-pnotify-icon span {
|
|
display: block;
|
|
float: left;
|
|
margin-right: .2em;
|
|
}
|
|
/* History Pulldown
|
|
----------------------------------*/
|
|
.ui-pnotify-history-container {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 18px;
|
|
width: 70px;
|
|
border-top: none;
|
|
/* Ensure that the history container is on top of the notices. */
|
|
z-index: 10000;
|
|
}
|
|
.ui-pnotify-history-container .ui-pnotify-history-header {
|
|
/*padding: 2px;*/
|
|
}
|
|
.ui-pnotify-history-container button {
|
|
cursor: pointer;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.ui-pnotify-history-container .ui-pnotify-history-pulldown {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|