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:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-11-29 19:06:01 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-11-30 15:03:08 +0300
commita3251415458e55d13695624bdebde4806dfc93de (patch)
tree4c94008651e91d2e955e8a083b35fb311c59068b /core/css
parent2c3cf86ad31e20504bea39bad0bf912e946e2c5e (diff)
Remove isIE and associated legacy scripts
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css')
-rw-r--r--core/css/ie.scss51
1 files changed, 0 insertions, 51 deletions
diff --git a/core/css/ie.scss b/core/css/ie.scss
deleted file mode 100644
index 3a1fe7d0818..00000000000
--- a/core/css/ie.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-
-#app-sidebar {
- position: fixed !important;
-}
-#app-content {
- min-width: $navigation-width !important;
- /**
- * set min height so the container will grow in IE11
- * https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11
- */
- min-height: calc(100vh - 50px);
-}
-#app-sidebar.disappear {
- right: -$sidebar-max-width !important;
-}
-
-/**
- * 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);
-}