12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*
- * 描 述:弹层选择控件
- */
- .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;
- }
|