Fix pop over menu opacity
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
f154b1d32c
commit
e1ad305e0b
|
@ -622,7 +622,6 @@ html.ie8 .column-mtime .selectedActions {
|
|||
#fileList tr:hover a.action,
|
||||
#fileList a.action.permanent,
|
||||
#fileList tr:focus a.action,
|
||||
#fileList a.action.permanent,
|
||||
#fileList tr:hover a.action.no-permission:hover,
|
||||
#fileList tr:focus a.action.no-permission:focus,
|
||||
/*#fileList .name:focus .action,*/
|
||||
|
@ -648,6 +647,19 @@ html.ie8 .column-mtime .selectedActions {
|
|||
opacity: .7;
|
||||
display:inline;
|
||||
}
|
||||
|
||||
#fileList .fileActionsMenu a.action.permanent {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important;
|
||||
filter: alpha(opacity=70) !important;
|
||||
opacity: .7 !important;
|
||||
}
|
||||
#fileList .fileActionsMenu a.action.permanent:hover,
|
||||
#fileList .fileActionsMenu a.action.permanent:focus {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
|
||||
filter: alpha(opacity=100) !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
#fileList tr a.action.disabled {
|
||||
background: none;
|
||||
}
|
||||
|
@ -655,8 +667,8 @@ html.ie8 .column-mtime .selectedActions {
|
|||
/* show share action of shared items darker to distinguish from non-shared */
|
||||
#fileList a.action.action-share.permanent.shared-style,
|
||||
/* show hovered permanent entries darker */
|
||||
#fileList tr a.action.action.permanent:hover,
|
||||
#fileList tr a.action.action.permanent:focus {
|
||||
#fileList tr a.action.permanent:hover,
|
||||
#fileList tr a.action.permanent:focus {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)" !important;
|
||||
filter: alpha(opacity=70) !important;
|
||||
opacity: .7 !important;
|
||||
|
|
|
@ -632,9 +632,6 @@ em {
|
|||
cursor: pointer;
|
||||
line-height: 36px;
|
||||
border: 0;
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)' !important;
|
||||
filter: alpha(opacity = 50) !important;
|
||||
opacity: .5 !important;
|
||||
background-color: transparent;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
@ -643,26 +640,14 @@ em {
|
|||
margin: 0;
|
||||
font-weight: inherit;
|
||||
box-shadow: none;
|
||||
color: nc-lighten($color-main-text, 20%) !important; /* Overwrite app-navigation li */
|
||||
/* prevent .action class to break the design */
|
||||
&.action {
|
||||
padding: inherit !important;
|
||||
}
|
||||
&:hover, &:focus {
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)' !important;
|
||||
filter: alpha(opacity = 100) !important;
|
||||
opacity: 1 !important;
|
||||
background-color: transparent;
|
||||
}
|
||||
> span {
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
}
|
||||
span {
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)' !important;
|
||||
filter: alpha(opacity = 70) !important;
|
||||
opacity: .7 !important;
|
||||
}
|
||||
> p {
|
||||
width: 150px;
|
||||
line-height: 1.6em;
|
||||
|
@ -678,6 +663,16 @@ em {
|
|||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
.menuitem {
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)' !important;
|
||||
filter: alpha(opacity = 70) !important;
|
||||
opacity: .7 !important;
|
||||
&:hover, &:focus {
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)' !important;
|
||||
filter: alpha(opacity = 100) !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
}
|
||||
[class^='icon-'],
|
||||
[class*=' icon-']{
|
||||
/* Keep padding to define the width to
|
||||
|
|
Loading…
Reference in New Issue