diff options
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 27 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/links.css | 1 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/tweaks.css | 9 |
3 files changed, 32 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 170d4b0a83..f60fdec719 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -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 { diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 733a3cc8d3..a6418914a5 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -73,7 +73,6 @@ a.topictitle:active { /* Post body links */ .postlink { - text-decoration: none; color: #d2d2d2; border-bottom: 1px solid #d2d2d2; padding-bottom: 0; diff --git a/phpBB/styles/prosilver/theme/tweaks.css b/phpBB/styles/prosilver/theme/tweaks.css index 4dd490ea33..e3a2557fc5 100644 --- a/phpBB/styles/prosilver/theme/tweaks.css +++ b/phpBB/styles/prosilver/theme/tweaks.css @@ -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; }
\ No newline at end of file |