93 lines
2.1 KiB
CSS
Executable File
93 lines
2.1 KiB
CSS
Executable File
#popup_container {
|
|
font-size: 12px;
|
|
font-family: QNAPCustomFont,'Lucida Grande','Verdana','Tahoma','Arial','Helvetica','sans-serif','Microsoft JhengHei';
|
|
min-width: 300px; /* Dialog will be no smaller than this */
|
|
max-width: 350px; /* Dialog will wrap after this width */
|
|
background: #FFF;
|
|
color: #000;
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
*border: 1px solid #999;
|
|
-webkit-border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
border-radius: 6px;
|
|
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.7);
|
|
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.7);
|
|
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
#popup_title {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
height: 40px;
|
|
color: #666;
|
|
background: #FFF url(/media/img/title_bg.png) top repeat;
|
|
cursor: default;
|
|
margin: 0px;
|
|
-webkit-border-radius: 6px 6px 0px 0px;
|
|
-moz-border-radius: 6px 6px 0px 0px;
|
|
border-radius: 6px 6px 0px 0px;
|
|
}
|
|
|
|
#popup_content {
|
|
background: 16px 16px no-repeat url(images/info.gif);
|
|
padding: 1em 0 1em 1.75em;
|
|
margin: 0em;
|
|
/*height: 60px;*/
|
|
}
|
|
|
|
#popup_content.alert {
|
|
background-image: url(/media/img/icon-info.png);
|
|
}
|
|
|
|
#popup_content.confirm {
|
|
background-image: url(/media/img/icon-question-b.png);
|
|
height: auto;
|
|
}
|
|
|
|
#popup_content.confirm3 {
|
|
background-image: url(/media/img/icon-question-b.png);
|
|
height: auto;
|
|
}
|
|
|
|
#popup_content.prompt {
|
|
background-image: url(images/help.gif);
|
|
}
|
|
|
|
#popup_message {
|
|
display: block;
|
|
color: #000;
|
|
width: auto;
|
|
min-height: 50px;
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
text-overflow:ellipsis;
|
|
word-break: break-word;
|
|
padding-left: 60px;
|
|
padding-top: 6px;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
#popup_panel input {
|
|
width: 76px;
|
|
height: 26px;
|
|
padding: 0px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
#popup_panel {
|
|
text-align: center;
|
|
padding: 6px 0px;
|
|
height: 34px;
|
|
background-color: #E7E7E7;
|
|
border-top: 1px solid #bbb;
|
|
-webkit-border-radius: 0 0 6px 6px;
|
|
-moz-border-radius: 0 0 6px 6px;
|
|
border-radius: 0 0 6px 6px;
|
|
*zoom: 1;
|
|
}
|
|
|
|
#popup_prompt {
|
|
margin: .5em 0em;
|
|
}
|