cesium/packages/widgets/Source/Geocoder/Geocoder.css

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
1.7 KiB
CSS
Raw Permalink Normal View History

2013-11-20 04:22:35 +08:00
.cesium-viewer-geocoderContainer .cesium-geocoder-input {
border: solid 1px #444;
2013-09-13 02:33:48 +08:00
background-color: rgba(40, 40, 40, 0.7);
2013-09-13 01:13:03 +08:00
color: white;
display: inline-block;
vertical-align: middle;
2013-10-22 05:00:41 +08:00
width: 0;
2013-09-15 05:12:10 +08:00
height: 32px;
2013-12-03 05:06:31 +08:00
margin: 0;
padding: 0 32px 0 0;
2014-01-25 00:14:58 +08:00
border-radius: 0;
box-sizing: border-box;
2013-11-20 04:22:35 +08:00
transition:
width ease-in-out 0.25s,
background-color 0.2s ease-in-out;
-webkit-appearance: none;
2013-09-13 01:13:03 +08:00
}
2013-10-15 21:40:34 +08:00
.cesium-viewer-geocoderContainer:hover .cesium-geocoder-input {
2013-10-22 05:00:41 +08:00
border-color: #aef;
box-shadow: 0 0 8px #fff;
}
.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {
border-color: #ea4;
2013-11-20 04:22:35 +08:00
background-color: rgba(15, 15, 15, 0.9);
box-shadow: none;
outline: none;
}
.cesium-viewer-geocoderContainer:hover .cesium-geocoder-input,
2013-10-22 05:00:41 +08:00
.cesium-viewer-geocoderContainer .cesium-geocoder-input:focus,
.cesium-viewer-geocoderContainer .cesium-geocoder-input-wide {
padding-left: 4px;
width: 250px;
2013-09-13 01:13:03 +08:00
}
2016-12-06 11:45:42 +08:00
.cesium-viewer-geocoderContainer .search-results {
position: absolute;
background-color: #000;
2016-12-17 06:29:40 +08:00
color: #eee;
2016-12-06 11:45:42 +08:00
overflow-y: auto;
opacity: 0.8;
width: 100%;
}
.cesium-viewer-geocoderContainer .search-results ul {
list-style-type: none;
margin: 0;
padding: 0;
2016-12-06 11:45:42 +08:00
}
.cesium-viewer-geocoderContainer .search-results ul li {
font-size: 14px;
padding: 3px 10px;
}
.cesium-viewer-geocoderContainer .search-results ul li:hover {
cursor: pointer;
}
.cesium-viewer-geocoderContainer .search-results ul li.active {
background: #48b;
}
.cesium-geocoder-searchButton {
background-color: #303336;
2013-09-13 01:13:03 +08:00
display: inline-block;
2013-09-13 02:33:48 +08:00
position: absolute;
2013-09-13 01:13:03 +08:00
cursor: pointer;
2013-09-13 02:33:48 +08:00
width: 32px;
2013-10-22 05:00:41 +08:00
top: 1px;
right: 1px;
height: 30px;
2013-09-13 01:13:03 +08:00
vertical-align: middle;
2013-10-22 05:00:41 +08:00
fill: #edffff;
}
2014-01-25 00:14:58 +08:00
.cesium-geocoder-searchButton:hover {
2013-12-20 00:06:17 +08:00
background-color: #48b;
2016-10-20 04:53:31 +08:00
}