mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-22 20:12:04 -06:00

Define the add attachment and add URL buttons on the same line. Allow downloading of url type attachments by clicking on the icon or the name. Define the name of the url type attachments as links (allows to open it in a new tab). Hide the download button for url attachments. Force to set mimetype to "application/link" for url attachments. Displays a link icon for url attachments. TT30263
16 lines
290 B
SCSS
16 lines
290 B
SCSS
.o_AttachmentBox_content {
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
.o_AttachmentList_partialListNonImages {
|
|
.o_Attachment_image {
|
|
cursor: pointer;
|
|
}
|
|
.o_Attachment_filename a {
|
|
color: #4c4c4c;
|
|
}
|
|
}
|
|
.o_Attachment_url_icon {
|
|
margin: 4px 2px 0px 4px;
|
|
}
|