User: timar   
Date: 2009-04-07 15:48:29+0000
Added:
   hu/www/css/hu2009.css

Modified:
   hu/www/index2.html

Log:
 hu2009.css

File Changes:

Directory: /hu/www/
===================

File [changed]: index2.html
Url: http://hu.openoffice.org/source/browse/hu/www/index2.html?r1=1.12&r2=1.13
Delta lines:  +61 -58
---------------------
--- index2.html 2009-04-07 15:36:09+0000        1.12
+++ index2.html 2009-04-07 15:48:26+0000        1.13
@@ -1,7 +1,7 @@
 <html>
    <head>
    <!-- Begin Hungarian header -->
-      <link rel="stylesheet" type="text/css" href="/css/new_hu.css" 
media="screen" />
+      <link rel="stylesheet" type="text/css" href="/css/hu2009.css" 
media="screen" />
       <link rel="stylesheet" type="text/css" href="/branding/css/home.css" 
media="screen" />
       <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
       <title>OpenOffice.org magyarul</title>
@@ -29,64 +29,67 @@
       <a href="http://hu.openoffice.org/";><img 
src="/branding/images/bannerlogo.png" alt="OpenOffice.org" /></a>
       <h1><em>Az ingyenes, szabad és nyílt forrású irodai csomag</em></h1>
    </div>
-<div id="minilinks-hu">
-<p><a href="http://www.openoffice.org/search/";>Keresés</a> 
-- <a href="http://www.openoffice.org/servlets/StartPage";>Bejelentkezés</a>
-- <a href="http://www.openoffice.org/";>Nemzetközi honlap</a></p>
-</div>
 
-<div id="minitabs-hu">
-      <ul class="minitabs">
-         <li class="minitab search first_in_list">
-            <a class="tab" 
href="http://www.openoffice.org/search/";>Keresés</a>
-            <div class="tabcontent">
-               <form action="http://hu.openoffice.org/servlets/Search"; 
method="get">
-               <p>
-                    <input type="hidden" name="resultsPerPage" value="40" /> 
-                    <input type="text" name="query" size="10" id="searchfield" 
class="inputtext" />
-                    <input type="submit" class="searchbutton" name="Button" 
value="Keresés" />
-               </p>
-               </form>
-               <p><a href="http://www.openoffice.org/search/";>Speciális 
keresés</a></p>
+  <div id="headertools">
+    <div id="tools-main">
+      <div id="language-projects">
+        <a id="language-projects-link" 
href="http://projects.openoffice.org/native-lang.html"; title="Language Projects 
- Icon by Tango Desktop Project" accesskey="2">Language Projects</a>
             </div>
-         </li>
 
-         <li class="minitab lang">
-            <a class="tab" href="http://www.openoffice.org";>Nemzetközi 
honlap</a>
-            <div class="tabcontent">
-               <p>Az OpenOffice.org nemzetközi honlapján keresztül még 
több információ érhető el.<br>
-               <a href="http://www.openoffice.org/";>www.openoffice.org</a>.</p>
+      <a class="user-icon" href="http://www.openoffice.org/servlets/StartPage"; 
title="Log In"></a><span id="user-nologin">You are not logged in. <a 
id="register-link" class="register-link" 
href="http://www.openoffice.org/servlets/Join"; accesskey="3">Register</a> or<a 
href="http://www.openoffice.org/servlets/StartPage"; id="login-link" 
class="expand" onclick="toggleLogin(); if(SHOWLOGIN) { 
this.className='contract'; } else { this.className='expand'; } return false;" 
accesskey="4">Log In</a></span>
             </div>
-         </li>
 
-         <li class="minitab login">
-            <a class="tab" 
href="http://www.openoffice.org/servlets/StartPage";>Bejelentkezés</a>
-            <div class="tabcontent">
-               <div id="loginbox-hu">
-               <form action="/servlets/TLogin" method="post">
+    <form name="login" 
action="/servlets/TLogin;jsessionid=3C74F70D115A964D7876A8CE7D234D60" 
method="post">  
+      <div id="login-expand">
+        <input type="hidden" name="detour" 
value="http://www.openoffice.org/index.html"; />
                   <div>
-                  <p>
-                     <label for="loginID">Felhasználónév:</label> 
-                     <input type="text" alt="username" class="inputtext" 
name="loginID" id="loginID" />
-                  </p>
-                  <p>
-                     <label for="password">Jelszó:</label>
-                     <input type="password" alt="password" class="inputtext" 
name="password" id="password" />
-                  </p>
-                  <p>
-                     <input type="submit" class="loginbutton" name="Button" 
value="Bejelentkezés" />
-                     <input type="hidden" name="detour" 
value="http://hu.openoffice.org/new_index.html"; />
-                     <span id="joina-hu">   <a 
href="http://www.openoffice.org/servlets/Join";>Regisztrálás</a></span>
-                  </p>
+
+          <label for="loginID">username</label>
+          <input id="loginID" name="loginID" onfocus="this.select();" />
                   </div>
-               </form>
+        <div>
+          <label for="password">password</label>
+          <input onfocus="this.select();" name="password" id="password" 
type="password" />
             </div>
+        <input name="Button" class="submit" type="submit" value="Login" />
+
             </div>
-         </li>
-      </ul>
+    </form>
+    
+    <script type="text/javascript">
+      <!--
+      var SHOWLOGIN = false;
+
+      function toggleLogin() {
+        if (!SHOWLOGIN) {
+          SHOWLOGIN = true;
+          document.getElementById('login-expand').style.visibility = 'visible';
+          if(document.login.loginID.value.length > 0 && 
document.login.password.value.length > 0) {
+            document.login.Button.focus();
+          } else {
+            document.login.loginID.focus();
+          }
+        } else {
+          SHOWLOGIN = false;
+          document.getElementById('login-expand').style.visibility = 'hidden';
+        }
+      }
+      -->
+    </script>
+
+    
+    <form 
action="http://www.openoffice.org/servlets/Search;jsessionid=3C74F70D115A964D7876A8CE7D234D60";
 method="get">
+
+        
+      <div id="search">
+        <input type="hidden" name="resultsPerPage" value="40" />
+        <a href="http://www.openoffice.org/search/"; title="Advanced 
search"></a><input type="text" name="query" id="searchfield" 
class="searchfield" value="" alt="Search" accesskey="5" /><input class="submit" 
type="submit" value="Search" />
+
+      </div>
+    </form>
    </div>
 
-</div>
+
 
 <div id="subheader-hu">
    <div id="navigation-hu">

Directory: /hu/www/css/
=======================

File [added]: hu2009.css
Url: 
http://hu.openoffice.org/source/browse/hu/www/css/hu2009.css?rev=1.1&content-type=text/vnd.viewcvs-markup
Added lines: 66
---------------
/*--------------------------- Header ---------------------------*/

#nonfooter { display:none; }
#header { display:none; }
#positioner { display:none; }
#minitabs { display:none; }
#loginbox { display:none; }
#minilinks { display:none; }
#joina { display:none; }

#nonfooter-hu { min-height: 100%; position: relative; }
#header-hu { width: 100%; min-width: 750px; height: 125px; background: 
url(/branding/images/header.png) no-repeat #9BC0F5; }
#positioner-hu { float: left; }
#positioner-hu a { margin: 0; padding: 0; float: left; width: 175px; height: 
125px; background: url(/branding/images/bannerlogo.png) no-repeat; display: 
block; }
#positioner-hu h1 { margin: 29px 0 0 175px; padding: 10px 0 10px 15px; border: 
none; border-left: 1px solid #EDF4FD; color: white; font: italic 1.4em 
sans-serif; text-shadow: #AAC4EA 2px 2px; background: none; text-transform: 
lowercase; } 

/*--------------------------- Top Menu / Navigation 
---------------------------*/

#subheader { display:none; }
#navigation { display:none; }

#subheader-hu { margin: 0 0 15px 0; width: 100%; min-width: 750px; height: 
25px; background: url(/branding/images/wave-bottom.png) no-repeat left #CBDEFA; 
}
#navigation-hu { height: 25px; float: right; font-size: .75em; }
#navigation-hu ul { margin: 0 8px 0 0; padding: 0; }
#navigation-hu li { margin: 0; padding: 0; list-style: none; display: inline; }
#navigation-hu a { margin: 0 7px 0 0; padding: 0 0 0 5px; float: left; 
background: url(/branding/images/tab-left.png) no-repeat left top #F0F5FE; 
cursor: pointer; text-decoration:none; }
#navigation-hu span { float: left; display: block; background: 
url(/branding/images/tab-right.png) no-repeat right top #F0F5FE; padding: 6px 
8px 6px 2px; color: #333; }
#navigation-hu a:hover { background: url(/branding/images/tab-left.png) 
no-repeat 0 -50px #FAFCFF; }
#navigation-hu a:hover span { background: url(/branding/images/tab-right.png) 
right -50px #FAFCFF; }
#navigation-hu li.th a { float: left; background: 
url(/branding/images/tab-left.png) no-repeat left -100px #FFF; }
#navigation-hu li.th a span { background: url(/branding/images/tab-right.png) 
no-repeat right -100px #FFF; }

/*--------------------------- Breadcrumbs ---------------------------*/

#breadcrumbs { display:none; }

/*--------------------------- Content (informational body) Layout 
---------------------------*/

#content { display:none; }
#main { display:none; }
#bodycol { display:none; }

#content-hu { width: 100%; padding: 0 0 160px 0; clear: both; display: block; 
font-size: 1em; }
#main-hu { width: 100%; margin: 15px 0 0 0; }
#bodycol-hu { margin: 0; padding: 0 13px 0 0; height: auto; }
#bodycol-hu li { margin: 10px 0 10px 30px; }
#bodycol-hu dd { line-height: 150%; margin: 20px 0 20px 30px; }

/*--------------------------- NavColumn Layout ---------------------------*/

#navcol { display:none; }
#navcolumn { display:none; }

#navcol-hu { width: 185px; }
#navcolumn-hu { width: 185px; margin: 0 15px 0 0; font-size: .8em; }

/*--------------------------- Footer ---------------------------*/

#footer { display:none; }
#footer-hu { width: 100%; min-width: 750px; height: 155px; margin: -130px 0 0 
0; padding: 5px 0 0 0; background: url(/branding/images/footer-bg.png) 0 top 
repeat-x #F2F2F2; text-align: center; position: relative; clear: both; display: 
block; font-size: .75em; }
#footer-hu img { border: none; }
#footer-hu a { color: #999; }
#footer-hu a:hover { color: #069; }
#footer-hu ul { padding: 0 0 10px 0; margin: 15px 0 7px 0; font-size: 12px; }
#footer-hu li { list-style: none; display: inline; margin: 0 10px 0 10px; 
padding: 0; }





---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to