-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsummernote-bricks.css
44 lines (38 loc) · 1.22 KB
/
summernote-bricks.css
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
.snb-editable-brick-wrap .snb-brick-actions {
display: flex!important;
position: absolute;
top: 0;
z-index: 1025;
opacity: 0;
-webkit-transition: .5s ease, opacity .5s ease;
-moz-transition: .5s ease, opacity .5s ease;
-ms-transition: .5s ease, opacity .5s ease;
-o-transition: .5s ease, opacity .5s ease;
transition: .5s ease, opacity .5s ease;
}
.snb-editable-brick-wrap:hover .snb-brick-actions {
opacity: 1;
}
.snb-editable-brick-wrap .snb-brick-actions button{
padding: 0px 5px;
margin: 2px;
}
.snb-editable-brick-wrap .snb-brick-actions .snb-linebreaks .snb-linebreak-up{
margin-right: 0px;
}
.snb-editable-brick-wrap .snb-brick-actions .snb-linebreaks .snb-linebreak-down{
margin-left: 0px;
}
.snb-editable-brick-wrap {
border: 1px solid transparent;
position: relative;
-webkit-transition: box-shadow .5s ease, border .5s ease;
-moz-transition: box-shadow .5s ease, border .5s ease;
-ms-transition: box-shadow .5s ease, border .5s ease;
-o-transition: box-shadow .5s ease, border .5s ease;
transition: box-shadow .5s ease, border .5s ease;
}
.snb-editable-brick-wrap:hover {
border: 1px solid #d0d0d0;
box-shadow: 0px 0px 1px 0px #e2e2e2;
}