diff options
| author | kimdahey <claire_kim1@brown.edu> | 2019-08-09 11:48:26 -0400 |
|---|---|---|
| committer | kimdahey <claire_kim1@brown.edu> | 2019-08-09 11:48:26 -0400 |
| commit | 329b79a62bcd2bb57c5c4cb3e805d10a1aceed35 (patch) | |
| tree | e8919c8e4adcb60bcf5514930298a36f3ad6a4e7 /src/client/views/collections/CollectionViewChromes.tsx | |
| parent | c407983788a09a5f93921439390834a4811b8842 (diff) | |
changed css, fixed flickering bug for boolean sorts
Diffstat (limited to 'src/client/views/collections/CollectionViewChromes.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionViewChromes.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/views/collections/CollectionViewChromes.tsx b/src/client/views/collections/CollectionViewChromes.tsx index 7787a8eed..1de2f060e 100644 --- a/src/client/views/collections/CollectionViewChromes.tsx +++ b/src/client/views/collections/CollectionViewChromes.tsx @@ -534,20 +534,20 @@ export class CollectionTreeViewChrome extends React.Component<CollectionViewChro render() { return ( - <div className="collectionStackingViewChrome-cont"> - <button className="collectionStackingViewChrome-sort" onClick={this.toggleSort}> - <div className="collectionStackingViewChrome-sortLabel"> + <div className="collectionTreeViewChrome-cont"> + <button className="collectionTreeViewChrome-sort" onClick={this.toggleSort}> + <div className="collectionTreeViewChrome-sortLabel"> Sort </div> - <div className="collectionStackingViewChrome-sortIcon" style={{ transform: `rotate(${this.descending ? "180" : "0"}deg)` }}> + <div className="collectionTreeViewChrome-sortIcon" style={{ transform: `rotate(${this.descending ? "180" : "0"}deg)` }}> <FontAwesomeIcon icon="caret-up" size="2x" color="white" /> </div> </button> - <div className="collectionStackingViewChrome-sectionFilter-cont"> - <div className="collectionStackingViewChrome-sectionFilter-label"> + <div className="collectionTreeViewChrome-sectionFilter-cont"> + <div className="collectionTreeViewChrome-sectionFilter-label"> GROUP ITEMS BY: </div> - <div className="collectionStackingViewChrome-sectionFilter"> + <div className="collectionTreeViewChrome-sectionFilter"> <EditableView GetValue={() => this.sectionFilter} autosuggestProps={ |
