aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocumentLinksButton.scss
diff options
context:
space:
mode:
authorvkalev <vjk1883@gmail.com>2021-08-13 10:15:51 -0400
committervkalev <vjk1883@gmail.com>2021-08-13 10:15:51 -0400
commit252c2a9dd86730e05637e1e32e8487cf064e0c98 (patch)
tree88c259eeacf6ae4497c3184b6bf3c42d0be2a433 /src/client/views/nodes/DocumentLinksButton.scss
parentb69fe78eadeb2bfa1f284e3e0333734b03b718a9 (diff)
parent136b900ed0b939c2a10b601470f764dcb50809ad (diff)
Merge branch 'master' into ink-gfx-victor
Diffstat (limited to 'src/client/views/nodes/DocumentLinksButton.scss')
-rw-r--r--src/client/views/nodes/DocumentLinksButton.scss38
1 files changed, 28 insertions, 10 deletions
diff --git a/src/client/views/nodes/DocumentLinksButton.scss b/src/client/views/nodes/DocumentLinksButton.scss
index 9bab72d55..b37b68249 100644
--- a/src/client/views/nodes/DocumentLinksButton.scss
+++ b/src/client/views/nodes/DocumentLinksButton.scss
@@ -44,25 +44,43 @@
}
.documentLinksButton {
- background-color: black;
+ background-color: $dark-gray;
+ color: $white;
font-weight: bold;
+ width: 80%;
+ height: 80%;
+ font-size: 100%;
+ transition: 0.2s ease all;
&:hover {
- transform: scale(1.05);
- cursor: pointer;
+ background-color: $black;
+ }
+}
+
+.documentLinksButton.startLink {
+ background-color: $medium-blue;
+ color: $white;
+ font-weight: bold;
+ width: 80%;
+ height: 80%;
+ font-size: 100%;
+ transition: 0.2s ease all;
+
+ &:hover {
+ background-color: $black;
}
}
.documentLinksButton-endLink {
border: $medium-blue 2px dashed;
color: $medium-blue;
+ background-color: none !important;
+ width: 80%;
+ height: 80%;
+ font-size: 100%;
+ transition: 0.2s ease all;
+
&:hover {
- background: $light-gray;
- transform: scale(1.05);
- cursor: pointer;
+ background-color: $light-blue;
}
-}
-
-.documentLinksButton-startLink {
- background-color: $medium-blue;
} \ No newline at end of file