use of is_rtl() which were missed
This commit is contained in:
parent
71986a10d8
commit
c37f7a16e8
|
@ -144,14 +144,14 @@ class WC_Admin_Welcome {
|
||||||
}
|
}
|
||||||
.about-wrap .feature-rest div {
|
.about-wrap .feature-rest div {
|
||||||
width: 50% !important;
|
width: 50% !important;
|
||||||
padding-<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'left' : 'right'; ?>: 100px;
|
padding-<?php echo is_rtl() ? 'left' : 'right'; ?>: 100px;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
.about-wrap .feature-rest div.last-feature {
|
.about-wrap .feature-rest div.last-feature {
|
||||||
padding-<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'right' : 'left'; ?>: 100px;
|
padding-<?php echo is_rtl() ? 'right' : 'left'; ?>: 100px;
|
||||||
padding-<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'left' : 'right'; ?>: 0;
|
padding-<?php echo is_rtl() ? 'left' : 'right'; ?>: 0;
|
||||||
}
|
}
|
||||||
.about-wrap div.icon {
|
.about-wrap div.icon {
|
||||||
width: 0 !important;
|
width: 0 !important;
|
||||||
|
@ -169,7 +169,7 @@ class WC_Admin_Welcome {
|
||||||
position: relative;
|
position: relative;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
speak: none;
|
speak: none;
|
||||||
margin: <?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? '0 -100px 0 0' : '0 0 0 -100px'; ?>;
|
margin: <?php echo is_rtl() ? '0 -100px 0 0' : '0 0 0 -100px'; ?>;
|
||||||
content: "\e01d";
|
content: "\e01d";
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
|
Loading…
Reference in New Issue