Change iOS file attachment bubbles to be on-theme
FREEBIE
This commit is contained in:
parent
cd1569e57a
commit
ae6e6da44b
3 changed files with 91 additions and 13 deletions
|
@ -473,11 +473,7 @@ li.entry .error-icon-container {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
|
|
||||||
background-color: #fafafa;
|
|
||||||
border: 1px solid $grey_l2;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: $grey_d;
|
|
||||||
|
|
||||||
.fileName {
|
.fileName {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
|
@ -85,6 +85,37 @@ $ios-border-color: rgba(0,0,0,0.1);
|
||||||
.control .content {
|
.control .content {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.message-list .attachments .fileView {
|
||||||
|
border-radius: 15px;
|
||||||
|
margin-bottom: 0.25em;
|
||||||
|
|
||||||
|
padding: 10px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:before, &:after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
border-radius: 20px;
|
||||||
|
position: absolute;
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
right: -1px;
|
||||||
|
bottom: -3px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
background: $blue;
|
||||||
|
}
|
||||||
|
&:after {
|
||||||
|
height: 11px;
|
||||||
|
right: -6px;
|
||||||
|
bottom: -3px;
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.bubble {
|
.bubble {
|
||||||
.content {
|
.content {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
@ -126,6 +157,21 @@ $ios-border-color: rgba(0,0,0,0.1);
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.message-list .incoming .attachment .fileView {
|
||||||
|
background-color: #e6e5ea;
|
||||||
|
color: black;
|
||||||
|
float: left;
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
left: -1px;
|
||||||
|
background-color: #e6e5ea;
|
||||||
|
}
|
||||||
|
&:after {
|
||||||
|
left: -6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.incoming .content {
|
.incoming .content {
|
||||||
background-color: #e6e5ea;
|
background-color: #e6e5ea;
|
||||||
color: black;
|
color: black;
|
||||||
|
@ -141,7 +187,7 @@ $ios-border-color: rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.outgoing {
|
.outgoing {
|
||||||
.content {
|
.content, .attachments .fileView {
|
||||||
background-color: $blue;
|
background-color: $blue;
|
||||||
&, .body, a {
|
&, .body, a {
|
||||||
@include invert-text-color;
|
@include invert-text-color;
|
||||||
|
@ -149,6 +195,11 @@ $ios-border-color: rgba(0,0,0,0.1);
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.outgoing .attachments .fileView .icon::before {
|
||||||
|
@include color-svg('/images/file.svg', white);
|
||||||
|
}
|
||||||
|
|
||||||
.attachment {
|
.attachment {
|
||||||
a {
|
a {
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
|
|
|
@ -1320,11 +1320,7 @@ li.entry .error-icon-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
background-color: #fafafa;
|
cursor: pointer; }
|
||||||
border: 1px solid #d9d9d9;
|
|
||||||
border-radius: 5px;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #454545; }
|
|
||||||
.message-container .attachments .fileView .fileName,
|
.message-container .attachments .fileView .fileName,
|
||||||
.message-list .attachments .fileView .fileName {
|
.message-list .attachments .fileView .fileName {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -1532,6 +1528,28 @@ li.entry .error-icon-container {
|
||||||
.ios .error-message.content,
|
.ios .error-message.content,
|
||||||
.ios .control .content {
|
.ios .control .content {
|
||||||
padding: 10px; }
|
padding: 10px; }
|
||||||
|
.ios .message-list .attachments .fileView {
|
||||||
|
border-radius: 15px;
|
||||||
|
margin-bottom: 0.25em;
|
||||||
|
padding: 10px;
|
||||||
|
position: relative; }
|
||||||
|
.ios .message-list .attachments .fileView:before, .ios .message-list .attachments .fileView:after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
border-radius: 20px;
|
||||||
|
position: absolute;
|
||||||
|
width: 10px; }
|
||||||
|
.ios .message-list .attachments .fileView:before {
|
||||||
|
right: -1px;
|
||||||
|
bottom: -3px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
background: #2090ea; }
|
||||||
|
.ios .message-list .attachments .fileView:after {
|
||||||
|
height: 11px;
|
||||||
|
right: -6px;
|
||||||
|
bottom: -3px;
|
||||||
|
background: white; }
|
||||||
.ios .bubble .content {
|
.ios .bubble .content {
|
||||||
margin-bottom: 5px; }
|
margin-bottom: 5px; }
|
||||||
.ios .bubble .content .body {
|
.ios .bubble .content .body {
|
||||||
|
@ -1562,6 +1580,15 @@ li.entry .error-icon-container {
|
||||||
border: 1px solid rgba(0, 0, 0, 0.1); }
|
border: 1px solid rgba(0, 0, 0, 0.1); }
|
||||||
.ios .bubble .meta {
|
.ios .bubble .meta {
|
||||||
clear: both; }
|
clear: both; }
|
||||||
|
.ios .message-list .incoming .attachment .fileView {
|
||||||
|
background-color: #e6e5ea;
|
||||||
|
color: black;
|
||||||
|
float: left; }
|
||||||
|
.ios .message-list .incoming .attachment .fileView:before {
|
||||||
|
left: -1px;
|
||||||
|
background-color: #e6e5ea; }
|
||||||
|
.ios .message-list .incoming .attachment .fileView:after {
|
||||||
|
left: -6px; }
|
||||||
.ios .incoming .content {
|
.ios .incoming .content {
|
||||||
background-color: #e6e5ea;
|
background-color: #e6e5ea;
|
||||||
color: black;
|
color: black;
|
||||||
|
@ -1571,14 +1598,18 @@ li.entry .error-icon-container {
|
||||||
background-color: #e6e5ea; }
|
background-color: #e6e5ea; }
|
||||||
.ios .incoming .content .body:after {
|
.ios .incoming .content .body:after {
|
||||||
left: -6px; }
|
left: -6px; }
|
||||||
.ios .outgoing .content {
|
.ios .outgoing .content, .ios .outgoing .attachments .fileView {
|
||||||
background-color: #2090ea;
|
background-color: #2090ea;
|
||||||
float: right; }
|
float: right; }
|
||||||
.ios .outgoing .content, .ios .outgoing .content .body, .ios .outgoing .content a {
|
.ios .outgoing .content, .ios .outgoing .content .body, .ios .outgoing .content a, .ios .outgoing .attachments .fileView, .ios .outgoing .attachments .fileView .body, .ios .outgoing .attachments .fileView a {
|
||||||
color: white; }
|
color: white; }
|
||||||
.ios .outgoing .content::selection, .ios .outgoing .content .body::selection, .ios .outgoing .content a::selection {
|
.ios .outgoing .content::selection, .ios .outgoing .content .body::selection, .ios .outgoing .content a::selection, .ios .outgoing .attachments .fileView::selection, .ios .outgoing .attachments .fileView .body::selection, .ios .outgoing .attachments .fileView a::selection {
|
||||||
background: white;
|
background: white;
|
||||||
color: #454545; }
|
color: #454545; }
|
||||||
|
.ios .outgoing .attachments .fileView .icon::before {
|
||||||
|
-webkit-mask: url("/images/file.svg") no-repeat center;
|
||||||
|
-webkit-mask-size: 100%;
|
||||||
|
background-color: white; }
|
||||||
.ios .attachment {
|
.ios .attachment {
|
||||||
margin-bottom: 1px; }
|
margin-bottom: 1px; }
|
||||||
.ios .attachment a {
|
.ios .attachment a {
|
||||||
|
|
Loading…
Add table
Reference in a new issue