aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTreeView.scss
diff options
context:
space:
mode:
authortschicke-brown <tyler_schicke@brown.edu>2019-02-25 18:03:05 -0500
committerGitHub <noreply@github.com>2019-02-25 18:03:05 -0500
commit292ff1a8d75f8b15f9388d2c577e09a13836d5dc (patch)
tree59dd222b58abdeefa5c648219411411d7c45128e /src/client/views/collections/CollectionTreeView.scss
parentabec712d1e5169704473a7fad2c21b0ab04299ad (diff)
parent326696caa52a7feadf37f8f9e0f8bbb69d39bf9a (diff)
Merge pull request #10 from browngraphicslab/treeview
Treeview
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.scss')
-rw-r--r--src/client/views/collections/CollectionTreeView.scss28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionTreeView.scss b/src/client/views/collections/CollectionTreeView.scss
new file mode 100644
index 000000000..675fc6c53
--- /dev/null
+++ 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