aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DocumentButtonBar.scss
diff options
context:
space:
mode:
authormehekj <mehek.jethani@gmail.com>2021-08-02 15:46:56 -0400
committermehekj <mehek.jethani@gmail.com>2021-08-02 15:46:56 -0400
commit8f210e4dd1c8b1328fc6f4cf0094acecbae0a2ef (patch)
tree7368dcc55d2b210c701c849bca7183f08191e9b0 /src/client/views/DocumentButtonBar.scss
parent2e1f7c626306a054c036c91a98e5dabee3b39ef8 (diff)
parentd3a7e378e26466b911733f76addfe9fc61a689df (diff)
Merge branch 'master' into temporalmedia-mehek
Diffstat (limited to 'src/client/views/DocumentButtonBar.scss')
-rw-r--r--src/client/views/DocumentButtonBar.scss21
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);