summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2022-07-13 17:02:54 +0200
committerJoas Schilling <coding@schilljs.com>2022-08-11 09:04:33 +0200
commit089defd0b68f9e6dde7344d860fb60f84523d289 (patch)
tree6ff19b13e0c3d4f92947705e2b7eda48160bbcb7 /css
parent61d0fe08b5f011f47dd3306fd0b791efda88d1d0 (diff)
Fix missing Talk sidebar trigger in public share pages
Since the removal of SCSS files the "menu-people" icon can no longer be used directly with a CSS class. However, it is available as a Vue component; although it would be possible to directly render the Vue component for the icon inside the button element the whole button is moved to Vue instead, as the other approach requires more fighting with the styles. As the icon will be shown with a transparent background on the header, which uses the primary color, the fill color of the icon needs to be explicitly set to the primary text color. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/publicshare.css18
1 files changed, 0 insertions, 18 deletions
diff --git a/css/publicshare.css b/css/publicshare.css
index d99ee9831..ccacb8ca2 100644
--- a/css/publicshare.css
+++ b/css/publicshare.css
@@ -67,21 +67,3 @@
* from the top padding of the second element). */
padding-bottom: 8px;
}
-
-
-
-#talk-sidebar-trigger {
- width: 44px;
- height: 44px;
-
- background-color: transparent;
- border-color: transparent;
-
- opacity: 0.6;
-}
-
-#talk-sidebar-trigger:hover,
-#talk-sidebar-trigger:focus,
-#talk-sidebar-trigger:active {
- opacity: 1;
-}