1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00

fix spool color

This commit is contained in:
Tim Daubenschütz 2015-07-13 10:11:25 +02:00
parent 3dd5626eb9
commit 5011304939
2 changed files with 8 additions and 2 deletions

View File

@ -58,7 +58,7 @@ let AccordionListItemEditionWidget = React.createClass({
if(isEditionListOpen) {
if(typeof this.state.editionList[pieceId] === 'undefined') {
return (
<span className="glyph-ascribe-spool-chunked ascribe-color spin"/>
<span className="glyph-ascribe-spool-chunked spin"/>
);
} else {
return (
@ -89,7 +89,7 @@ let AccordionListItemEditionWidget = React.createClass({
else if(numEditions === 0) {
return (
<button className={classNames('btn', 'btn-default', 'btn-xs', this.props.className)}>
Creating Editions <span className="glyph-ascribe-spool-chunked ascribe-color spin"/>
Creating Editions <span className="glyph-ascribe-spool-chunked spin"/>
</button>
);
}

View File

@ -346,3 +346,9 @@ hr {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg);}
}
.btn-default {
.glyph-ascribe-spool {
color: white;
}
}