sheet.scss 1.4 KB
@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;
}