Sidebar is now redesigned with color indicators, filtering name by search query or filtering status by dropdown. Moved CSS to a separate stylesheet.

This commit is contained in:
2017-12-02 11:20:26 +01:00
parent e1fed24fc0
commit 5fb1e7ba2e
2 changed files with 252 additions and 46 deletions

View File

@@ -0,0 +1,50 @@
export default {
body: {
backgroundColor: 'white',
width: 'min-content',
},
parentElement: {
display: 'inline-block',
width: '300px',
border: '1px solid black',
borderRadius: '2px',
padding: '4px',
margin: '4px',
marginLeft: '4px',
backgroundColor: 'white',
},
parentElement_hover: {
marginLeft: '10px',
},
parentElement_active: {
textDecoration: 'none',
},
parentElement_selected: {
display: 'inline-block',
width: '300px',
border: '1px solid black',
borderRadius: '2px',
padding: '4px',
margin: '4px 0px 4px 4px',
marginLeft: '10px',
backgroundColor: 'white',
},
title: {
maxWidth: '70%',
display: 'inline-flex',
},
link: {
color: 'black',
textDecoration: 'none',
},
rightContainer: {
float: 'right',
},
}