aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/popup/popup.reel/popup.css
blob: 6260b8a96f0bb46b032d5a9fdaeacf4df2967194 (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
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */
/* these need to be moved to montage.css when that is created */
.montage-invisible {
    display: none;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}


.montage-off-left {
    position: absolute;
    top: 0px;
    left: -10000px;
}

.montage-popup-modal-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.8;
}

.montage-popup-container {
    border: 1px solid #eee;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-transition: opacity .25s;
    -moz-transition: opacity .25s;
    -ms-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s;
    background: white;
    border: 1px solid rgba(0, 0, 0, .2);
    cursor: default;
    margin: 0;
    outline: none;
    width: auto;
    border-radius: 3px;
}

.montage-popup-noborder {
    border: 0px;
}

.montage-modal {
    border: 3px solid #ccc;
}

.montage-popup-container *:focus {
    outline: none;
}

.montage-popup-wrapper {

}

.montage-popup-header {
    background-color: whitesmoke;
    border-bottom: 1px solid #eee;
    padding: 5px 15px;
}
.montage-popup-footer {
    background-color: whitesmoke;
    padding: 10px 15px;
    border-top: 1px solid #ddd;

}