forked from darkreader/darkreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.less
More file actions
34 lines (30 loc) · 772 Bytes
/
Copy pathstyle.less
File metadata and controls
34 lines (30 loc) · 772 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
@import "../../theme";
.button {
background-color: @color-control-back;
border: @size-border solid @color-border;
box-sizing: content-box;
color: @color-control-fore;
cursor: pointer;
display: inline-block;
height: @size-control-inner;
line-height: @size-text-normal;
min-width: @size-control-inner;
outline: none;
overflow: hidden;
padding: 0;
text-align: center;
transition: background-color @time-slow;
-moz-user-select: none;
user-select: none;
&:hover {
background-color: @color-control-hover;
transition: background-color @time-fast;
}
&:active {
background-color: @color-control-active;
}
&__wrapper {
height: 100%;
width: 100%;
}
}