aboutsummaryrefslogtreecommitdiff
path: root/public/main.css
diff options
context:
space:
mode:
authorJoris2022-07-05 21:55:41 +0200
committerJoris2022-07-05 21:55:41 +0200
commitaccc3d9c67e004aa814d1592d97342d3a7766bb4 (patch)
tree3d50654383e0386f9dc22b8f0f586f928dd856d9 /public/main.css
parent2936f06576997bffe7903ea840df563a408efc21 (diff)
downloadmap-accc3d9c67e004aa814d1592d97342d3a7766bb4.tar.gz
map-accc3d9c67e004aa814d1592d97342d3a7766bb4.tar.bz2
map-accc3d9c67e004aa814d1592d97342d3a7766bb4.zip
WIP Rewrite in TS
Diffstat (limited to 'public/main.css')
-rw-r--r--public/main.css24
1 files changed, 12 insertions, 12 deletions
diff --git a/public/main.css b/public/main.css
index b94fefa..594cf56 100644
--- a/public/main.css
+++ b/public/main.css
@@ -162,30 +162,30 @@ body {
border-radius: 50%;
}
-/* Autocomplete */
+/* AutoComplete */
:root {
- --autocomplete-width: 500px;
+ --autoComplete-width: 500px;
}
-.g-Autocomplete {
+.g-AutoComplete {
position: relative;
}
-.g-Autocomplete__Input {
- width: var(--autocomplete-width);
+.g-AutoComplete__Input {
+ width: var(--autoComplete-width);
}
-.g-Autocomplete__Completion {
+.g-AutoComplete__Completion {
position: absolute;
- width: var(--autocomplete-width);
+ width: var(--autoComplete-width);
background-color: white;
max-height: 10rem;
overflow-y: auto;
border: 1px solid black;
}
-.g-Autocomplete__Entry {
+.g-AutoComplete__Entry {
display: block;
width: 100%;
text-align: left;
@@ -194,11 +194,11 @@ body {
cursor: pointer;
}
-.g-Autocomplete__Entry:hover {
+.g-AutoComplete__Entry:hover {
background-color: #DDDDDD;
}
-.g-Autocomplete__Clear {
+.g-AutoComplete__Clear {
position: absolute;
right: 0.5rem;
top: 50%;
@@ -267,11 +267,11 @@ body {
/* Marker form */
-.g-MarkerForm__AutocompleteAndIcon {
+.g-MarkerForm__AutoCompleteAndIcon {
position: relative;
}
-.g-MarkerForm__Autocomplete {
+.g-MarkerForm__AutoComplete {
padding-left: 1.5rem;
}