-
Notifications
You must be signed in to change notification settings - Fork 0
/
_style.scss
52 lines (51 loc) · 1.22 KB
/
_style.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
/**
* SASS Tools chain : Should use auto-prefixer
*/
div.wysiwyg-menu {
$button-size: 25px;
position: fixed;
display: none;
transition: all .3s ease-in-out;
ul {
padding: 5px;
border-radius: 5px;
background-color: #eee;
display: inline-block;
li {
display: inline-block;
margin-right: 3px;
list-style: none;
button {
background-color: #fff;
border-radius: 5px;
border: none;
width: $button-size;
height: $button-size;
text-align: center;
line-height: $button-size;
padding: 0;
color: #aaa;
&:hover {
color: #666;
}
}
}
}
.wysiwyg-anchor-ui {
padding: 5px;
background-color: #eee;
border-radius: 5px;
width: 235px;
select {
text-align: center;
width: 4rem;
font-size: 0.85em;
color: #555;
}
input {
color: #333;
width: calc(100% - 5px);
margin-bottom: 5px;
}
}
}