mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-01 03:54:56 +02:00
Merge pull request #5016 from Elsensee/ticket/15195
[ticket/15195] Fix code block in rtl print version
This commit is contained in:
commit
b71e725c0b
@ -8,6 +8,7 @@
|
|||||||
<title>{SITENAME} • {PAGE_TITLE}</title>
|
<title>{SITENAME} • {PAGE_TITLE}</title>
|
||||||
|
|
||||||
<link href="{T_THEME_PATH}/print.css" rel="stylesheet">
|
<link href="{T_THEME_PATH}/print.css" rel="stylesheet">
|
||||||
|
<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet">
|
||||||
<!-- EVENT ucp_pm_viewmessage_print_head_append -->
|
<!-- EVENT ucp_pm_viewmessage_print_head_append -->
|
||||||
</head>
|
</head>
|
||||||
<body id="phpbb">
|
<body id="phpbb">
|
||||||
|
@ -8,9 +8,10 @@
|
|||||||
<title>{SITENAME} • {PAGE_TITLE}</title>
|
<title>{SITENAME} • {PAGE_TITLE}</title>
|
||||||
|
|
||||||
<link href="{T_THEME_PATH}/print.css" rel="stylesheet">
|
<link href="{T_THEME_PATH}/print.css" rel="stylesheet">
|
||||||
|
<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet">
|
||||||
<!-- EVENT viewtopic_print_head_append -->
|
<!-- EVENT viewtopic_print_head_append -->
|
||||||
</head>
|
</head>
|
||||||
<body id="phpbb">
|
<body id="phpbb" class="{S_CONTENT_DIRECTION}">
|
||||||
<div id="wrap" class="wrap">
|
<div id="wrap" class="wrap">
|
||||||
<a id="top" class="top-anchor" accesskey="t"></a>
|
<a id="top" class="top-anchor" accesskey="t"></a>
|
||||||
|
|
||||||
|
@ -239,6 +239,10 @@
|
|||||||
|
|
||||||
/* Pagination
|
/* Pagination
|
||||||
---------------------------------------- */
|
---------------------------------------- */
|
||||||
|
.rtl .page-number {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
.rtl .pagination {
|
.rtl .pagination {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
float: left;
|
float: left;
|
||||||
@ -451,6 +455,10 @@ li.breadcrumbs span:first-child > a {
|
|||||||
|
|
||||||
/* Post body styles
|
/* Post body styles
|
||||||
----------------------------------------*/
|
----------------------------------------*/
|
||||||
|
.rtl .date {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
.rtl .postbody, .rtl .postbody h3 {
|
.rtl .postbody, .rtl .postbody h3 {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
@ -133,6 +133,8 @@ ol, ul {
|
|||||||
/* Misc page elements */
|
/* Misc page elements */
|
||||||
div.spacer { clear: both; }
|
div.spacer { clear: both; }
|
||||||
|
|
||||||
|
code { display: block; }
|
||||||
|
|
||||||
/* Accessibility tweaks: Mozilla.org */
|
/* Accessibility tweaks: Mozilla.org */
|
||||||
.skip_link { display: none; }
|
.skip_link { display: none; }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user