diff options
| author | bob <bcz@cs.brown.edu> | 2019-04-03 11:54:37 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-04-03 11:54:37 -0400 |
| commit | 6d327d692a316b7dacbb542950d913a9ca361dbb (patch) | |
| tree | 11d32c084c2cf83794fc689564caeadae9c996c9 /src/client/views/nodes/DocumentView.scss | |
| parent | bb7d5a26ec68f283c5adb42d4d6554253de7176f (diff) | |
| parent | bc572b4459455e6b046972b0f984868acc6701b5 (diff) | |
Merge branch 'minimize' into decor
Diffstat (limited to 'src/client/views/nodes/DocumentView.scss')
| -rw-r--r-- | src/client/views/nodes/DocumentView.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.scss b/src/client/views/nodes/DocumentView.scss index 85a115f1c..127a6b535 100644 --- a/src/client/views/nodes/DocumentView.scss +++ b/src/client/views/nodes/DocumentView.scss @@ -1,23 +1,41 @@ @import "../global_variables"; + .documentView-node { position: absolute; background: $light-color; //overflow: hidden; + &.minimized { width: 30px; height: 30px; } + .top { background: #232323; height: 20px; cursor: pointer; } + .content { padding: 20px 20px; height: auto; box-sizing: border-box; } + .scroll-box { overflow-y: scroll; height: calc(100% - 20px); } } + +.minimized-box { + height: 10px; + width: 10px; + border-radius: 2px; + background: $dark-color +} + +.minimized-box:hover { + background: $main-accent; + transform: scale(1.15); + cursor: pointer; +}
\ No newline at end of file |
