-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.less
More file actions
42 lines (36 loc) · 798 Bytes
/
editor.less
File metadata and controls
42 lines (36 loc) · 798 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
// Core variables and mixins
@import "../bootstrap/variables.less";
@import "../bootstrap/mixins.less";
.ks-editable-btn {
position: absolute;
display: inline-block;
padding: 5px 10px;
font-size: 13px;
font-weight: normal;
text-transform: uppercase;
vertical-align: middle;
line-height: 16px;
text-align: center;
cursor: pointer;
color: #666;
background: rgba(255,255,255,0.75);
border: 1px solid rgba(0,0,0,0.5);
border-radius: 5px;
white-space: nowrap;
text-decoration: none;
.user-select(none);
.transition(opacity .15s linear);
&:active,
&:hover,
&:focus {
color: black;
background: white;
text-decoration: none;
border: 1px solid rgba(0,0,0,1);
}
&.active {
outline: 0;
background-image: none;
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
}
}