diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-24 22:55:57 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-24 22:55:57 -0400 |
| commit | 2786a2e4b33ff874f320697b89fecec3105df201 (patch) | |
| tree | 50481c5fa97be59222a394ab478f419231669045 /src/client/views/collections/CollectionStackingView.scss | |
| parent | 93bbfe84f126c8f02ec2756b8bc236cb93c40d88 (diff) | |
fixed some stacking view layout. added a miniHeader layout for stacks
Diffstat (limited to 'src/client/views/collections/CollectionStackingView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionStackingView.scss | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingView.scss b/src/client/views/collections/CollectionStackingView.scss index f5530ab26..29178b909 100644 --- a/src/client/views/collections/CollectionStackingView.scss +++ b/src/client/views/collections/CollectionStackingView.scss @@ -124,7 +124,38 @@ background: red; } } - + .collectionStackingView-miniHeader { + width: 100%; + .editableView-container-editing-oneLine { + min-height: 20px; + display: flex; + align-items: center; + flex-direction: row; + } + span::before , span::after{ + content: ""; + width: 50%; + border-top: dashed gray 1px; + position: relative; + display: inline-block; + } + span::before { + margin-right: 10px; + } + span::after{ + margin-left: 10px; + } + span { + position: relative; + text-align: center; + white-space: nowrap; + overflow: visible; + width: 100%; + display: flex; + color:gray; + align-items: center; + } + } .collectionStackingView-sectionHeader { text-align: center; margin-left: 2px; |
