Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6480848 authored by AVINASH GUSAIN's avatar AVINASH GUSAIN
Browse files

fix alignment

parent db8d5e63
Loading
Loading
Loading
Loading
Loading

images/redo.svg

0 → 100644
+3 −0
Original line number Diff line number Diff line
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.9731 8.32531C12.5856 7.11781 10.7856 6.37531 8.79813 6.37531C5.31063 6.37531 2.36313 8.64781 1.32812 11.7903L3.09813 12.3753C3.88563 9.98281 6.13563 8.25031 8.79813 8.25031C10.2606 8.25031 11.5956 8.79031 12.6381 9.66031L9.92313 12.3753H16.6731V5.62531L13.9731 8.32531Z" fill="black"/>
</svg>

images/source.svg

0 → 100644
+3 −0
Original line number Diff line number Diff line
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.05 12.4503L3.6 9.00031L7.05 5.55031L6 4.50031L1.5 9.00031L6 13.5003L7.05 12.4503ZM10.95 12.4503L14.4 9.00031L10.95 5.55031L12 4.50031L16.5 9.00031L12 13.5003L10.95 12.4503Z" fill="black"/>
</svg>

images/undo.svg

0 → 100644
+3 −0
Original line number Diff line number Diff line
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.19922 6.37531C7.21172 6.37531 5.41172 7.11781 4.02422 8.32531L1.32422 5.62531V12.3753H8.07422L5.35922 9.66031C6.40172 8.79031 7.72922 8.25031 9.19922 8.25031C11.8542 8.25031 14.1117 9.98281 14.8992 12.3753L16.6767 11.7903C15.6342 8.64781 12.6867 6.37531 9.19922 6.37531Z" fill="black"/>
</svg>
+24 −0
Original line number Diff line number Diff line
@@ -192,6 +192,9 @@
    --folder: url('/themes/Murena/snappymail/images/folder.svg');
    --contactmail: url('/themes/Murena/snappymail/images/contactsmail.svg');
    --contact: url('/themes/Murena/snappymail/images/contact.svg');
    --undo: url('/themes/Murena/snappymail/images/undo.svg');
    --redo: url('/themes/Murena/snappymail/images/redo.svg');
    --source: url('/themes/Murena/snappymail/images/sourcesvg');
    --svg-color: rgb(0, 0, 0);
    --svg-color-second: rgba(255, 255, 255, 1);
    --svg-color-third: #333333;
@@ -4381,3 +4384,24 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll {
    #rl-app #V-PopupsCompose #squire-toolgroup-block .btn[data-action="ul"] {
        margin-top: 5px;
    }
    #rl-app #V-PopupsCompose #squire-toolgroup-changes .btn[data-action="undo"] {
        -webkit-mask-image: var(--undo);
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        background-color: var(--svg-color);
        color: transparent;
    }
    #rl-app #V-PopupsCompose #squire-toolgroup-changes .btn[data-action="redo"]  {
        -webkit-mask-image: var(--redo);
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        background-color: var(--svg-color);
        color: transparent;
    }
    #rl-app #V-PopupsCompose #squire-toolgroup-changes .btn[data-action="source"]  {
        -webkit-mask-image: var(--source);
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        background-color: var(--svg-color);
        color: transparent;
    }
 No newline at end of file