51 lines
998 B
CSS
51 lines
998 B
CSS
/*
|
||
* 版 本 PIT-ADMS V7.0.3 敏捷开发框架
|
||
* Copyright (c) 2013-2018 Hexagon PPM
|
||
* 创建人:力软-前端 开发组
|
||
* 日 期:2018.04.09
|
||
* 描 述:弹层选择控件
|
||
*/
|
||
.lr-layerselect {
|
||
position: relative;
|
||
width: 100%;
|
||
height: 28px;
|
||
line-height: 26px;
|
||
border: 1px solid #ccc;
|
||
padding-left: 4px;
|
||
cursor: pointer;
|
||
color: #999;
|
||
}
|
||
|
||
.lr-layerselect.selected {
|
||
color: #000;
|
||
}
|
||
|
||
.lr-layerselect > i {
|
||
position: absolute;
|
||
top: 8px;
|
||
right: 2px;
|
||
font-size: 12px;
|
||
color: #666;
|
||
}
|
||
|
||
.lr-layerselect .clear-btn {
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
height: 100%;
|
||
width: 40px;
|
||
background-color: #ccc;
|
||
text-align: center;
|
||
display: none;
|
||
}
|
||
.lr-layerselect .clear-btn:hover {
|
||
color: #666;
|
||
}
|
||
.lr-layerselect:hover > i {
|
||
display: none;
|
||
}
|
||
|
||
.lr-layerselect:hover .clear-btn {
|
||
display: block;
|
||
}
|