Fixed Windows glitch
replaced unicode chars for upload/download
This commit is contained in:
parent
7558080e54
commit
99204a85a9
@ -1160,7 +1160,8 @@ div.attachmentQueueStatus {
|
||||
div.attachmentQueueStatus ul li .status .statusString {
|
||||
font-size: 14px; }
|
||||
div.attachmentQueueStatus ul li .status .processIcon {
|
||||
margin-left: 1em; }
|
||||
margin-left: 1em;
|
||||
font-size: 15pt; }
|
||||
div.attachmentQueueStatus ul li .close a {
|
||||
font-family: 'clipperz-icons';
|
||||
-webkit-font-feature-settings: "liga" 1, "dlig" 1;
|
||||
|
File diff suppressed because one or more lines are too long
@ -54,7 +54,8 @@ Clipperz.PM.UI.Components.AttachmentQueueBoxClass = React.createClass({
|
||||
|
||||
var queueElement = aNotificationElement['queueElement'];
|
||||
|
||||
processIcon = (queueElement['process'] == 'UPLOAD') ? "\u2b06" : "\u2b07";
|
||||
processIcon = (queueElement['process'] == 'UPLOAD') ? "\u2191" : "\u2193";
|
||||
|
||||
status = "waiting";
|
||||
closeButton = null;
|
||||
progressIndicator = null;
|
||||
|
@ -509,6 +509,7 @@ div.attachmentQueueStatus {
|
||||
|
||||
.processIcon {
|
||||
margin-left: 1em;
|
||||
font-size: 15pt;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user