Show pointer when user hovers over folder name (#6412)

To indicate that there is an action tied when the user clicks on the
folder name on the Minio Browser, the default cursor has been replaced
with a pointer on folder name hover. This is a regression from #6193.

Fixes #6411
This commit is contained in:
Kaan Kabalak 2018-09-07 01:45:53 -07:00 committed by Nitish Tiwari
parent 7cb87f863e
commit ff822e64ca
2 changed files with 32 additions and 35 deletions

View File

@ -109,7 +109,15 @@ div.fesl-row {
/*--------------------------
Icons
----------------------------*/
&[data-type=folder] { .list-type(#a1d6dd, '\f114'); }
&[data-type=folder] {
.list-type(#a1d6dd, '\f114');
.fesl-item-name {
a {
cursor: pointer;
}
}
}
&[data-type=pdf] {.list-type(#fa7775, '\f1c1'); }
&[data-type=zip] { .list-type(#427089, '\f1c6'); }
&[data-type=audio] { .list-type(#009688, '\f1c7'); }

File diff suppressed because one or more lines are too long