aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionPivotView.scss
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2020-01-27 04:18:01 -0500
committerSam Wilkins <samwilkins333@gmail.com>2020-01-27 04:18:01 -0500
commitb2aa0b80843e6e58f737e2937c45351d653255fa (patch)
tree371841d20f5eefbf955d03e1df5e1ff7262f737c /src/client/views/collections/CollectionPivotView.scss
parent0d263dba422a96c5d22f29a9b6411ff074c92645 (diff)
pivot field box and proper AND/OR behavior of facets
Diffstat (limited to 'src/client/views/collections/CollectionPivotView.scss')
-rw-r--r--src/client/views/collections/CollectionPivotView.scss36
1 files changed, 28 insertions, 8 deletions
diff --git a/src/client/views/collections/CollectionPivotView.scss b/src/client/views/collections/CollectionPivotView.scss
index 2ddcc97ea..505091e98 100644
--- a/src/client/views/collections/CollectionPivotView.scss
+++ b/src/client/views/collections/CollectionPivotView.scss
@@ -2,12 +2,14 @@
display: flex;
flex-direction: row;
position: absolute;
- height:100%;
- width:100%;
+ height: 100%;
+ width: 100%;
+
.collectionPivotView-flyout {
width: 400px;
height: 300px;
display: inline-block;
+
.collectionPivotView-flyout-item {
background-color: lightgray;
text-align: left;
@@ -17,43 +19,61 @@
}
}
+ .pivotKeyEntry {
+ position: absolute;
+ top: 5px;
+ right: 5px;
+ z-index: 10;
+ pointer-events: all;
+ padding: 5px;
+ border: 1px solid black;
+ }
+
.collectionPivotView-treeView {
- display:flex;
+ display: flex;
flex-direction: column;
width: 200px;
height: 100%;
+
.collectionPivotView-addfacet {
- display:inline-block;
+ display: inline-block;
width: 200px;
height: 30px;
background: darkGray;
text-align: center;
+
.collectionPivotView-button {
align-items: center;
display: flex;
width: 100%;
height: 100%;
+
.collectionPivotView-span {
margin: auto;
}
}
- > div, > div > div {
+
+ >div,
+ >div>div {
width: 100%;
height: 100%;
text-align: center;
}
}
+
.collectionPivotView-tree {
- display:inline-block;
+ display: inline-block;
width: 100%;
height: calc(100% - 30px);
}
}
+
.collectionPivotView-pivot {
- display:inline-block;
+ display: inline-block;
width: calc(100% - 200px);
height: 100%;
}
+
.collectionPivotView-dragger {
background-color: lightgray;
height: 40px;
@@ -63,6 +83,6 @@
top: 55%;
border: 1px black solid;
z-index: 2;
- left:-10px;
+ left: -10px;
}
} \ No newline at end of file