--- a/eric6/Helpviewer/data/html/startPage.html Sat Sep 07 14:45:27 2019 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,129 +0,0 @@ -<!DOCTYPE html> -<html> -<head> -<meta charset="utf-8"> -<meta http-equiv="content-type" content="text/html; charset=utf-8"> -<title></title> -<link rel="icon" href="@FAVICON@" type="image/x-icon" /> -<style> -* { - margin: 0; - padding: 0; - font-family: "DejaVu Sans"; -} - -body { - background: -webkit-gradient(linear, left top, left bottom, from(#85784A), to(#FDFDFD), color-stop(0.5, #FDFDFD)); - background-repeat: repeat-x; - margin-top: 200px; -} - -#header, #search, #footer { - width: 600px; - margin: 10px auto; -} - -#header, #search { - border-radius: 0.8em; - padding: 25px; -} - -#header { - background: -webkit-gradient(linear, left top, left bottom, from(#D57E3E), to(#D57E3E), color-stop(0.5, #FFBA89)); - height: 25px; -} - -#header h1 { - display: inline; - font-size: 1.7em; - font-weight: bold; -} - -#header img { - display: inline; - float: right; - margin-top: -5px; -} - -#search { - background: -webkit-gradient(linear, left top, right top, from(#85784A), to(#85784A), color-stop(0.5, #C8C2AE)); - height: 50px; - color: #000; - text-align: center; - padding-top: 40px !important; -} - -#search fieldset { - border: 0; -} - -#search input[type=text] { - width: 65%; -} - -#search input[type=submit] { - width: 25%; -} - -#footer { - text-align: center; - color: #999; -} - -#footer a { - color: #555; - text-decoration: none; -} - -#footer a:hover { - text-decoration: underline; -} - </style> - <script type="text/javascript"> - function update() - { - document.title = window.eric.translate('Welcome to eric6 Web Browser!'); - document.getElementById('headerTitle').innerHTML = window.eric.translate('eric6 Web Browser'); - document.getElementById('searchButton').value = window.eric.translate('Search!'); - document.getElementById('footer').innerHTML = window.eric.providerString() - + ' | ' + '<a href="https://eric-ide.python-projects.org/">' - + window.eric.translate('About eric6') + '</a>'; - document.getElementById('lineEdit').placeholder = window.eric.providerString(); - - // Try to change the direction of the page: - - var newDir = window.eric.translate('QT_LAYOUT_DIRECTION'); - newDir = newDir.toLowerCase(); - if ((newDir != 'ltr') && (newDir != 'rtl')) - newDir = 'ltr'; - document.getElementsByTagName('body')[0].setAttribute('dir', newDir); - } - - function formSubmitted() - { - var string = lineEdit.value; - - if (string.length == 0) - return; - - var url = window.eric.searchUrl(string); - window.location.href = url; - } - </script> -</head> -<body onload="document.forms[0].lineEdit.select(); update();"> - <div id="header"> - <h1 id="headerTitle"></h1> - <img src="@IMAGE@" width="32" height="32"/> - </div> - <div id="search"> - <form action="javascript:formSubmitted();"> - <fieldset> - <input id="lineEdit" name="lineEdit" type="text" /> - <input id="searchButton" type="submit" /> - </fieldset> - </form> - </div> - <div id="footer"></div> -</body> -</html>