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

print.less « styles « elastic « skins - github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d998c662aec93ee7d276021f86ba923d9adbcab3 (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
74
75
76
77
78
79
80
81
82
83
/**
 * Roundcube Webmail styles for the Elastic skin
 *
 * Copyright (c) The Roundcube Dev Team
 *
 * The contents are subject to the Creative Commons Attribution-ShareAlike
 * License. It is allowed to copy, distribute, transmit and to adapt the work
 * by keeping credits to the original authors in the README.md file.
 * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
 */

/*** Additional styles for printouts ***/

body {
    overflow: auto;
    height: auto;
}

#print-layout {
    margin: 1rem;

    #logo {
        max-height: 80px;
    }

    // Overwrites for mail message printouts

    .image-attachment {
        .image-link {
            margin-bottom: .5rem;
        }

        .attachment-links {
            display: none;
        }
    }

    .header-content {
        .message-partheaders {
            padding: 0 !important;
            border: 0;
            font-size: 1rem;
            color: inherit;
        }
    }

    #message-header {
        margin-bottom: .5rem;
    }

    .attachment-size {
        padding-left: .1rem;
    }

    // Overwrites for contact printouts

    .formcontent {
        padding: 0;

        legend {
            margin-top: .5rem;
        }

        .row .form-control-plaintext {
            padding: .1rem;
        }

        .contactfield {
            padding: .2rem 0;
        }
    }

    .propform.groupped .row.input-group .input-group-text {
        padding: 0;
        min-width: 12rem;
        background: #fff;
        border: 0;
    }

    .contact-header {
        margin-bottom: 0;
    }
}