mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 05:13:41 +08:00
Revert "adding flexbox to header via mixins (all prefixes)"
This reverts commit 5b229316ee
.
This commit is contained in:
parent
652eb5b3e3
commit
2b2ae4bfe7
|
@ -13,9 +13,10 @@
|
||||||
|
|
||||||
.contents {
|
.contents {
|
||||||
margin: 8px 0;
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
@include flexbox();
|
.title {
|
||||||
@include align-items(center);
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.valign-helper {
|
.valign-helper {
|
||||||
|
@ -33,10 +34,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
|
float: right;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: auto;
|
|
||||||
|
|
||||||
@include order(3);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-button, button.sign-up-button {
|
.login-button, button.sign-up-button {
|
||||||
|
|
|
@ -261,9 +261,6 @@ table.md-table {
|
||||||
}
|
}
|
||||||
|
|
||||||
.small-action {
|
.small-action {
|
||||||
@include flexbox();
|
|
||||||
@include align-items(center);
|
|
||||||
|
|
||||||
.topic-avatar {
|
.topic-avatar {
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
|
@ -277,7 +274,8 @@ table.md-table {
|
||||||
}
|
}
|
||||||
|
|
||||||
.small-action-desc {
|
.small-action-desc {
|
||||||
padding: 0 1.5%;
|
padding: 0.5em 0 0.5em 4em;
|
||||||
|
margin-top: 5px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
@ -290,7 +288,7 @@ table.md-table {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
p {
|
p {
|
||||||
margin: 0;
|
margin: 5px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -301,6 +299,7 @@ table.md-table {
|
||||||
|
|
||||||
> p {
|
> p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
padding-top: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -27,11 +27,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.extra-info-wrapper {
|
.extra-info-wrapper {
|
||||||
@include order(2);
|
|
||||||
|
|
||||||
line-height: 1.5;
|
|
||||||
.badge-wrapper {
|
.badge-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
|
&.bullet {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,10 +52,8 @@
|
||||||
|
|
||||||
|
|
||||||
&.bullet { //bullet category style
|
&.bullet { //bullet category style
|
||||||
@include inline-flex();
|
display: inline-flex;
|
||||||
|
align-items: baseline;
|
||||||
@include align-items(baseline);
|
|
||||||
|
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
||||||
span.badge-category {
|
span.badge-category {
|
||||||
|
|
|
@ -92,40 +92,3 @@
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------
|
|
||||||
|
|
||||||
//Flexbox
|
|
||||||
|
|
||||||
@mixin flexbox() {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -moz-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin inline-flex() {
|
|
||||||
display: -webkit-inline-box;
|
|
||||||
display: -webkit-inline-flex;
|
|
||||||
display: -moz-inline-box;
|
|
||||||
display: -ms-inline-flexbox;
|
|
||||||
display: inline-flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@mixin align-items($alignment) {
|
|
||||||
-webkit-box-align: $alignment;
|
|
||||||
-webkit-align-items: $alignment;
|
|
||||||
-ms-flex-align: $alignment;
|
|
||||||
-ms-align-items: $alignment;
|
|
||||||
align-items:$alignment;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin order($val) {
|
|
||||||
-webkit-box-ordinal-group: $val;
|
|
||||||
-moz-box-ordinal-group: $val;
|
|
||||||
-ms-flex-order: $val;
|
|
||||||
-webkit-order: $val;
|
|
||||||
order: $val;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user