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

View file

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