aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/misc/help.component.scss
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-06-23 14:10:17 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-06-23 16:00:49 +0200
commit67ed6552b831df66713bac9e672738796128d33f (patch)
tree59c97d41e0b49d75a90aa3de987968ab9b1ff447 /client/src/app/shared/shared-main/misc/help.component.scss
parent0c4bacbff53bc732f5a2677d62a6ead7752e2405 (diff)
downloadPeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.gz
PeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.zst
PeerTube-67ed6552b831df66713bac9e672738796128d33f.zip
Reorganize client shared modules
Diffstat (limited to 'client/src/app/shared/shared-main/misc/help.component.scss')
-rw-r--r--client/src/app/shared/shared-main/misc/help.component.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-main/misc/help.component.scss b/client/src/app/shared/shared-main/misc/help.component.scss
new file mode 100644
index 000000000..43f33a53a
--- /dev/null
+++ b/client/src/app/shared/shared-main/misc/help.component.scss
@@ -0,0 +1,42 @@
1@import '_variables';
2@import '_mixins';
3
4.help-tooltip-button {
5 cursor: pointer;
6 border: none;
7
8 my-global-icon {
9 width: 17px;
10 position: relative;
11 top: -2px;
12 margin: 5px;
13
14 @include apply-svg-color(pvar(--mainForegroundColor))
15 }
16}
17
18::ng-deep {
19 .help-popover {
20 z-index: z(help-popover) !important;
21 max-width: 300px;
22
23 .popover-body {
24 font-family: $main-fonts;
25 text-align: left;
26 padding: 10px;
27 font-size: 13px;
28 background-color: pvar(--mainBackgroundColor);
29 color: pvar(--mainForegroundColor);
30 border-radius: 3px;
31
32 p {
33 margin-bottom: 0;
34 }
35
36 ul {
37 padding-left: 20px;
38 margin-bottom: 0;
39 }
40 }
41 }
42}