do not limit width of messages, centering is now done in egw.message via javascript

This commit is contained in:
Ralf Becker 2014-11-21 16:17:20 +00:00
parent 13ae7b2493
commit e4b85a23fe
2 changed files with 7 additions and 13 deletions

View File

@ -3792,11 +3792,9 @@ div.admin-config form > table td b {
*/ */
body > div#egw_message { body > div#egw_message {
background-color: #e6e6e6; background-color: #e6e6e6;
/*border-radius: 10px;*/
-webkit-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5); -moz-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5); box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
/* .border_normal;*/
border: 3px solid #ffc200; border: 3px solid #ffc200;
-webkit-border-top-right-radius: 0px; -webkit-border-top-right-radius: 0px;
-webkit-border-bottom-right-radius: 15px; -webkit-border-bottom-right-radius: 15px;
@ -3816,11 +3814,10 @@ body > div#egw_message {
padding: 10px; padding: 10px;
padding-left: 25px; padding-left: 25px;
background-position-x: 5px; background-position-x: 5px;
/*border: 2px gray solid;*/
min-width: 100px; min-width: 100px;
z-index: 100000; z-index: 100000;
margin: 0px auto; margin: 0px auto;
width: 22%; max-width: 90%;
} }
/** /**
* Less-file for egroupware * Less-file for egroupware

View File

@ -494,19 +494,16 @@ div.admin-config form > table {
*/ */
body > div#egw_message { body > div#egw_message {
background-color: @gray_10; background-color: @gray_10;
/*border-radius: 10px;*/ .box_shadow_message;
.box_shadow_message; border: 3px solid @egw_color_1_a;
/* .border_normal;*/ .border_radius (0px, 15px, 15px, 0px);
border: 3px solid @egw_color_1_a;
.border_radius (0px, 15px, 15px, 0px);
right: 33%; right: 33%;
top: 0px; top: 0px;
padding: 10px; padding: 10px;
padding-left: 25px; padding-left: 25px;
background-position-x: 5px; background-position-x: 5px;
/*border: 2px gray solid;*/
min-width: 100px; min-width: 100px;
z-index: 100000; z-index: 100000;
margin: 0px auto; margin: 0px auto;
width: 22%; max-width: 90%;
} }