aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/KeyValueBox.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2019-02-28 09:21:10 -0500
committerGitHub <noreply@github.com>2019-02-28 09:21:10 -0500
commit5875fa1622a1270aebb56f18b17b553f10bed9dd (patch)
treec938fd15367ac5ec135347654baf8e3cd387309a /src/client/views/nodes/KeyValueBox.scss
parent9c9aea92d9a330f5826735c3c3e07ec35b325cc2 (diff)
parentf3085f427ec7c324d0a21d710555e79e8a9704b5 (diff)
Merge pull request #14 from browngraphicslab/kvp
Kvp
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