forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIconButton.module.css
More file actions
86 lines (75 loc) · 1.5 KB
/
Copy pathIconButton.module.css
File metadata and controls
86 lines (75 loc) · 1.5 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.btn {
line-height: 1.499;
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 400;
white-space: nowrap;
text-align: center;
background-image: none;
cursor: pointer;
user-select: none;
touch-action: manipulation;
padding: 4px;
font-size: 14px;
border-radius: 2px;
color: rgba(0, 0, 0, 0.65);
background-color: transparent;
border: none;
border-color: rgb(217, 217, 217);
flex: 0 0 auto;
width: 32px;
height: 32px;
}
.btn:active,
.btn:hover,
.btn:focus {
text-decoration: none;
outline: none;
border: 2px solid var(--primary-color);
background-color: #f3f3f3;
}
.btn:hover {
color: var(--primary-light-color);
}
.btn:active {
color: var(--primary-dark-color);
}
.btn:disabled,
.btn[disabled] {
color: rgba(0, 0, 0, 0.25);
background-color: #eee;
}
.btn[disabled]:hover {
border: none;
color: rgba(0, 0, 0, 0.25);
background-color: #eee;
}
.danger:hover,
.danger:focus {
color: var(--secondary-color);
border: 2px solid var(--secondary-color);
}
.danger:active {
color: var(--secondary-dark-color);
border: 2px solid var(--secondary-dark-color);
}
.ghost {
color: rgba(255, 255, 255, 0.8);
background-color: transparent;
}
.ghost:hover,
.ghost:focus {
color: rgba(255, 255, 255, 0.85);
background-color: transparent;
}
.ghost:active {
color: rgba(255, 255, 255, 1);
background-color: transparent;
}
.ghost:disabled,
.ghost[disabled] {
border: none;
color: rgba(255, 255, 255, 0.55);
}