Remove the pointer and text underline on icon:hover in drive

This commit is contained in:
yflory 2017-02-28 10:50:52 +01:00
parent ec7761eeb8
commit 0ae7f94184
2 changed files with 8 additions and 4 deletions

View file

@ -54,7 +54,6 @@ ul {
}
li {
padding: 0px 5px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
@ -102,6 +101,7 @@ span.fa-folder-open {
color: #000;
}
#tree li {
/*cursor: pointer;*/
cursor: auto;
}
#tree li:hover > span.element {
@ -214,11 +214,14 @@ span.fa-folder-open {
margin-left: 10px;
float: right;
}
#content li {
cursor: default;
}
#content li:not(.header) *:not(input) {
/*pointer-events: none;*/
}
#content li:not(.header):hover .name {
text-decoration: underline;
/*text-decoration: underline;*/
}
#content div.grid {
padding: 20px;

View file

@ -80,7 +80,6 @@ ul {
li {
padding: 0px 5px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
@ -135,6 +134,7 @@ span {
padding: 10px 0px;
color: @tree-fg;
li {
/*cursor: pointer;*/
cursor: auto;
&:hover > span.element {
text-decoration: underline;
@ -255,13 +255,14 @@ span {
}
}
li {
cursor: default;
&:not(.header) {
*:not(input) {
/*pointer-events: none;*/
}
&:hover {
.name {
text-decoration: underline;
/*text-decoration: underline;*/
}
}
}