Fix the remaining issues with CSS logical properties
This commit is contained in:
@ -370,7 +370,7 @@
|
|||||||
font-size: 1.125em;
|
font-size: 1.125em;
|
||||||
|
|
||||||
.archive__item {
|
.archive__item {
|
||||||
float: left;
|
float: inline-start;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -305,14 +305,14 @@ select:focus {
|
|||||||
.form-search .radio,
|
.form-search .radio,
|
||||||
.form-search .checkbox,
|
.form-search .checkbox,
|
||||||
.form-inline .radio {
|
.form-inline .radio {
|
||||||
padding-left: 0;
|
padding-inline-start: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-search .radio input[type="radio"],
|
.form-search .radio input[type="radio"],
|
||||||
.form-search .checkbox input[type="checkbox"] {
|
.form-search .checkbox input[type="checkbox"] {
|
||||||
float: left;
|
float: inline-start;
|
||||||
margin-inline-start: 0;
|
margin-inline-start: 0;
|
||||||
margin-inline-end: 3px;
|
margin-inline-end: 3px;
|
||||||
}
|
}
|
||||||
@ -332,7 +332,7 @@ select:focus {
|
|||||||
.form::before {
|
.form::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
inset-inline-start: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: rgba(255, 255, 255, 0.7);
|
background-color: rgba(255, 255, 255, 0.7);
|
||||||
@ -343,6 +343,6 @@ select:focus {
|
|||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
inset-inline-start: 50%;
|
||||||
z-index: 11;
|
z-index: 11;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
|
|
||||||
.pagination {
|
.pagination {
|
||||||
@include clearfix();
|
@include clearfix();
|
||||||
float: left;
|
float: inline-start;
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
padding-top: 1em;
|
padding-top: 1em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -65,8 +65,8 @@
|
|||||||
|
|
||||||
li {
|
li {
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: inline-start;
|
||||||
margin-left: -1px;
|
margin-inline-start: -1px;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
display: block;
|
display: block;
|
||||||
@ -100,7 +100,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-left: 0;
|
margin-inline-start: 0;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
border-start-start-radius: $border-radius;
|
border-start-start-radius: $border-radius;
|
||||||
@ -120,7 +120,7 @@
|
|||||||
&--pager {
|
&--pager {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 1em 2em;
|
padding: 1em 2em;
|
||||||
float: left;
|
float: inline-start;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
font-family: $sans-serif;
|
font-family: $sans-serif;
|
||||||
font-size: $type-size-5;
|
font-size: $type-size-5;
|
||||||
@ -239,7 +239,7 @@
|
|||||||
&:before {
|
&:before {
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
inset-inline-start: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: $primary-color;
|
background: $primary-color;
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@at-root #{selector-unify(&, "blockquote")} {
|
@at-root #{selector-unify(&, "blockquote")} {
|
||||||
border-left-color: mix(#000, $notice-color, 10%);
|
border-inline-start-color: mix(#000, $notice-color, 10%);
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
|
@ -46,7 +46,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.page__inner-wrap {
|
.page__inner-wrap {
|
||||||
float: left;
|
float: inline-start;
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
margin-inline: 0;
|
margin-inline: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -156,7 +156,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dd {
|
dd {
|
||||||
margin-left: 1em;
|
margin-inline-start: 1em;
|
||||||
font-family: $sans-serif;
|
font-family: $sans-serif;
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
}
|
}
|
||||||
@ -168,7 +168,7 @@ body {
|
|||||||
/* blockquote citations */
|
/* blockquote citations */
|
||||||
blockquote + .small {
|
blockquote + .small {
|
||||||
margin-top: -1.5em;
|
margin-top: -1.5em;
|
||||||
padding-left: 1.25rem;
|
padding-inline-start: 1.25rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -420,7 +420,7 @@ body {
|
|||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.page__comments {
|
.page__comments {
|
||||||
float: left;
|
float: inline-start;
|
||||||
margin-inline: 0;
|
margin-inline: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
clear: both;
|
clear: both;
|
||||||
@ -463,7 +463,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.comment__avatar-wrapper {
|
.comment__avatar-wrapper {
|
||||||
float: left;
|
float: inline-start;
|
||||||
width: 60px;
|
width: 60px;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@ figure.highlight {
|
|||||||
|
|
||||||
[dir=rtl] & {
|
[dir=rtl] & {
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
> pre,
|
> pre,
|
||||||
@ -47,7 +48,7 @@ figure.highlight {
|
|||||||
/* code */
|
/* code */
|
||||||
&.code,
|
&.code,
|
||||||
&.rouge-code {
|
&.rouge-code {
|
||||||
padding-left: 1em;
|
padding-inline-start: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ $text-alignments: left, right, start, end, center, justify;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.task-list .task-list {
|
.task-list .task-list {
|
||||||
margin-left: 1em;
|
margin-inline-start: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -243,11 +243,11 @@ $text-alignments: left, right, start, end, center, justify;
|
|||||||
-webkit-transition: 0.3s;
|
-webkit-transition: 0.3s;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
|
|
||||||
&:before,
|
&::before,
|
||||||
&:after {
|
&::after {
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
inset-inline-start: 0;
|
||||||
width: $navicon-width;
|
width: $navicon-width;
|
||||||
height: $navicon-height;
|
height: $navicon-height;
|
||||||
background: $primary-color;
|
background: $primary-color;
|
||||||
@ -295,7 +295,7 @@ $text-alignments: left, right, start, end, center, justify;
|
|||||||
content: '';
|
content: '';
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
inset-inline-start: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
@ -369,11 +369,11 @@ $text-alignments: left, right, start, end, center, justify;
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&:before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
content: "";
|
content: "";
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
inset-inline-start: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
@ -390,8 +390,8 @@ $text-alignments: left, right, start, end, center, justify;
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
width: 300px;
|
width: 300px;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
inset-inline-start: 50%;
|
||||||
margin-left: -150px;
|
margin-inline-start: -150px;
|
||||||
margin-top: -150px;
|
margin-top: -150px;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
@ -482,7 +482,7 @@ a.reversefootnote {
|
|||||||
embed {
|
embed {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
inset-inline-start: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user