-
Notifications
You must be signed in to change notification settings - Fork 72
/
message-dialog-action-popup.html
131 lines (113 loc) · 3.55 KB
/
message-dialog-action-popup.html
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>CopyFish</title>
<!-- <script src="/scripts/jquery.min.js"></script> -->
<!-- <script src="/js/popup.js"></script> -->
<style>
.popup-box {
min-width: 400px;
font-size: 13px;
/* width: 30rem; */
box-shadow: 0 0 1rem #ccc;
min-height: 130px;
/* margin-top:10px; */
margin: 0px;
/* padding: .5rem; */
padding-top: 10px;
}
.cp-dialog-open-button {
color: #FFF;
background: #0066CC;
padding: 10px;
text-decoration: none;
border: 1px solid #0157ad;
border-radius: 3px;
}
/* Popup inner div */
.cp-dialog-popup-content {
/* width: 30%; */
margin: 0 auto;
box-sizing: border-box;
padding: 40px;
/* margin-top: 100px; */
box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
border-radius: 3px;
background: #fff;
/* position: relative; */
}
/* Popup close button */
#cfish-popup-message-dialog {
/* z-index: 999; */
font-family: Roboto, Helvetica, Arial, sans-serif;
color:#757575;
}
#cfish-popup-message-dialog .cp-dialog-popup-content {
padding: 0;
}
#cfish-popup-message-dialog .title-con {
display: flex;
align-items: center;
padding: 10px 15px;
background: #2196f3;
}
#cfish-popup-message-dialog .title-con img {
width: 25px;
height: 25px;
object-fit: cover;
}
#cfish-popup-message-dialog #cp-dialog-title {
color: #fff;
padding: 0;
margin: 0 0 0 10px;
}
#cfish-popup-message-dialog #cp-dialog-description {
padding: 10px 15px 20px;
font-size: 18px;
line-height: 25px;
}
#cfish-popup-message-dialog #cp-dialog-description .button-row {
padding-top: 25px;
}
#cfish-popup-message-dialog #cp-dialog-description .button-row.btn-center {
text-align: center;
}
#cfish-popup-message-dialog #cp-dialog-description span {
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
margin-top:12px;
}
#cfish-popup-message-dialog .cp-dialog-close-button {
top: 7px;
background: none;
right: 5px;
}
.cp-dialog-description span {
padding-top: 12px;
}
@media screen and (max-width: 720px) {
.cp-dialog-popup-content {
width: 90%;
}
}
</style>
</head>
<body class="popup-box">
<div class="cp-dialog-popup" popup-name="popup-1" id="cfish-popup-message-dialog">
<div class="cp-dialog-popup-content">
<div class="title-con">
<img id='cp-dialog-image' src="/images/copyfish-48.png">
<h2 id="cp-dialog-title">Copyfish</h2>
</div>
<p id="cp-dialog-description">
<b>Copyfish</b> for Firefox can not access the clipboard on internal browser pages.
<span>
<b>Solution:</b> Please load any normal website and try again.
</span>
</p>
</div>
</div>
</body>
</html>