Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-01-04 21:30:11 +0300
committerGitHub <noreply@github.com>2019-01-04 21:30:11 +0300
commitf736b3445f3cc6f486604da60ce86063daf7918a (patch)
treef47e922de8a02073340bec8d55b7090a14f591b5 /core/css
parent0aa30b76de6879ac62883962b7cd90b32ef14f48 (diff)
parentf038cea24334f1393c369c40e85ffd672903de1b (diff)
Merge pull request #13145 from nextcloud/ie11-apps-menu-fix
IE fix for apps menu
Diffstat (limited to 'core/css')
-rw-r--r--core/css/fixes.scss15
-rw-r--r--core/css/ie.scss38
2 files changed, 37 insertions, 16 deletions
diff --git a/core/css/fixes.scss b/core/css/fixes.scss
index 2b93b2914cd..2a819aeefaf 100644
--- a/core/css/fixes.scss
+++ b/core/css/fixes.scss
@@ -9,18 +9,3 @@
select {
height: 32px;
}
-
-/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
-.ie #show, .ie #show+label {
- display: none;
- visibility: hidden;
-}
-
-.ie #header .menu,
-.ie .header-left #navigation,
-.ie .ui-datepicker,
-.ie .ui-timepicker.ui-widget,
-.ie #appmenu li span,
-.ie .tooltip-inner {
- box-shadow: 0 1px 10px var(--color-box-shadow);
-}
diff --git a/core/css/ie.scss b/core/css/ie.scss
index 2a776dc9a86..3a1fe7d0818 100644
--- a/core/css/ie.scss
+++ b/core/css/ie.scss
@@ -12,4 +12,40 @@
}
#app-sidebar.disappear {
right: -$sidebar-max-width !important;
-} \ No newline at end of file
+}
+
+/**
+ * flex align center doesn't apply to absolute on ie
+ * we need to manually set it
+ */
+#appmenu li {
+
+ span {
+ left: 0;
+ min-width: 100%;
+ }
+
+ &:hover a + span,
+ a:focus + span,
+ &:hover span,
+ &:focus span,
+ a:focus span {
+ width: 100%; // disable animation
+ padding: 0;
+ }
+}
+
+/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
+#show,
+#show + label {
+ display: none;
+ visibility: hidden;
+}
+
+#header .menu,
+.header-left #navigation,
+.ui-datepicker,
+.ui-timepicker.ui-widget,
+.tooltip-inner {
+ box-shadow: 0 1px 10px var(--color-box-shadow);
+}