.footer-vh {
    min-height: 35px !important;
    padding: 8px !important;
}

.page-header-vh {
    padding-bottom: 9px;
    margin: 0px 0 0px;   
}

/* ET | VH - 6-1-2022 Override default list view edit buttons:
        Hide the dropdown button
        Force the action menu to be displayed (without the dropdown button)
        Force the menu items to be displayed inline (the same row)
        Set the font-size as 0 so it will hide the text
        Set the font-size only for the <span> element (which contains the icon) to 18px (you can always change this size if you want it bigger/smaller icons)
        Set a different color for the hover event of the icon
*/

.view-grid .dropdown.action>.btn {
    display: none;
}
.view-grid .dropdown.action .dropdown-menu {
    display: block;
  /*  position: static !important;*/
    position: initial !important;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    max-width: 95px;
    min-width: 95px;
    width: 95px;
    left: auto !important;
    top: auto !important;
}
.view-grid .dropdown.action .dropdown-menu li {
    display: inline-block;
    text-align: center;
}
.view-grid .dropdown.action .dropdown-menu li a {
    font-size: 18;
    padding: 2px;
    margin: 0;
}
.view-grid .dropdown.action .dropdown-menu li a>span {
    font-size: 12px;
}
.view-grid .dropdown.action .dropdown-menu li a:hover {
    color: #FAD900;
    background: transparent;
}

/* END list view buttons customizations */