diff options
| author | bobzel <zzzman@gmail.com> | 2022-11-15 12:49:53 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-11-15 12:49:53 -0500 |
| commit | 19f317bd43a7cc8df0daf1c0642011cc8754e14b (patch) | |
| tree | 8646b6a4a45ec877609e499a58c515010a6fa9d4 /src/client/views/DocumentButtonBar.scss | |
| parent | 6a6408b120c60a717efb90576e1f14d1ac2cde68 (diff) | |
made InPlace container tool button apply more settings to be more like a template. added followAllLInks flag. added image anchors to save pan zoom. added follow link button bar option for follow all links. added hideDecorations flag and property
Diffstat (limited to 'src/client/views/DocumentButtonBar.scss')
| -rw-r--r-- | src/client/views/DocumentButtonBar.scss | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/src/client/views/DocumentButtonBar.scss b/src/client/views/DocumentButtonBar.scss index 1e93ba5e2..f9c988fdd 100644 --- a/src/client/views/DocumentButtonBar.scss +++ b/src/client/views/DocumentButtonBar.scss @@ -18,15 +18,44 @@ $linkGap: 3px; cursor: pointer; } +.documentButtonBar-followTypes, .documentButtonBar-pinTypes { position: absolute; - display: flex; + display: none; width: 60px; top: -14px; background: black; height: 20px; align-items: center; } +.documentButtonBar-followTypes { + width: 20px; + display: none; +} +.documentButtonBar-followIcon { + align-items: center; + display: flex; + height: 100%; + &:hover { + background-color: lightblue; + } +} +.documentButtonBar-follow { + &:hover { + .documentButtonBar-followTypes { + display: flex; + } + } +} +.documentButtonBar-pin { + color: white; + &:hover { + .documentButtonBar-pinTypes { + display: flex; + } + } +} + .documentButtonBar-pinIcon { &:hover { background-color: lightblue; |
