134 lines
2.7 KiB
CSS
134 lines
2.7 KiB
CSS
/**
|
|
* @file jquery.alerts.css
|
|
* @Naveen Porwal
|
|
* @Teramatrix Technologies
|
|
* @©2015 EICHER
|
|
**/
|
|
|
|
#popup_container {
|
|
font-family: Hermes_FB;
|
|
font-size: 11px;
|
|
min-width: 450px !important; /* Dialog will be no smaller than this */
|
|
max-width: 580px; /* Dialog will wrap after this width */
|
|
background: #FFF;
|
|
border: solid 5px #999;
|
|
border: solid 1px #c5c5c5;
|
|
color: #000;
|
|
box-shadow: 5px 5px 15px #555;
|
|
}
|
|
|
|
#popup_title {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
color: #666;
|
|
border: solid 1px #FFF;
|
|
border-bottom: solid 1px #dedede;
|
|
cursor: default;
|
|
padding: 4px 0;
|
|
margin: 0em;
|
|
color: #505050;
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
padding-left: 16px;
|
|
background: #e3e3e3;
|
|
background: linear-gradient(top, #e3e3e3, #fcfcfc);
|
|
background: -webkit-linear-gradient(top, #e3e3e3, #fcfcfc);
|
|
background: -moz-linear-gradient(top, #e3e3e3, #fcfcfc);
|
|
background: -ms-linear-gradient(top, #e3e3e3, #fcfcfc);
|
|
background: #ee2e22;
|
|
font-size: 18px;
|
|
font-size: 13px;
|
|
color: #fff;
|
|
font-weight: normal;
|
|
padding: 0px 10px;
|
|
background: url("/Content/css/images/infowindow_head-bg.png") repeat-x left top;
|
|
height: 23px;
|
|
border-bottom: 0;
|
|
padding-top: 6px;
|
|
}
|
|
|
|
#popup_content {
|
|
/*background: 16px 16px no-repeat;
|
|
padding: 1em 1.75em;
|
|
margin: 0em;*/
|
|
}
|
|
|
|
#popup_content.alert {
|
|
/*background-image: url(images/info.gif);*/
|
|
}
|
|
|
|
#popup_content.confirm {
|
|
/*background-image: url(images/important.gif);*/
|
|
}
|
|
|
|
#popup_content.prompt {
|
|
/*background-image: url(images/help.gif);*/
|
|
}
|
|
|
|
#popup_message {
|
|
padding: 20px 15px 10px 10px;
|
|
font-size: 12px;
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.ConfirmMessage {
|
|
margin-left: 6px;
|
|
padding: 15px 0px 15px 48px !important;
|
|
}
|
|
|
|
#popup_panel {
|
|
text-align: center;
|
|
text-align: right;
|
|
margin: 1em 0em 0em 1em;
|
|
margin: 1em 0.5em 0.5em 0.5em;
|
|
border-top: 1px solid #dedede;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
#popup_prompt {
|
|
margin: .5em 0em;
|
|
}
|
|
|
|
.btn-danger {
|
|
color: #fff;
|
|
background: #d9534f;
|
|
border-color: #d43f3a;
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
color: #fff;
|
|
background: #c9302c;
|
|
border-color: #ac2925;
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.btn-primary {
|
|
color: #fff;
|
|
background: #428bca;
|
|
border-color: #357ebd;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
color: #fff;
|
|
background: #3071a9;
|
|
border-color: #285e8e;
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.PopBtn {
|
|
margin: 0px 5px;
|
|
width: auto;
|
|
padding-left: 25px;
|
|
padding-right: 25px;
|
|
height: 28px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
input[type="button"]:focus {
|
|
box-shadow: none;
|
|
}
|