1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 19:20:23 +02:00
#8745
#8762
#5417
#9525
#9568
#9574
#9577
#9640
#9641
#9644


git-svn-id: file:///svn/phpbb/trunk@7291 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Dominik Dröscher
2007-04-06 23:09:00 +00:00
parent e3007bb6cf
commit 39f8ef287a
14 changed files with 48 additions and 15 deletions

View File

@@ -851,7 +851,7 @@ pmlist li.pm_foe_colour, .pm_foe_colour {
/* Avatar gallery */
#gallery label {
background: #FFFFFF;
background-color: #FFFFFF;
border-color: #CCC;
}
@@ -946,6 +946,13 @@ a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.but
color: #000000;
}
/* Hover states */
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
border: 1px solid #BC2A4D;
background-position: 0 100%;
color: #BC2A4D;
}
input.search {
background-image: url("{T_THEME_PATH}/images/icon_textbox_search.gif");
}

View File

@@ -429,14 +429,14 @@ dl.details {
dl.details dt {
float: left;
width: 11em;
width: 16em;
text-align: right;
color: #000000;
display: block;
}
dl.details dd {
margin-left: 11em;
margin-left: 16em;
padding-left: 5px;
margin-bottom: 5px;
color: #828282;

View File

@@ -347,9 +347,9 @@ a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.but
/* Hover states */
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
border: 1px solid #BC2A4D;
border: 1px solid #BCBCBC;
background-position: 0 100%;
color: #BC2A4D;
color: #BCBCBC;
}
/* Topic and forum Search */

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

View File

@@ -45,3 +45,11 @@ html>body dd label input { vertical-align: text-bottom; } /* Align checkboxes/ra
#tabs, #minitabs, .post, .navbar, fieldset dl, ul.topiclist dl, ul.linklist, dl.polls {
height: 1%;
}
/* Simple fix so forum and topic lists always have a min-height set, even in IE6
From http://www.dustindiaz.com/min-height-fast-hack */
dl.icon {
min-height: 35px;
height: auto !important;
height: 35px;
}