fix(theme): Dark mode styling for undo/redo component

This commit is contained in:
Ben Gotow 2015-12-07 15:11:11 -08:00
parent 2320292c15
commit d8c79a4d50
2 changed files with 6 additions and 3 deletions

View file

@ -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>

View file

@ -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;
}
}
}