-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jordan Humphreys
committed
Mar 6, 2020
1 parent
975c147
commit 0aef59a
Showing
6 changed files
with
80 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
.tribute-container { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
height: auto; | ||
max-height: 300px; | ||
max-width: 500px; | ||
overflow: auto; | ||
display: block; | ||
z-index: 999999; | ||
} | ||
.tribute-container ul { | ||
margin: 0; | ||
margin-top: 2px; | ||
padding: 0; | ||
list-style: none; | ||
background: #efefef; | ||
} | ||
.tribute-container li { | ||
padding: 5px 5px; | ||
cursor: pointer; | ||
} | ||
.tribute-container li.highlight { | ||
background: #ddd; | ||
} | ||
.tribute-container li span { | ||
font-weight: bold; | ||
} | ||
.tribute-container li.no-match { | ||
cursor: default; | ||
} | ||
.tribute-container .menu-highlighted { | ||
font-weight: bold; | ||
} |