5b5ab7e5
함상기
20240409
|
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
|
.layout-actionbar {
display: flex;
align-items: center;
justify-content: space-between;
background-color: $actionBarBgColor;
padding: 10px 25px;
position: relative;
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
.layout-breadcrumb {
color: $textSecondaryColor;
}
.layout-actions {
padding: 0;
ul {
margin: 0;
padding: 0;
list-style: none;
display: inline-block;
> li {
display: inline-block;
> button {
position: relative;
margin-left: 5px;
background-color: $actionItemBgColor;
color: $actionItemIconColor;
font-size: 15px;
width: 36px;
height: 36px;
cursor: pointer;
border-radius: 50%;
border: 1px solid $actionBarBgColor;
transition: background-color $transitionDuration;
.icon{
position: absolute;
top: 50%;
left: 50%;
width:16px;
margin-top: -0.5em;
margin-left: -0.5em;
font-size: 1.25em;
}
&:hover {
background-color: $actionItemHoverBgColor;
}
}
}
}
}
}
|