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

mobile.css « css - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e1bf1d91c479f29f2c1e431d57782c5bc793a7c (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
@media only screen and (max-width: 768px) {

/* full width for message list on mobile */
#mail-messages {
	width: 100%;
}

/* correctly center loading icon on mobile */
#mail-message-list-loading {
	width: 100%;
}

/* overlay message detail on top of message list */
#mail-message {
	z-index: 100;
	background: #fff;
	width: 100%;
	left: 0;
	height: 100%;
	top: 0;
	box-shadow: 0 0 100px rgba(100, 100, 100, .9);
}

#mail-message-close {
	display: block;
	position: fixed;
	right: 0;
	top: 45px;
	width: 44px;
	height: 44px;
	background-size: 24px;
	z-index: 101;
	cursor: pointer;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	opacity: .4;
}
#mail-message-close:hover,
#mail-message-close:focus {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	opacity: .6;
}

.hidden-mobile {
	display: none;
}

/* make header scroll away on mobile */
#mail-message-header {
	position: relative;
	width: initial;
	height: 100px;
}

textarea.message-body {
	padding-right: 12px;
}

#mail-content,
.mail-message-attachments {
	margin: 0 10px 50px 30px;
}

/* end of media query */
}