summaryrefslogtreecommitdiffstats
path: root/css/_contactlist.scss
blob: b2e1369b49567da743aa529743343d0f33901e73 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.contacts-list {
	min-height: 100%;
}

contactlist .tooltip {
	max-width: 75%;
}

.app-content-list-item-failed {
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -15px;
	opacity: 0.2;
	width: 30px;
	height: 30px;
	z-index: 50;
}

.app-content-list-item-failed:hover {
	opacity: 0.5;
}

.app-content-list-item-failed ~ .app-content-list-item-line-one,
.app-content-list-item-failed ~ .app-content-list-item-line-two {
	padding-right: 50px;
}

.contact__icon {
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 10px;
	color: white;
	text-align: center;
	font-size: 1.5em;
	text-transform: capitalize;
	object-fit: cover;
}

.icon-group {
	background-image: url('../img/group.svg');
}

/* Mobile width < 768px */
@media only screen and (max-width: 768px) {
	.contacts-list:not(.mobile-show) {
		display: none;
	}

	#app-navigation-toggle.showdetails {
		transform: translate(-50px, 0);
	}

	#app-navigation-toggle-back {
		position: fixed;
		display: inline-block !important;
		top: 45px;
		left: 0;
		width: 44px;
		height: 44px;
		z-index: 149;
		background-color: rgba(255, 255, 255, .7);
		cursor: pointer;
		opacity: .6;
		transform: rotate(90deg);
	}

	/* end of media query */
}