Zelda Wiki

Want to contribute to this wiki?
Sign up for an account, and get started!

Come join the Zelda Wiki community Discord server!

READ MORE

Zelda Wiki
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/** 
 * Autocomplete/Dropdown list 
 * Uses https://yuku-t.com/textcomplete/
 * Modified from https://github.com/yuku-t/textcomplete/blob/1bf0ce8cf72652563aa20fe6801505a694c3c488/src/doc/main.css
 */

.dropdown-menu {
	background-color: white;
	border: 1px solid #ddd;
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 180px;
	overflow-y: scroll;
}

.dropdown-menu li {
	border-top: 1px solid #ddd;
	padding: 2px 5px;
	margin: 0;
}

.dropdown-menu li:first-child {
	border-top: none;
}

.dropdown-menu li:hover,
.dropdown-menu .active {
	background-color: rgb(110, 183, 219);
}

.dropdown-menu a {
	height: 18px;
	text-decoration: none;
	color: #555;
}

.dropdown-menu a:hover {
	cursor: pointer;
}

.dropdown-menu img {
	vertical-align: text-top;
	height: 18px;
}
Advertisement