51 lines
998 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 版 本 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;
}