Merge pull request #6407 from nextcloud/fix-popover-hovering
Fix hovering on all popover types
This commit is contained in:
commit
3536aff780
|
@ -668,6 +668,16 @@ kbd {
|
|||
margin: 0;
|
||||
font-weight: 300;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
/* Override the app-navigation li opacity */
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)' !important;
|
||||
filter: alpha(opacity = 70) !important;
|
||||
opacity: .7 !important;
|
||||
&:hover, &:focus, &.active {
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)' !important;
|
||||
filter: alpha(opacity = 100) !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
/* prevent .action class to break the design */
|
||||
&.action {
|
||||
padding: inherit !important;
|
||||
|
@ -691,17 +701,6 @@ kbd {
|
|||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
.menuitem {
|
||||
width: 100%;
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)';
|
||||
filter: alpha(opacity = 70);
|
||||
opacity: .7;
|
||||
&:hover, &:focus, &.active {
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
|
||||
filter: alpha(opacity = 100);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
[class^='icon-'],
|
||||
[class*=' icon-']{
|
||||
/* Keep padding to define the width to
|
||||
|
|
Loading…
Reference in New Issue