Browse Source
Make e-mail icon visible
Fixes #996
* Make mail icon visible
* Opacity to .5
* Add tooltip
pull/1000/head
Roeland Jago Douma
10 years ago
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
3 changed files with
5 additions and
5 deletions
-
core/css/icons.css
-
core/css/share.css
-
core/js/sharedialogmailview.js
|
|
|
@ -204,10 +204,6 @@ img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading- |
|
|
|
background-image: url('../img/actions/mail.svg'); |
|
|
|
} |
|
|
|
|
|
|
|
.icon-mail-grey { |
|
|
|
background-image: url('../img/actions/mail-grey.svg'); |
|
|
|
} |
|
|
|
|
|
|
|
.icon-menu { |
|
|
|
background-image: url('../img/actions/menu.svg'); |
|
|
|
} |
|
|
|
|
|
|
|
@ -171,3 +171,7 @@ a.showCruds:hover,a.unshare:hover { |
|
|
|
padding-top: 12px; |
|
|
|
color: #999; |
|
|
|
} |
|
|
|
|
|
|
|
.shareTabView .mailView .icon-mail { |
|
|
|
opacity: 0.5; |
|
|
|
} |
|
|
|
@ -18,7 +18,7 @@ |
|
|
|
' {{#if mailPublicNotificationEnabled}}' + |
|
|
|
'<form id="emailPrivateLink" class="emailPrivateLinkForm oneline">' + |
|
|
|
' <input id="email" class="emailField" value="{{email}}" placeholder="{{mailPrivatePlaceholder}}" type="text" />' + |
|
|
|
' <a id="emailButton" class="icon icon-mail-grey" />' + |
|
|
|
' <a id="emailButton" class="icon icon-mail hasTooltip" title="Send e-mail"></a>' + |
|
|
|
'</form>' + |
|
|
|
' {{/if}}' + |
|
|
|
'{{/if}}' |
|
|
|
|