Commit 219d4e665311eb876a9486d45c8e49a5a06807c5

Authored by Jarrett Jordaan
1 parent c6576323

KTS-4443: Updated CSS On Setup Wizards

Committed by: Jarrett Jordaan

Reviewed by: Prince Mbekwa
setup/wizard/lib/validation/luceneValidation.php
... ... @@ -363,11 +363,11 @@ class luceneValidation extends serviceValidation {
363 363 * @access private
364 364 * @return boolean
365 365 */
366   - private function detSettings() {
367   - $javaExecutable = $this->util->javaSpecified();// Retrieve java bin
  366 + private function detSettings($attempt = false) {
  367 + $javaExecutable = $this->util->javaSpecified(); // Retrieve java bin
368 368 if($javaExecutable == '') {
369 369 if($this->java == '') {
370   - return false;
  370 + $this->java = 'java'; // Assume java is in classpath
371 371 }
372 372 $javaExecutable = $this->java;
373 373 }
... ...
setup/wizard/resources/css/ie6.css
  1 +#logo {
  2 + position:relative;
  3 + right:700px;
  4 + top:20px;
  5 +}
  6 +
  7 +td.ext_description {
  8 + width:330px;
  9 +}
  10 +
  11 +#outer-wrapper {
  12 + border:1px solid #B7B7B7;
  13 + margin-left:auto;
  14 + margin-right:auto;
  15 + width:964px;
  16 +}
  17 +
  18 +#outer-outer-wrapper {
  19 + margin-left:auto;
  20 + margin-right:auto;
  21 +}
  22 +
  23 +#content {
  24 + padding-left:50px;
  25 + margin-left: 220px;
  26 + height:515px;
  27 +}
  28 +
  29 +#step_content {
  30 + height: 400px;
  31 + overflow:auto;
  32 +}
0 33 \ No newline at end of file
... ...
setup/wizard/templates/welcome.tpl
... ... @@ -4,6 +4,7 @@
4 4 <p class="empty_space"> This wizard will lead you through all the steps required to install and configure KnowledgeTree on your server.</p>
5 5 <p class="empty_space">
6 6 Press <b>Next</b> to continue.</p>
  7 + <?php echo $html->image('kt_browse.png'); ?>
7 8 </div>
8 9 <input type="submit" name="Next" value="Next" class="button_next"/>
9 10 <!-- <input type="submit" name="Migrate" value="Migrate" class="button_next"/>-->
... ...