Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuka Trovic <luka@nextcloud.com>2022-06-28 09:37:54 +0300
committerLuka Trovic (Rebase PR Action) <luka-nextcloud@users.noreply.github.com>2022-07-08 12:46:15 +0300
commit37fef5d913d1622bebaa24728fae655aea0ffbcc (patch)
treed4f2ac40eaa3ea52276779861e22f96c0928d89e /src/components/Menu
parente9063d1842ad91e09f1944c54466919b87778a25 (diff)
feat: update button style
Signed-off-by: Luka Trovic <luka@nextcloud.com>
Diffstat (limited to 'src/components/Menu')
-rw-r--r--src/components/Menu/ActionEntry.scss25
1 files changed, 14 insertions, 11 deletions
diff --git a/src/components/Menu/ActionEntry.scss b/src/components/Menu/ActionEntry.scss
index 643d2c452..a08a1f852 100644
--- a/src/components/Menu/ActionEntry.scss
+++ b/src/components/Menu/ActionEntry.scss
@@ -1,16 +1,9 @@
%text__is-active-item-btn {
opacity: 1;
-
- &::before {
- transform: translateX(-50%);
- border-radius: 100%;
- position: absolute;
- background: var(--color-primary-element);
- bottom: 0;
- height: 6px;
- width: 6px;
- content: '';
- left: 50%;
+ background-color: var(--color-primary-light);
+ border-radius: 50%;
+ .material-design-icon > svg {
+ fill: var(--color-primary);
}
}
@@ -71,4 +64,14 @@
box-shadow: inset 2px 0 var(--color-primary);
}
}
+
+ .button-vue {
+ svg {
+ fill: black;
+ }
+ }
+
+ .action-item__menutoggle.action-item__menutoggle--with-icon-slot {
+ opacity: 1;
+ }
}