mirror of
https://github.com/documize/community.git
synced 2025-08-02 20:15:26 +02:00
Flexbox for auth UI
Providing better support for flaky IE/Edge browsers.
This commit is contained in:
parent
10a184ad10
commit
4130d1f129
10 changed files with 70 additions and 47 deletions
|
@ -132,3 +132,22 @@ footer {
|
|||
bottom: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Conditional CSS for Edge 12+.
|
||||
* @link: https://jeffclayton.wordpress.com/2015/04/07/css-hacks-for-windows-10-and-spartan-browser-preview/
|
||||
*/
|
||||
@supports (-ms-ime-align:auto) {
|
||||
// For IE/Edge footer must be at bottom as sticky/flex is not quite supported.
|
||||
.layout-footer, footer {
|
||||
position: relative !important;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Conditional CSS for IE 8+ (and old Firefox 1.x).
|
||||
* @link: https://jeffclayton.wordpress.com/2015/04/07/css-hacks-for-windows-10-and-spartan-browser-preview/
|
||||
*/
|
||||
@media screen\0 {
|
||||
/* Conditional IE styles */
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue