Skip to content

Commit

Permalink
Merge pull request #1 from osu-wams/DRUP8-1009-icon-field
Browse files Browse the repository at this point in the history
Drup8-1009 icon field
  • Loading branch information
Ruefa authored Sep 28, 2022
2 parents 795d2cc + 95fad6a commit f1fdfe8
Show file tree
Hide file tree
Showing 15 changed files with 8,471 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
15 changes: 15 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "osu-wams/osu_icon_field",
"description": "Standard Drupal Installation Profile for OSU.",
"minimum-stability": "stable",
"type": "drupal-custom-profile",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Alex Ruef",
"email": "alex.ruef@oregonstate.edu"
}
],
"require": {
}
}
37 changes: 37 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
.autocomplete-wrapper {
background-color: #ffffff;
border: solid 1px #d1d1d1;
width: 100%;
top: 75px;
left: 0;
z-index: 2;
}

.autocomplete-wrapper ul.autocomplete-items {
margin: 0;
padding: 0;
}

.autocomplete-wrapper ul.autocomplete-items li {
list-style: none;
}

.autocomplete-wrapper ul.autocomplete-items li a {
text-decoration: none;
color: black;
display: block;
padding-left: 10px;
}

.autocomplete-wrapper ul.autocomplete-items li a i {
margin-right: 10px;
}

.autocomplete-wrapper .osu-icon {
font-size: 24px;
}

a.autocomplete-hover, a.autocomplete-hover i {
background-color: black;
color: white !important;
}
Loading

0 comments on commit f1fdfe8

Please sign in to comment.