first part of fixing feedback for file list when using keyboard

This commit is contained in:
Jan-Christoph Borchardt 2014-12-17 15:43:29 +01:00
parent e7686a25e4
commit 7b2ae46762
1 changed files with 9 additions and 4 deletions

View File

@ -105,6 +105,7 @@
#filestable tbody tr { background-color:#fff; height:40px; } #filestable tbody tr { background-color:#fff; height:40px; }
#filestable tbody tr:hover, #filestable tbody tr:hover,
#filestable tbody tr:focus, #filestable tbody tr:focus,
#filestable tbody .name:focus,
#filestable tbody tr:active { #filestable tbody tr:active {
background-color: rgb(240,240,240); background-color: rgb(240,240,240);
} }
@ -503,7 +504,7 @@ a.action>img {
#fileList a.action { #fileList a.action {
display: inline; display: inline;
padding: 18px 8px; padding: 17px 8px;
line-height: 50px; line-height: 50px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0); filter: alpha(opacity=0);
@ -516,15 +517,19 @@ a.action>img {
position: relative; position: relative;
top: -21px; top: -21px;
} }
#fileList tr:hover a.action, #fileList a.action.permanent #fileList tr:hover a.action,
#fileList tr:focus a.action, #fileList a.action.permanent { #fileList a.action.permanent,
#fileList tr:focus a.action,
#fileList a.action.permanent
/*#fileList .name:focus .action*/ {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50); filter: alpha(opacity=50);
opacity: .5; opacity: .5;
display:inline; display:inline;
} }
#fileList tr:hover a.action:hover, #fileList tr:hover a.action:hover,
#fileList tr:focus a.action:focus { #fileList tr:focus a.action:focus,
#fileList .name:focus a.action:focus {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100); filter: alpha(opacity=100);
opacity: 1; opacity: 1;