MDL-66463 theme_boost: IE and Edge go to top link compatibility
This commit is contained in:
@@ -37,8 +37,11 @@ $gototop-bottom-position: 50px !default;
|
||||
@supports (position: sticky) {
|
||||
position: sticky;
|
||||
}
|
||||
@supports (-ms-ime-align:auto) {
|
||||
position: fixed; /* Edge compatibility hack */
|
||||
}
|
||||
bottom: $gototop-bottom-position;
|
||||
|
||||
right: 0;
|
||||
a {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
|
||||
@@ -9420,10 +9420,15 @@ input[disabled] {
|
||||
display: block;
|
||||
position: fixed;
|
||||
/* IE compatibility hack */
|
||||
bottom: 50px; }
|
||||
bottom: 50px;
|
||||
right: 0; }
|
||||
@supports (position: sticky) {
|
||||
#goto-top-link {
|
||||
position: sticky; } }
|
||||
@supports (-ms-ime-align: auto) {
|
||||
#goto-top-link {
|
||||
position: fixed;
|
||||
/* Edge compatibility hack */ } }
|
||||
#goto-top-link a {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
|
||||
@@ -9625,10 +9625,15 @@ input[disabled] {
|
||||
display: block;
|
||||
position: fixed;
|
||||
/* IE compatibility hack */
|
||||
bottom: 50px; }
|
||||
bottom: 50px;
|
||||
right: 0; }
|
||||
@supports (position: sticky) {
|
||||
#goto-top-link {
|
||||
position: sticky; } }
|
||||
@supports (-ms-ime-align: auto) {
|
||||
#goto-top-link {
|
||||
position: fixed;
|
||||
/* Edge compatibility hack */ } }
|
||||
#goto-top-link a {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
|
||||
Reference in New Issue
Block a user