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 <luka@nextcloud.com>2022-07-06 19:28:40 +0300
commit3f25d10c0c09025f8eecb745eca44b6801090295 (patch)
tree03811acd66da1eeb1a04506b70332d44a71e7181
parent254159b19808b1a1c3ad0e8f31f42ba895cacc4d (diff)
feat: update button stylefeature/2607-toolbar-button-style
Signed-off-by: Luka Trovic <luka@nextcloud.com>
-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;
+ }
}