diff options
| author | madelinegr <laura_wilson@brown.edu> | 2019-02-24 23:37:41 -0500 |
|---|---|---|
| committer | madelinegr <laura_wilson@brown.edu> | 2019-02-24 23:37:41 -0500 |
| commit | fc3308a7760860328d153faba65ab3821d4d0c70 (patch) | |
| tree | 8306181e34ac159ea1691e30f536ae716b12142e /src/client/views/collections/CollectionTreeView.scss | |
| parent | fe05db6c34d54e27ceeb853da5718aca4c52dcae (diff) | |
minor css styling
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionTreeView.scss | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionTreeView.scss b/src/client/views/collections/CollectionTreeView.scss index e69de29bb..675fc6c53 100644 --- a/src/client/views/collections/CollectionTreeView.scss +++ b/src/client/views/collections/CollectionTreeView.scss @@ -0,0 +1,28 @@ +ul { + list-style: none; +} + +li { + margin: 5px 0; +} + +.no-indent { + padding-left: 0; +} + +/* ALL THESE SPACINGS ARE SUPER HACKY RIGHT NOW HANNAH PLS HELP */ + +li:before { + content: '\2014'; + margin-right: 0.7em; +} + +.collapsed:before { + content: '\25b6'; + margin-right: 0.65em; +} + +.uncollapsed:before { + content: '\25bc'; + margin-right: 0.5em; +}
\ No newline at end of file |
