diff options
| author | Thomas Bruederli <thomas@roundcube.net> | 2012-10-26 11:08:56 +0200 | 
|---|---|---|
| committer | Thomas Bruederli <thomas@roundcube.net> | 2012-10-26 11:08:56 +0200 | 
| commit | 033cb2105aebf06d46ba13471de5dc5dc547e7bd (patch) | |
| tree | 4fe3215be50bb6c010f0959149299db46ae3c6e4 | |
| parent | eb514742ecf9ca2fb5331d6ccbe2f1a13accd438 (diff) | |
| parent | 9e2ff8ca95bac0b689342bcb79b27645ddaf59b5 (diff) | |
Merge branch 'dev-compose-newwindow' of github.com:roundcube/roundcubemail into dev-compose-newwindow
| -rw-r--r-- | skins/larry/mail.css | 23 | 
1 files changed, 14 insertions, 9 deletions
| diff --git a/skins/larry/mail.css b/skins/larry/mail.css index b95be00fc..6d350d714 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -51,7 +51,9 @@  	left: 0;  	bottom: 0;  	width: 100%; -	height: 26px; +	height: 27px; +	border-radius: 0 0 4px 4px; +	border-top: none;  }  #folderlist-header { @@ -1145,24 +1147,19 @@ div.message-part blockquote blockquote blockquote {  	background-position: 6px -1627px;  } -  #compose-content {  	position: absolute;  	top: 42px;  	left: 0;  	width: 100%;  	bottom: 28px; -	border-bottom-left-radius: 0; -	border-bottom-right-radius: 0; +	border-radius: 4px 4px 0 0; +	border-bottom: none;  	overflow: hidden;  }  #composeheaders {  	border-radius: 4px 4px 0 0; -	-webkit-box-shadow: 0 2px 3px 0 #999; -	-moz-box-shadow: 0 2px 3px 0 #999; -	box-shadow: 0 2px 3px 0 #999; -	border-bottom: 0;  	padding-left: 19px;  } @@ -1262,6 +1259,10 @@ div.message-part blockquote blockquote blockquote {  	padding-right: 4px;  } +.mozilla .composeoption input { +	vertical-align: -3px; +} +  #composeview-bottom {  	position: relative;  	width: 100%; @@ -1357,8 +1358,12 @@ div.message-part blockquote blockquote blockquote {  	border: 0 !important;  } +.defaultSkin td.mceToolbar { +	border: 0 !important; +} +  .defaultSkin table.mceLayout tr.mceFirst td { -	background: #dfdfdf; +	background: #f0f0f0;  }  #composebody_toolbargroup { | 
