RTL fixes and improvements: add-media, image-editor, the spinners, the featured image button, some css cleanup, props ocean90, maor, SergeyBiryukov, ramiy, see #22453
git-svn-id: http://core.svn.wordpress.org/trunk@22640 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bc796cd26e
commit
e09ea56a23
|
@ -22,6 +22,7 @@ TABLE OF CONTENTS:
|
||||||
11.0 - Write/Edit Post Screen
|
11.0 - Write/Edit Post Screen
|
||||||
11.1 - Custom Fields
|
11.1 - Custom Fields
|
||||||
11.2 - Post Revisions
|
11.2 - Post Revisions
|
||||||
|
11.3 - Featured Images
|
||||||
12.0 - Categories
|
12.0 - Categories
|
||||||
13.0 - Tags
|
13.0 - Tags
|
||||||
14.0 - Media Screen
|
14.0 - Media Screen
|
||||||
|
@ -139,10 +140,15 @@ ul#add-to-blog-users {
|
||||||
|
|
||||||
#publishing-action {
|
#publishing-action {
|
||||||
float: left;
|
float: left;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#publishing-action .spinner {
|
||||||
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#post-body .misc-pub-section {
|
#post-body .misc-pub-section {
|
||||||
border-right:0;
|
border-right: 0;
|
||||||
border-left-width: 1px;
|
border-left-width: 1px;
|
||||||
border-left-style: solid;
|
border-left-style: solid;
|
||||||
}
|
}
|
||||||
|
@ -547,14 +553,31 @@ form.upgrade .hint {
|
||||||
font-family: Tahoma, Arial, sans-serif;
|
font-family: Tahoma, Arial, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.widefat td p {
|
|
||||||
margin: 2px 0 0.8em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.postbox-container {
|
.postbox-container {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#post-body-content {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#poststuff #post-body.columns-2 {
|
||||||
|
margin-left: 300px;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body.columns-2 #postbox-container-1 {
|
||||||
|
float: left;
|
||||||
|
margin-left: -300px;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 850px) {
|
||||||
|
#wpbody-content #post-body.columns-2 #postbox-container-1 {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.postbox .handlediv {
|
.postbox .handlediv {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
@ -800,45 +823,41 @@ th.sorted a span {
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
11.0 - Write/Edit Post Screen
|
11.0 - Write/Edit Post Screen
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
/* structural/layout */
|
|
||||||
#post-body-content {
|
#save-action .spinner,
|
||||||
|
#show-comments a,
|
||||||
|
#show-comments .spinner {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#poststuff #post-body.columns-2 {
|
|
||||||
margin-left: 300px;
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#post-body.columns-2 #postbox-container-1 {
|
|
||||||
float: left;
|
|
||||||
margin-left: -300px;
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 850px) {
|
|
||||||
#wpbody-content #post-body.columns-2 #postbox-container-1 {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#titlediv #title-prompt-text,
|
#titlediv #title-prompt-text,
|
||||||
#wp-fullscreen-title-prompt-text {
|
#wp-fullscreen-title-prompt-text {
|
||||||
right:0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sample-permalink {
|
#sample-permalink {
|
||||||
direction:ltr;
|
direction: ltr;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sample-permalink #editable-post-name {
|
#sample-permalink #editable-post-name {
|
||||||
unicode-bidi:embed;
|
unicode-bidi: embed;
|
||||||
}
|
}
|
||||||
|
|
||||||
#wp-fullscreen-title-prompt-text {
|
#wp-fullscreen-title-prompt-text {
|
||||||
left: auto;
|
left: auto;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#wp-fullscreen-save .spinner,
|
||||||
|
#wp-fullscreen-save .fs-saved {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#edit-slug-box .cancel {
|
||||||
|
margin-right: 0;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.postarea h3 label {
|
.postarea h3 label {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
@ -917,6 +936,14 @@ table.diff td, table.diff th {
|
||||||
font-family: Consolas, Monaco, monospace;
|
font-family: Consolas, Monaco, monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*------------------------------------------------------------------------------
|
||||||
|
11.3 - Featured Images
|
||||||
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#select-featured-image a {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
12.0 - Categories
|
12.0 - Categories
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -1078,10 +1105,40 @@ form.upgrade .hint {
|
||||||
14.2 - Image Editor
|
14.2 - Image Editor
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.wp_attachment_image .button,
|
||||||
|
.A1B1 .button {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp_attachment_image .spinner,
|
||||||
|
.A1B1 .spinner {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
.imgedit-menu div {
|
.imgedit-menu div {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.imgedit-crop {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.imgedit-rleft,
|
||||||
|
.imgedit-flipv,
|
||||||
|
.imgedit-undo {
|
||||||
|
margin: 0 8px 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.imgedit-rright,
|
||||||
|
.imgedit-fliph,
|
||||||
|
.imgedit-redo {
|
||||||
|
margin: 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.imgedit-applyto img {
|
||||||
|
margin: 0 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.imgedit-help {
|
.imgedit-help {
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
@ -2031,6 +2088,10 @@ body.login {
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button.right, .button-secondary.right, .button-primary.right {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
/* Button Secondary Actions */
|
/* Button Secondary Actions */
|
||||||
.list-controls {
|
.list-controls {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2336,13 +2397,7 @@ h3.tb {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.feature-filter .feature-name {
|
|
||||||
float: right;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-filter .feature-group li {
|
.feature-filter .feature-group li {
|
||||||
float: right;
|
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4146,15 +4146,18 @@ td.imgedit-settings input {
|
||||||
color: grey;
|
color: grey;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp_attachment_image, .A1B1 {
|
.wp_attachment_image,
|
||||||
|
.A1B1 {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp_attachment_image .button, .A1B1 .button {
|
.wp_attachment_image .button,
|
||||||
|
.A1B1 .button {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp_attachment_image .spinner, .A1B1 .spinner {
|
.wp_attachment_image .spinner,
|
||||||
|
.A1B1 .spinner {
|
||||||
float: left;
|
float: left;
|
||||||
padding: 0 4px 4px;
|
padding: 0 4px 4px;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
|
@ -7877,9 +7880,9 @@ h3 span {
|
||||||
}
|
}
|
||||||
|
|
||||||
.feature-container {
|
.feature-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* widgets */
|
/* widgets */
|
||||||
|
|
|
@ -970,6 +970,10 @@
|
||||||
padding: 0 10px 0 0;
|
padding: 0 10px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl .wp-editor-tools {
|
||||||
|
padding: 0 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.wp-editor-container {
|
.wp-editor-container {
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
|
@ -1047,10 +1051,20 @@ html[dir="rtl"] .wp-switch-editor {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl .wp-media-buttons .button {
|
||||||
|
margin-right: 0;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.wp-media-buttons .insert-media {
|
.wp-media-buttons .insert-media {
|
||||||
padding-left: 0.4em;
|
padding-left: 0.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl .wp-media-buttons .insert-media {
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
.wp-media-buttons a {
|
.wp-media-buttons a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #464646;
|
color: #464646;
|
||||||
|
|
Loading…
Reference in New Issue