forked from plotly/plotly.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_notifier.scss
53 lines (44 loc) · 1.08 KB
/
_notifier.scss
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
.plotly-notifier {
font-family: 'Open Sans', verdana, arial, sans-serif; // 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;
overflow-wrap: break-word;
word-wrap: break-word;
-ms-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
.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;
}
}
}