2011-06-30 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/styles/dialog.css general/header.php: Changed style for dialogs in the header. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4505 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
605eb8f2e4
commit
eb4162750e
|
@ -1,3 +1,8 @@
|
|||
2011-06-30 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/styles/dialog.css
|
||||
general/header.php: Changed style for dialogs in the header.
|
||||
|
||||
2011-06-30 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* include/help/ja/help_snmp_trap_types.php: Added a new help file.
|
||||
|
|
|
@ -61,7 +61,7 @@ config_check();
|
|||
ui_require_css_file ('dialog');
|
||||
ui_require_jquery_file ('ui.core');
|
||||
ui_require_jquery_file ('ui.dialog');
|
||||
echo '<a href="ajax.php?page=operation/messages/message" id="show_messages_dialog">';
|
||||
echo '<a href="ajax.php?page=operation/messages/message" title="' . __("Message overview") . '" id="show_messages_dialog">';
|
||||
html_print_image ("images/email.png", false,
|
||||
array ("title" => __('You have %d unread message(s)', $msg_cnt), "id" => "yougotmail", "class" => "bot"));
|
||||
echo '</a>';
|
||||
|
|
|
@ -4,14 +4,26 @@
|
|||
|
||||
.ui-dialog {
|
||||
background-color: #ffffff;
|
||||
|
||||
-moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
|
||||
-moz-box-shadow: 0px 7px 7px #010E1B;
|
||||
-webkit-box-shadow: 0px 7px 7px #010E1B;
|
||||
box-shadow: 0px 7px 7px #010E1B;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-titlebar {
|
||||
border-bottom: 1px solid #d8d2aa;
|
||||
background: #778866 url(images/dialog-title.gif) repeat-x;
|
||||
padding: 0px;
|
||||
background: #778866 url(../../images/dialog-title.gif) repeat-x;
|
||||
height: 28px;
|
||||
_height: 29px;
|
||||
width: 97%;
|
||||
margin: 7px auto 0 auto;
|
||||
|
||||
-moz-border-radius: 14px;
|
||||
-webkit-border-radius: 14px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
.ui-dialog.ui-draggable .ui-dialog-titlebar {
|
||||
|
@ -24,7 +36,8 @@
|
|||
background: url(images/dialog-titlebar-close.png) no-repeat;
|
||||
position:absolute;
|
||||
top: 6px;
|
||||
right: 7px;
|
||||
#top: 10px;
|
||||
right: 17px;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
|
@ -53,6 +66,10 @@
|
|||
margin: 1.2em;
|
||||
}
|
||||
|
||||
.ui-dialog-content {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-buttonpane {
|
||||
background-color: #2179B1;
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in New Issue