nav-submenu required translate3d due to its fixed position in the presence of animation, apparently. Also animation vendor prefixing removed since autoprefixer handles this already

pull/1987/merge
Dave Cranwell 2015-12-02 17:24:49 +00:00 zatwierdzone przez Matt Westcott
rodzic eaeb589ebb
commit eb4c5a7ce2
4 zmienionych plików z 3 dodań i 22 usunięć

Wyświetl plik

@ -13,6 +13,7 @@ Changelog
* Fix: Locked pages can no longer be unpublished (Alex Bridge)
* Fix: Site records now implement `get_by_natural_key`
* Fix: Creating pages at the root level (and any other instances of the base `Page` model) now properly respects the `parent_page_types` setting
* Fix: Settings menu now opens correctly from the page editor and styleguide views
1.2 (12.11.2015)
~~~~~~~~~~~~~~~~

Wyświetl plik

@ -28,6 +28,7 @@ Bug fixes
* Locked pages can no longer be unpublished (Alex Bridge)
* Site records now implement ``get_by_natural_key``
* Creating pages at the root level (and any other instances of the base ``Page`` model) now properly respects the `parent_page_types` setting
* Settings menu now opens correctly from the page editor and styleguide views
Upgrade considerations

Wyświetl plik

@ -264,8 +264,6 @@
.icon-spinner:after {
width: 1em;
animation: spin 0.5s infinite linear;
-webkit-animation: spin 0.5s infinite linear;
-moz-animation: spin 0.5s infinite linear;
content: '1';
}
@ -376,23 +374,3 @@
transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes spin {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}

Wyświetl plik

@ -324,6 +324,7 @@ body.explorer-open {
}
.nav-submenu {
transform: translate3d(0, 0, 0);
position: fixed;
height: 100%;
width: 0;