-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.css
50 lines (46 loc) · 898 Bytes
/
edit.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
45
46
47
48
49
50
.ejs {
margin: 10px 0;
}
.ejs * {
box-sizing: border-box;
}
.ejs .edit-wrapper {
border: solid 1px #ff9900;
border-radius: 3px;
position: relative;
}
.ejs .edit-wrapper textarea {
resize: vertical;
width: 100%;
border: none;
background-color: transparent;
color: inherit;
}
.ejs .edit-wrapper textarea:focus {
outline: none;
}
.ejs .edit-wrapper button.save {
position: absolute;
top: 0;
right: 0;
display: inline;
width: auto;
background-color: #ff9900;
color: white;
border: none;
cursor: pointer;
padding: 2px 6px;
border-bottom-left-radius: 3px;
}
.ejs .edit-wrapper button.save:hover {
background-color: #eea63a;
}
.ejs div.editable {
border: solid 1px transparent;
min-height: 10px;
}
.ejs div.editable:hover {
border: solid 1px #ff9900;
cursor: pointer;
border-radius: 3px;
}