aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/KeyValueBox.scss
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-02-28 16:36:07 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-02-28 16:36:07 -0500
commit88ce1ec4b87acdbb15c7067a2455b3412fafb29b (patch)
treed32c5a87fbf9171566267239767f996b4157aad4 /src/client/views/nodes/KeyValueBox.scss
parentfa2a9c1af221e12f10b6297851846828c6c5110f (diff)
parent5c388e0d8984bbed1b629c7af58e823de29a6490 (diff)
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web into transforms2
Diffstat (limited to 'src/client/views/nodes/KeyValueBox.scss')
-rw-r--r--src/client/views/nodes/KeyValueBox.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/client/views/nodes/KeyValueBox.scss b/src/client/views/nodes/KeyValueBox.scss
new file mode 100644
index 000000000..f22989735
--- /dev/null
+++ b/src/client/views/nodes/KeyValueBox.scss
@@ -0,0 +1,24 @@
+.keyValueBox-cont {
+ overflow-y:scroll;
+ height: 100%;
+ border: black;
+ border-width: 1px;
+ border-style: solid;
+ box-sizing: border-box;
+ display: inline-block;
+}
+.keyValueBox-header {
+ background:gray;
+}
+.keyValueBox-evenRow {
+ background: white;
+ .formattedTextBox-cont {
+ background: white;
+ }
+}
+.keyValueBox-oddRow {
+ background: lightGray;
+ .formattedTextBox-cont {
+ background: lightgray;
+ }
+} \ No newline at end of file