sheet.scss
1.4 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
@import "../../../scss/krhr/variables";
.sheets_wrap{
position: absolute;
bottom: 20px;
width: 100%;
padding: 0px 5px 10px 0;
height: 31px;
// overflow: auto;
}
.sheet_head_btn:hover,.sheet_head_drop_btn:hover{
background-color: lighten($active-color, 30%);
}
.sheet_head_btn{
@extend .btn_size_lg;
display: inline-block;
padding-right: 5px;
border-right: 1px solid $border-color-base;
}
.sheet_head_drop_btn{
display: inline-block;
@extend .btn_size_lg;
padding-left: 5px;
padding-right: 10px;
}
.sheet_head_drop_btn_disabled{
display: inline-block;
@extend .btn_size_lg;
padding-left: 5px;
padding-right: 10px;
background-color:#eee;
color:#666;
cursor: not-allowed;
}
.sheet_head_wrap{
margin-left: 10px;
margin-bottom: 10px;
display: inline-block;
border: 1px solid $border-color-base;
background-color: $background-color-base;
cursor: pointer;
transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sheet_head_wrap:hover{
border: 1px solid $active-color;
.sheet_head_btn{
border-right: 1px solid $active-color;
}
}
.sheet_head_wrap.active{
display: inline-block;
border: 1px solid $active-color;
background-color:$white-color;
color: $active-color;
.sheet_head_btn{
border-right: 1px solid $active-color;
}
}
.sheet_head_menu_item{
background-color: $background-color-base;
span{
margin: 0 5px;
}
}
.sheet_head_menu_item:hover{
background-color: $active-color;
color: $white-color;
}