#popup_container {
|
font-family: Arial, sans-serif;
|
font-size: 12px;
|
min-width: 300px; /* Dialog will be no smaller than this */
|
max-width: 600px; /* Dialog will wrap after this width */
|
background: #FFF;
|
border: solid 2px #3A3A3A;
|
color: #000;
|
border-radius:5px;/*Ô²½Ç*/
|
}
|
#popup_title {
|
font-size: 14px;
|
font-weight: bold;
|
text-align: center;
|
line-height: 1.75em;
|
color: white;
|
background: #3A3A3A;
|
border: solid 1px #3A3A3A;
|
cursor: default;
|
padding: 0em;
|
margin: 0em;
|
}
|
|
#popup_content {
|
background: 16px 16px no-repeat url(images/info.gif);
|
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-left: 48px;
|
color:black;
|
|
}
|
|
#popup_panel {
|
text-align: center;
|
margin: 1em 0em 0em 1em;
|
}
|
|
#popup_prompt {
|
margin: .5em 0em;
|
}
|
|
/* the next css add by yilijian */
|
#popup_ok,#popup_cancel{
|
display: inline-block;
|
padding: 6px 12px;
|
margin-bottom: 0;
|
font-size: 14px;
|
font-weight: normal;
|
line-height: 1.428571429;
|
text-align: center;
|
white-space: nowrap;
|
vertical-align: middle;
|
cursor: pointer;
|
background-image: none;
|
border: 1px solid transparent;
|
border-radius: 4px;
|
-webkit-user-select: none;
|
-moz-user-select: none;
|
-ms-user-select: none;
|
-o-user-select: none;
|
user-select: none;
|
}
|
|
#popup_ok,#popup_cancel{
|
color: #FFFFFF;
|
background-color: #5A5A5A;
|
border-color: #cccccc;
|
}
|
#popup_ok:hover{color: #333333;background-color: #ebebeb;border-color: #adadad;}
|
#popup_cancel:hover{color: #333333;background-color: #ebebeb;border-color: #adadad;}
|
input[type="button"]{border: 1px solid transparent;}
|