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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-26 03:44:30 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-28 11:09:39 +0300
commit3e3506b11ba3d502114b1bac88ddcb2f0bd938c3 (patch)
tree8a7a6513c96327384a012be2319096d23acd8a5c /css
parentb88d53d918cee60d0f1aac29dd2079f53a7e97c7 (diff)
Replace "Copy link" tooltip with explicit label
Now that the management actions were moved to a menu there is enough room to show a label for the "Copy link" button. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/style.scss32
1 files changed, 29 insertions, 3 deletions
diff --git a/css/style.scss b/css/style.scss
index 632f17036..42b69ed50 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -976,10 +976,30 @@ body:not(#body-public) .participantWithList > li > span:not(.currentUser):not(.g
margin-left: auto;
}
- .clipboard-button .button,
+ .clipboard-button button {
+ display: flex;
+ align-items: center;
+
+ > span {
+ cursor: pointer;
+
+ /* Override reduced opacity set for button icons in server, as the
+ * button is already dimmed. */
+ opacity: 1;
+ }
+
+ /* Override appearance set for button text in server, as this button has
+ * no background. */
+ padding: 0;
+
+ > span {
+ color: var(--color-main-text);
+ font-weight: normal;
+ }
+ }
+
+ .clipboard-button button,
.room-moderation-button .button {
- width: 44px;
- height: 44px;
background-color: transparent;
border: none;
margin: 0;
@@ -992,6 +1012,12 @@ body:not(#body-public) .participantWithList > li > span:not(.currentUser):not(.g
}
}
+ .clipboard-button .icon,
+ .room-moderation-button .button {
+ width: 44px;
+ height: 44px;
+ }
+
.room-moderation-button .menu {
/* Values copied from apps.scss in server. */
$popoveritem-height: 44px;