mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Merge pull request #216 from rschamp/bugfix/GH-128
Fix GH-128: Use table layout in IE 9 for navigation and homepage
This commit is contained in:
commit
35a3e4c192
2 changed files with 40 additions and 2 deletions
|
@ -16,6 +16,11 @@
|
||||||
/* NOTE: Height should match offset settings in main.scss file */
|
/* NOTE: Height should match offset settings in main.scss file */
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
|
||||||
|
.ie9 & {
|
||||||
|
display: table;
|
||||||
|
table-layout: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
.inner > ul {
|
.inner > ul {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -26,6 +31,10 @@
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
.ie9 & {
|
||||||
|
display: table-row;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
> li {
|
> li {
|
||||||
|
@ -34,6 +43,13 @@
|
||||||
float: left;
|
float: left;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
|
|
||||||
|
.ie9 & {
|
||||||
|
display: table-cell;
|
||||||
|
float: none;
|
||||||
|
height: 50px;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
|
@ -83,6 +99,10 @@
|
||||||
color: $type-white;
|
color: $type-white;
|
||||||
flex-grow: 3;
|
flex-grow: 3;
|
||||||
|
|
||||||
|
.ie9 & {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
@ -140,6 +160,10 @@
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
|
|
||||||
|
.ie9 & {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
background-color: $active-gray;
|
background-color: $active-gray;
|
||||||
}
|
}
|
||||||
|
@ -202,10 +226,13 @@
|
||||||
.account-nav {
|
.account-nav {
|
||||||
.userInfo {
|
.userInfo {
|
||||||
padding-top: 14px;
|
padding-top: 14px;
|
||||||
padding-bottom: 3px;
|
max-width: 260px;
|
||||||
}
|
}
|
||||||
|
|
||||||
> a {
|
> a {
|
||||||
|
display: inline-block;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
font-size: .8125rem;
|
font-size: .8125rem;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|
||||||
|
|
|
@ -5,13 +5,24 @@
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
|
.ie9 & {
|
||||||
|
display: table;
|
||||||
|
margin: 0 -20px 20px -20px;
|
||||||
|
min-width: 100%;
|
||||||
|
border-spacing: 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: calc(60% - 20px);
|
width: calc(60% - 20px);
|
||||||
|
|
||||||
|
.ie9 & {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.news {
|
.news {
|
||||||
display: inline-block;
|
|
||||||
width: 40%;
|
width: 40%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue