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

fixes for search button in header - #10389, #10225, #9548

added missing colour swatch to prosilver - #8657
language changes - #10387, #10375, #10373, #10353, #10279
line-height for font size (still not ideal) - #10317
Search load setting checked in sessions.php along with limit_load and also reset if not possible to determine load - #10383
Fix editing issues - #9660


git-svn-id: file:///svn/phpbb/trunk@7451 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-05-02 16:19:35 +00:00
parent f4b6f87641
commit 15aee89200
20 changed files with 125 additions and 66 deletions

View File

@@ -128,6 +128,7 @@ p.right {
float: left;
width: auto;
padding: 10px 13px 0 10px;
height: auto;
}
a#logo:hover {
@@ -138,14 +139,22 @@ a#logo:hover {
--------------------------------------------- */
#search-box {
color: #FFFFFF;
position: absolute;
right: 35px;
top: 35px;
width: 17em;
position: relative;
margin-top: 30px;
margin-right: 5px;
display: block;
float: right;
text-align: right;
white-space: nowrap; /* For Opera */
}
.rtl #search-box {
float: left;
text-align: left;
margin-right: 0;
margin-left: 5px;
}
#search-box #keywords {
width: 95px;
background-color: #FFF;
@@ -170,6 +179,16 @@ a#logo:hover {
margin-right: 3px;
}
/* Site description and logo */
#site-description {
float: left;
width: 70%;
}
.rtl #site-description {
float: right;
}
/* Round cornered boxes and backgrounds
---------------------------------------- */
.headerbar {

View File

@@ -73,7 +73,6 @@ a.topictitle:active {
/* Post body links */
.postlink {
text-decoration: none;
color: #d2d2d2;
border-bottom: 1px solid #d2d2d2;
padding-bottom: 0;

View File

@@ -52,4 +52,13 @@ dl.icon {
min-height: 35px;
height: auto !important;
height: 35px;
}
* html #search-box {
margin-right: 35px;
}
* html .rtl #search-box {
margin-right: 0;
margin-left: 35px;
}