Export Excel Button - Amend <a> content with css

Hi All,
You can use the following css trick to change the look of the excel export button directive content

.tm1-ui-export a::before{
content: "| Export to ";
}
.tm1-ui-export a:last-child{
color:#fff;
display:none;
}
46%20pm

Minimise the Upload Excel Button via css
input[type=‘file’] {
opacity: 0;
position: absolute;
top: 0px;
z-index: 99;
width: 100%;
cursor: pointer;
}

From default
48%20am
to following
13%20am
Thanks
Ilia