mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Work in progress of mail attachment box styling in compose and display dialogs
This commit is contained in:
parent
6ec9df222f
commit
e01c5506e6
@ -3064,6 +3064,8 @@ app.classes.mail = AppJS.extend(
|
||||
var groupbox = boxAttachment.getParent();
|
||||
if (groupbox) groupbox.set_disabled(false);
|
||||
}
|
||||
//Resize the compose dialog
|
||||
this.compose_resizeHandler();
|
||||
return true;
|
||||
},
|
||||
|
||||
|
@ -181,7 +181,16 @@ A.sieveRowInActive
|
||||
.bodyDIVAttachment {
|
||||
bottom:80px;
|
||||
}
|
||||
|
||||
table tr.attachmentRow > td{
|
||||
padding:0 !important;
|
||||
}
|
||||
table tr.attachmentRow > td > img {
|
||||
background:transparent;
|
||||
padding-left: 5px;
|
||||
}
|
||||
#mail-compose_attachments.egwGridView_grid {
|
||||
display:table !important;
|
||||
}
|
||||
#attachmentSpanAllDIV{
|
||||
background-color:#efefdf;
|
||||
height:260px;
|
||||
@ -275,11 +284,9 @@ pre {
|
||||
}
|
||||
.useEllipsis {
|
||||
text-overflow: ellipsis;
|
||||
width: 250px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
float: left;
|
||||
}
|
||||
#mail-index {
|
||||
position: relative
|
||||
@ -540,7 +547,6 @@ div.mail-compose_fileselector {
|
||||
margin:0px;
|
||||
}
|
||||
.mailDisplayAttachments {
|
||||
background-color:#f0f0f0;
|
||||
height: 121px;
|
||||
position: fixed;
|
||||
bottom: .1em;
|
||||
|
@ -116,25 +116,22 @@
|
||||
<groupbox class="et2_file mailUploadSection" disabled="@no_griddata">
|
||||
<caption label="Files"/>
|
||||
<box class="mailUploadProgress" id="mailUploadProgress" width="99%"/>
|
||||
<grid id="attachments" width="100%" maxheight="165" overflow="auto">
|
||||
<columns>
|
||||
<column disabled="!@showtempname"/>
|
||||
<column width="50%" />
|
||||
<column width="25%" />
|
||||
<column width="15%"/>
|
||||
<column />
|
||||
</columns>
|
||||
<rows>
|
||||
<row >
|
||||
<description id="${row}[tmp_name]" />
|
||||
<description class="useEllipsis et2_link" id="${row}[name]" no_lang="1" onclick="app.mail.displayUploadedFile"/>
|
||||
<description id="${row}[type]" />
|
||||
<description align="right" id="${row}[size]" />
|
||||
<button id="delete[$row_cont[tmp_name]]" value="Delete" image="delete" />
|
||||
</row>
|
||||
</rows>
|
||||
<grid id="attachments" width="100%" maxheight="165" class="egwGridView_grid">
|
||||
<columns>
|
||||
<column disabled="!@showtempname" width="10%"/>
|
||||
<column width="85%"/>
|
||||
<column width="8%"/>
|
||||
<column width="" />
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="row attachmentRow">
|
||||
<description id="${row}[tmp_name]"/>
|
||||
<description class="useEllipsis et2_link" id="${row}[name]" no_lang="1" onclick="app.mail.displayUploadedFile"/>
|
||||
<description align="right" id="${row}[size]" />
|
||||
<button id="delete[$row_cont[tmp_name]]" value="Delete" image="delete"/>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
|
||||
</groupbox>
|
||||
</vbox>
|
||||
</template>
|
||||
|
@ -52,14 +52,13 @@
|
||||
</box>
|
||||
<box class="$cont[mailDisplayAttachmentsClass]">
|
||||
<!-- <html id="mail_displayattachments"/> -->
|
||||
<grid disabled="@no_griddata" id="mail_displayattachments">
|
||||
<grid disabled="@no_griddata" id="mail_displayattachments" class="egwGridView_grid" width="100%">
|
||||
<columns>
|
||||
<column disabled="!@showtempname"/>
|
||||
<column disabled="!@showtempname"/>
|
||||
<column disabled="!@showtempname"/>
|
||||
<column disabled="!@showtempname"/>
|
||||
<column width="50%" />
|
||||
<column width="20%" />
|
||||
<column width="70%" />
|
||||
<column width="11%" />
|
||||
<column width="3%"/>
|
||||
<column width="3%"/>
|
||||
@ -67,13 +66,12 @@
|
||||
<column />
|
||||
</columns>
|
||||
<rows>
|
||||
<row >
|
||||
<row class="row attachmentRow" >
|
||||
<description id="${row}[attachment_number]" />
|
||||
<description id="${row}[partID]" />
|
||||
<description id="${row}[type]" />
|
||||
<description id="${row}[winmailFlag]" />
|
||||
<description class="useEllipsis et2_link" id="${row}[filename]" no_lang="1" onclick="app.mail.displayAttachment"/>
|
||||
<description id="${row}[mimetype]" />
|
||||
<description align="right" id="${row}[size]" />
|
||||
<buttononly id="${row}[save]" value="save" image="fileexport" onclick="app.mail.saveAttachment"/>
|
||||
<buttononly id="${row}[saveAsVFS]" value="save" image="filemanager/navbar" onclick="app.mail.saveAttachmentToVFS"/>
|
||||
|
@ -174,6 +174,16 @@ A.sieveRowInActive {
|
||||
.bodyDIVAttachment {
|
||||
bottom: 80px;
|
||||
}
|
||||
table tr.attachmentRow > td {
|
||||
padding: 0 !important;
|
||||
}
|
||||
table tr.attachmentRow > td > img {
|
||||
background: transparent;
|
||||
padding-left: 5px;
|
||||
}
|
||||
#mail-compose_attachments.egwGridView_grid {
|
||||
display: table !important;
|
||||
}
|
||||
#attachmentSpanAllDIV {
|
||||
background-color: #efefdf;
|
||||
height: 260px;
|
||||
@ -270,11 +280,9 @@ pre {
|
||||
}
|
||||
.useEllipsis {
|
||||
text-overflow: ellipsis;
|
||||
width: 250px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
float: left;
|
||||
}
|
||||
#mail-index {
|
||||
position: relative;
|
||||
@ -539,7 +547,6 @@ div.mail-compose_fileselector {
|
||||
margin: 0px;
|
||||
}
|
||||
.mailDisplayAttachments {
|
||||
background-color: #f0f0f0;
|
||||
height: 121px;
|
||||
position: fixed;
|
||||
bottom: .1em;
|
||||
@ -548,6 +555,9 @@ div.mail-compose_fileselector {
|
||||
-moz-opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
#mail-display_mailDisplayBodySrc {
|
||||
height: 100%;
|
||||
}
|
||||
#divGenTime_mail {
|
||||
display: none;
|
||||
}
|
||||
@ -1402,10 +1412,9 @@ div#mail-index div#mail-index_mailPreview div#mail-index_mailPreviewHeadersSubje
|
||||
margin: 0px 8px;
|
||||
}
|
||||
#mail-compose fieldset.mailUploadSection {
|
||||
border: 1px solid silver;
|
||||
font-size: 0.8em;
|
||||
border: none;
|
||||
margin: 8px 0;
|
||||
background-color: #d9d9d9;
|
||||
}
|
||||
#divGenTime_mail {
|
||||
display: none;
|
||||
@ -2123,9 +2132,9 @@ pre {
|
||||
}
|
||||
.useEllipsis {
|
||||
text-overflow: ellipsis;
|
||||
width: 250px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
#mail-index {
|
||||
position: relative;
|
||||
|
@ -635,11 +635,9 @@ div#mail-index{
|
||||
|
||||
// Anhang
|
||||
fieldset.mailUploadSection{
|
||||
|
||||
border:1px solid silver;
|
||||
font-size: 0.8em;
|
||||
border: none;
|
||||
margin: 8px 0;
|
||||
.background_color_15_gray;
|
||||
}
|
||||
|
||||
|
||||
@ -1406,9 +1404,9 @@ pre {
|
||||
|
||||
.useEllipsis {
|
||||
text-overflow: ellipsis;
|
||||
width: 250px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user