mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
- fix button issues with rtl languages
- fix direction of pagination (the crampted display in FF seems to be a bug in FF itself) git-svn-id: file:///svn/phpbb/trunk@7764 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
5127dc441a
commit
7fa7b0ba7a
3 changed files with 17 additions and 13 deletions
|
@ -151,6 +151,16 @@
|
|||
padding: 1px 0 1px 15px;
|
||||
}
|
||||
|
||||
.rtl .pagination span {
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.rtl .pagination span.page-sep {
|
||||
display: inline;
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
/* Miscellaneous styles
|
||||
---------------------------------------- */
|
||||
.rtl #forum-permissions {
|
||||
|
@ -436,7 +446,6 @@ a.right:hover {
|
|||
|
||||
/* Rollover state */
|
||||
.rtl .buttons div {
|
||||
float: right;
|
||||
margin: 0 0 0 5px;
|
||||
}
|
||||
|
||||
|
@ -457,7 +466,7 @@ a.right:hover {
|
|||
/* Poster profile icons
|
||||
----------------------------------------*/
|
||||
/* Rollover state */
|
||||
.rtl ul.profile-icons li {
|
||||
.rtl .postprofile ul.profile-icons li {
|
||||
float: right;
|
||||
margin: 0 0 3px 6px;
|
||||
}
|
||||
|
|
|
@ -374,7 +374,7 @@ ul.topiclist dd {
|
|||
|
||||
.rtl ul.topiclist dd {
|
||||
border-right-color: #fff;
|
||||
border-left-color: none;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
ul.topiclist li.row dt a.subforum.read {
|
||||
|
@ -404,7 +404,7 @@ li.row:hover dd {
|
|||
|
||||
.rtl li.row:hover dd {
|
||||
border-right-color: #CCCCCC;
|
||||
border-left-color: none;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
li.header dt, li.header dd {
|
||||
|
@ -565,7 +565,7 @@ fieldset.polls dd div {
|
|||
}
|
||||
|
||||
.rtl .pollbar1, .rtl .pollbar2, .rtl .pollbar3, .rtl .pollbar4, .rtl .pollbar5 {
|
||||
border-right-color: none;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
|
||||
.pollbar1 {
|
||||
|
@ -627,7 +627,7 @@ fieldset.polls dd div {
|
|||
|
||||
.rtl .postprofile {
|
||||
border-right-color: #FFFFFF;
|
||||
border-left-color: none;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
.pm .postprofile {
|
||||
|
@ -636,7 +636,7 @@ fieldset.polls dd div {
|
|||
|
||||
.rtl .pm .postprofile {
|
||||
border-right-color: #DDDDDD;
|
||||
border-left-color: none;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
.postprofile strong {
|
||||
|
@ -647,11 +647,6 @@ fieldset.polls dd div {
|
|||
background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.gif");
|
||||
}
|
||||
|
||||
.rtl .online {
|
||||
background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online_rtl.gif");
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
--------------------------------------------------------------
|
||||
Colours and backgrounds for buttons.css
|
||||
|
|
|
@ -467,7 +467,7 @@ dl.details dd {
|
|||
}
|
||||
|
||||
.pagination span.page-sep {
|
||||
display:none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
li.pagination {
|
||||
|
|
Loading…
Add table
Reference in a new issue