diff options
| author | geireann <geireann.lindfield@gmail.com> | 2021-07-31 18:17:35 -0400 |
|---|---|---|
| committer | geireann <geireann.lindfield@gmail.com> | 2021-07-31 18:17:35 -0400 |
| commit | d3a7e378e26466b911733f76addfe9fc61a689df (patch) | |
| tree | 961874fc8dce12c9a97d32615bfa4fe99441ab2c /src/client/views/DocumentButtonBar.scss | |
| parent | 41ccf50f2b551edd6827c9fd6296b9ff87a65915 (diff) | |
fixed linking issues with dragging & updating linking UI
Diffstat (limited to 'src/client/views/DocumentButtonBar.scss')
| -rw-r--r-- | src/client/views/DocumentButtonBar.scss | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/client/views/DocumentButtonBar.scss b/src/client/views/DocumentButtonBar.scss index 157f3a4f2..171e7134f 100644 --- a/src/client/views/DocumentButtonBar.scss +++ b/src/client/views/DocumentButtonBar.scss @@ -59,6 +59,7 @@ $linkGap : 3px; align-items: center; } +// depracated (now use .documentButtonBar-icon) for standard buttons .documentButtonBar-linker { height: 20px; width: 20px; @@ -74,6 +75,26 @@ $linkGap : 3px; } } +.documentButtonBar-icon { + height: 80%; + width: 80%; + font-size: 100%; + text-align: center; + border-radius: 50%; + pointer-events: auto; + background-color: $dark-gray; + border: none; + transition: 0.2s ease all; + display: flex; + align-content: center; + justify-content: center; + align-items: center; + + &:hover { + background-color: $black; + } +} + .documentButtonBar-linker:hover { cursor: pointer; transform: scale(1.05); |
