1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 10:44:20 +02:00

added subforum read/unread icons (thanks to thatbitextra for providing them).

fixed issue with forum passwords only alloweing ASCII in administration while allowing non-ASCII on user-entered passwords


git-svn-id: file:///svn/phpbb/trunk@7581 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-05-15 10:55:17 +00:00
parent f751aba4d6
commit 0d7b31e884
10 changed files with 30 additions and 4 deletions

View File

@@ -80,6 +80,9 @@ img_global_unread_mine = announce_unread_mine.gif*27*27
img_global_unread_locked = announce_unread_locked.gif*27*27
img_global_unread_locked_mine = announce_unread_locked_mine.gif*27*27
img_subforum_read = subforum_read.gif*9*11
img_subforum_unread = subforum_unread.gif*9*11
img_pm_read = topic_read.gif*27*27
img_pm_unread = topic_unread.gif*27*27

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

View File

@@ -372,6 +372,14 @@ ul.topiclist dd {
border-left-color: #FFFFFF;
}
ul.topiclist li.row dt a.subforum.read {
background-image: url("{IMG_SUBFORUM_READ_SRC}");
}
ul.topiclist li.row dt a.subforum.unread {
background-image: url("{IMG_SUBFORUM_UNREAD_SRC}");
}
li.row {
border-top-color: #FFFFFF;
border-bottom-color: #00608F;

View File

@@ -47,6 +47,13 @@ ul.topiclist dfn {
display: none;
}
ul.topiclist li.row dt a.subforum {
background-image: none;
background-position: 0pt 50%;
background-repeat: no-repeat;
padding: 0 0 0 12px;
}
li.row {
border-top: 1px solid #FFFFFF;
border-bottom: 1px solid #8f8f8f;
@@ -105,7 +112,7 @@ dl.icon {
dl.icon dt {
padding-left: 45px; /* Space for folder icon */
background-repeat: no-repeat;
background-position: 27px 70%; /* Position of topic icon */
background-position: 5px 95%; /* Position of topic icon */
}
dd.posts, dd.topics, dd.views {