diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-09-08 20:35:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-08 20:35:43 +0200 |
commit | 3536aff7800bf78cb04badc61c94b914b54556eb (patch) | |
tree | 73b02a70b3345d3e58c4c30db16025a55c722e3b | |
parent | 8a79d0cc706f00d920bf26b693bbf2f3ee1f6dd7 (diff) | |
parent | d50934fa540290a46440a6cb6353a83aef57d3dd (diff) | |
download | nextcloud-server-3536aff7800bf78cb04badc61c94b914b54556eb.tar.gz nextcloud-server-3536aff7800bf78cb04badc61c94b914b54556eb.zip |
Merge pull request #6407 from nextcloud/fix-popover-hovering
Fix hovering on all popover types
-rw-r--r-- | core/css/apps.scss | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index bbf72f45c53..1e0ea8f6259 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -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 |