mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-20 22:23:53 +08:00
fix(theme): Dark mode styling for undo/redo component
This commit is contained in:
parent
b153eb38da
commit
47b46ac5b3
2 changed files with 6 additions and 3 deletions
|
@ -69,7 +69,7 @@ class UndoRedoComponent extends React.Component
|
|||
</div>
|
||||
<div className="undo-redo-action-wrapper" onClick={@_onClick}>
|
||||
<RetinaImg name="undo-icon@2x.png"
|
||||
mode={RetinaImg.Mode.ContentPreserve}/>
|
||||
mode={RetinaImg.Mode.ContentIsMask}/>
|
||||
<span className="undo-redo-action-text">Undo</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
flex-shrink: 1;
|
||||
margin-left: 16px;
|
||||
margin-right: 30px;
|
||||
color: lighten(@gray-base, 70%);
|
||||
color: @background-primary;
|
||||
overflow:hidden;
|
||||
text-overflow: ellipsis;
|
||||
text-align: left;
|
||||
|
@ -39,9 +39,12 @@
|
|||
margin-right: 15px;
|
||||
white-space:nowrap;
|
||||
|
||||
img {
|
||||
background-color: @background-primary;
|
||||
}
|
||||
.undo-redo-action-text {
|
||||
margin-left: 5px;
|
||||
color: @white;
|
||||
color: @background-primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue