Make the welcome page RTL compatible. Fixes #5405

This commit is contained in:
Nabil Kadimi 2014-05-01 09:50:19 +01:00 committed by Mike Jolley
parent 3ea4e79b82
commit 334243e2cf
1 changed files with 6 additions and 6 deletions

View File

@ -105,7 +105,7 @@ class WC_Admin_Welcome {
text-align: center;
position: absolute;
top: 0;
left: 0;
<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'right' : 'left'; ?>: 0;
margin: 0;
vertical-align: middle;
}
@ -127,7 +127,7 @@ class WC_Admin_Welcome {
.about-wrap .wc-badge {
position: absolute;
top: 0;
right: 0;
<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'left' : 'right'; ?>: 0;
}
.about-wrap .wc-feature {
overflow: visible !important;
@ -143,14 +143,14 @@ class WC_Admin_Welcome {
}
.about-wrap .feature-rest div {
width: 50% !important;
padding-right: 100px;
padding-<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'left' : 'right'; ?>: 100px;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0 !important;
}
.about-wrap .feature-rest div.last-feature {
padding-left: 100px;
padding-right: 0;
padding-<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'right' : 'left'; ?>: 100px;
padding-<?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? 'left: ' : 'right'; ?>: 0;
}
.about-wrap div.icon {
width: 0 !important;
@ -168,7 +168,7 @@ class WC_Admin_Welcome {
position: relative;
text-align: center;
speak: none;
margin: 0 0 0 -100px;
margin: <?php echo get_bloginfo( 'text_direction' ) === 'rtl' ? '0 -100px 0 0' : '0 0 0 -100px'; ?>;
content: "\e01d";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;