summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_popover.scss
blob: c389ddf7d3beb7393b7954a92b5280f746b41ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.channel-header__info .popover-content {
	max-height: 250px;
	overflow: auto;
}

.user-popover {
	cursor: pointer;
	display: inline-block;
}

.user-popover__image {
	margin: 0 0 10px;
	@include border-radius(128px);
}

.user-popover__email {
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

.search-help-popover {
    transition: opacity 0.3s;

    h4 {
        text-align: left;
    }
    ul {
        padding-left: 2em;
        text-align: left;
    }
    .tooltip-inner {
        max-width: 100%;
    }
}

.search-help-popover.visible {
    opacity: 100;
    transition: opacity 0.3s;
}