-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_style.css
More file actions
42 lines (42 loc) · 828 Bytes
/
_style.css
File metadata and controls
42 lines (42 loc) · 828 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
.webprofy-include {
position: relative;
transition: opacity 0.5s linear;
}
.webprofy-include.is-disabled {
opacity: 0.5;
pointer-events: none;
}
.webprofy-include__buttons {
position: absolute;
right: 0;
top: 0;
display: none;
}
.webprofy-include:hover .webprofy-include__buttons {
display: block;
}
.webprofy-include__edit,
.webprofy-include__cancel,
.webprofy-include__save {
display: inline-block;
padding: 5px 10px;
background: #999;
color: white;
font-size: 11px;
margin-left: 1px;
text-decoration: none;
cursor: pointer;
}
.webprofy-include__edit {
background-color: #1a75ba;
}
.webprofy-include__cancel {
background-color: #c61c26;
}
.webprofy-include__save {
background-color: #88c047;
}
.webprofy-include img.medium-editor-dragover {
-webkit-filter: blur(5px); /* Safari */
filter: blur(5px);
}