.btn-group {
|
float: left;
|
height: 100%;
|
margin-left: 8px;
|
}
|
|
.btn {
|
float: left;
|
height: 22px;
|
line-height: 22px;
|
padding-left: 10px;
|
padding-right: 10px;
|
background-color: #eaeaea;
|
border-top: 1px solid #d6d6d6;
|
border-bottom: 1px solid #d6d6d6;
|
border-left: 1px solid #d6d6d6;
|
cursor: pointer;
|
}
|
|
.btn-active {
|
color: #2d2727;
|
}
|
|
.btn-unactive {
|
color: gray;
|
}
|
|
.btn-active:hover {
|
background-color: #dadada;
|
}
|
|
.btn:first-of-type {
|
border-top-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
}
|
|
.btn:last-of-type {
|
border-top-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
border-right: 1px solid #d6d6d6;
|
}
|
|
/*================ pup menu ================= */
|
|
.popmenu {
|
position: fixed;
|
margin: 0;
|
width: 150px;
|
z-index: 9999;
|
background: #fff;
|
box-shadow: 3px 3px 6px #d5d5d5;
|
font-size: 12px;
|
padding: 0px;
|
}
|
|
.popmenu-item {
|
text-align: left;
|
box-sizing: border-box;
|
display: block;
|
width: 100%;
|
line-height: 1.42857143;
|
margin: 1px 0;
|
padding: 6px 11px;
|
color: #333;
|
cursor: pointer;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
white-space: nowrap;
|
font-weight: 400;
|
line-height: 1.42857143;
|
border-bottom: solid 1px #c3c3c3;
|
background: #f1efef;
|
}
|
|
.popmenu-item:hover {
|
background: #e2e0db;
|
}
|
|
.popmenu li:last-child {
|
border-bottom: none;
|
}
|