forked from plotly/plotly.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_notifier.scss
More file actions
46 lines (39 loc) · 934 Bytes
/
Copy path_notifier.scss
File metadata and controls
46 lines (39 loc) · 934 Bytes
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
.plotly-notifier {
font-family: 'Open Sans'; // Because not all contexts have this specified.
position: fixed;
top: 50px;
right: 20px;
z-index: 10000;
font-size: 10pt;
max-width: 180px;
p {
margin: 0;
}
.notifier-note {
min-width: 180px;
max-width: 250px;
border: 1px solid $color-bg-light;
z-index: 3000;
margin: 0;
background-color: #8c97af;
background-color: rgba(140, 151, 175, 0.9);
color: $color-bg-light;
padding: 10px;
}
.notifier-close {
color: $color-bg-light;
opacity: 0.8;
float: right;
padding: 0 5px;
background: none;
border: none;
font-size: 20px;
font-weight: bold;
line-height: 20px;
&:hover {
color: #444;
text-decoration: none;
cursor: pointer;
}
}
}