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
master
Kaan Kabalak 6 years ago committed by Nitish Tiwari
parent 7cb87f863e
commit ff822e64ca
  1. 10
      browser/app/less/inc/list.less
  2. 57
      browser/ui-assets.go

@ -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
Loading…
Cancel
Save