diff options
| author | bobzel <zzzman@gmail.com> | 2022-12-16 15:07:50 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-12-16 15:07:50 -0500 |
| commit | 403d1c4fece9efa663e0fd7161afff9f27cf670c (patch) | |
| tree | 8287d487c4373655e6012d978a4af81058e6dc8d /src/client/views/DocumentButtonBar.scss | |
| parent | 61683e5e084f0b3a6c53bde08295a25b53ea2db3 (diff) | |
fixed problem with undo. regularized all linkfollowing anchor fields to start with followLink<xxx>. added ease vs linear flag for scroll transitions in link and preselmeent navigations. added link follow to move target to specified offset from source. shifted from setting dropAction on items to setting childDropAction on collections
Diffstat (limited to 'src/client/views/DocumentButtonBar.scss')
| -rw-r--r-- | src/client/views/DocumentButtonBar.scss | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/client/views/DocumentButtonBar.scss b/src/client/views/DocumentButtonBar.scss index f9c988fdd..835d6c8bb 100644 --- a/src/client/views/DocumentButtonBar.scss +++ b/src/client/views/DocumentButtonBar.scss @@ -28,6 +28,15 @@ $linkGap: 3px; height: 20px; align-items: center; } +.documentButtonBar-linkTypes { + position: absolute; + display: none; + width: 60px; + top: -14px; + background: black; + height: 20px; + align-items: center; +} .documentButtonBar-followTypes { width: 20px; display: none; @@ -55,6 +64,14 @@ $linkGap: 3px; } } } +.documentButtonBar-link { + color: white; + &:hover { + .documentButtonBar-linkTypes { + display: flex; + } + } +} .documentButtonBar-pinIcon { &:hover { |
