mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Fix bug #45765 - Correctly hide skiplink in prosilver right-to-left mode (thanks prototech).
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9572 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b04d55f6e7
commit
8959911992
2 changed files with 21 additions and 0 deletions
|
@ -99,6 +99,7 @@
|
|||
<li>[Fix] Adjust viewonline filename regular expression to be less strict. (Bug #46215 - Patch by bantu)</li>
|
||||
<li>[Fix] Correctly apply the can change vote permission again. Regression introduced in r9470. (Bug #45895)</li>
|
||||
<li>[Fix] Also remove data from friend/foe table when deleting user. (Bug #45345 - Patch by nickvergessen)</li>
|
||||
<li>[Fix] Correctly hide skiplink in prosilver right-to-left mode. (Bug #45765 - Patch by prototech and bantu)</li>
|
||||
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
||||
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
|
||||
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
|
||||
|
|
|
@ -234,9 +234,29 @@
|
|||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.rtl .skiplink {
|
||||
/* invisible skip link, used for accessibility */
|
||||
position: relative;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* content.css
|
||||
*/
|
||||
.rtl ul.topiclist dfn {
|
||||
/* Labels for post/view counts */
|
||||
position: relative;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.rtl ul.topiclist dt {
|
||||
float: right;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue