diff --git a/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.html b/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.html
index 3acad3d3f2..af388ce7fd 100644
--- a/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.html
+++ b/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.html
@@ -40,13 +40,14 @@
{{ 'functions' | translate }}
-
+ |
|
diff --git a/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.scss b/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.scss
index d601798e57..07a388f60d 100644
--- a/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.scss
+++ b/AzureFunctions.AngularClient/src/app/functions-list/functions-list.component.scss
@@ -20,4 +20,25 @@ h2{
.search-box-container {
width: 250px;
margin-bottom: 15px;
+}
+
+td.icon-cell{
+ &:hover{
+ background-color: $item-selected-color;
+ }
+}
+
+.icon-small{
+ height: 18px;
+ width: 18px;
+ vertical-align: middle;
+ margin-left: 7px;
+}
+
+:host-context(#app-root[theme=dark]){
+ td.icon-cell{
+ &:hover{
+ background-color: $item-selected-color-dark;
+ }
+ }
}
\ No newline at end of file