diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-01-25 15:22:51 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-01-25 15:22:51 +0100 |
commit | 87fd41dba228c237130fabc5a600fb6385c2fbea (patch) | |
tree | ed7536084946ccff9710295b0f8048abd38182f3 | |
parent | 179bd5824fb8c4561c7fd08f688d98343a869f53 (diff) | |
download | nextcloud-server-87fd41dba228c237130fabc5a600fb6385c2fbea.tar.gz nextcloud-server-87fd41dba228c237130fabc5a600fb6385c2fbea.zip |
Fix popover conflicts with app-navigation li (color & opacity)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/apps.scss | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 1ce11d903d9..1ac0d06d987 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -625,6 +625,7 @@ em { margin: 0; font-weight: inherit; box-shadow: none; + color: #333 !important; /* Overwrite app-navigation li */ /* prevent .action class to break the design */ &.action { padding: inherit !important; @@ -639,15 +640,15 @@ em { 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; padding: 8px 0; - > span { - -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)' !important; - filter: alpha(opacity = 70) !important; - opacity: .7 !important; - } } /* Add padding if contains icon+text */ &:not(:empty) { @@ -666,7 +667,8 @@ em { padding: 18px 0 18px 36px; min-width: 0; /* Overwrite icons*/ min-height: 0; - background-position: 10px center + background-position: 10px center; + opacity: 0.7; /* Default button icon override */ } } } |