Dotclear

Changeset 263:91be8e2ae519


Ignore:
Timestamp:
05/14/11 10:46:43 (13 years ago)
Author:
kozlika
Branch:
default
Message:

Wizard style. Need to be tested, je suis pas douée pour les fausses install :-P

Location:
admin
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • admin/install/wizard.php

    r217 r263  
    171171 
    172172'<form action="wizard.php" method="post">'. 
    173 '<p><label class="required" title="'.__('Required field').'">'.__('Database type:').' '. 
     173'<p><label class="required" for="DBDRIVER"><abbr title="'.__('Required field').'">*</abbr> '.__('Database type:').' '. 
    174174form::combo('DBDRIVER',array('MySQL'=>'mysql','PostgreSQL'=>'pgsql'),$DBDRIVER).'</label></p>'. 
    175 '<p><label>'.__('Database Host Name:').' '. 
     175'<p><label for="DBHOST">'.__('Database Host Name:').' '. 
    176176form::field('DBHOST',30,255,html::escapeHTML($DBHOST)).'</label></p>'. 
    177 '<p><label>'.__('Database Name:').' '. 
     177'<p><label for="DBNAME">'.__('Database Name:').' '. 
    178178form::field('DBNAME',30,255,html::escapeHTML($DBNAME)).'</label></p>'. 
    179 '<p><label>'.__('Database User Name:').' '. 
     179'<p><label for="DBUSER">'.__('Database User Name:').' '. 
    180180form::field('DBUSER',30,255,html::escapeHTML($DBUSER)).'</label></p>'. 
    181 '<p><label>'.__('Database Password:').' '. 
     181'<p><label for="DBPASSWORD">'.__('Database Password:').' '. 
    182182form::password('DBPASSWORD',30,255).'</label></p>'. 
    183 '<p><label class="required" title="'.__('Required field').'">'.__('Database Tables Prefix:').' '. 
     183'<p><label for="DBPREFIX" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Database Tables Prefix:').' '. 
    184184form::field('DBPREFIX',30,255,html::escapeHTML($DBPREFIX)).'</label></p>'. 
    185185 
  • admin/style/install.css

    r69 r263  
    77*/ 
    88body.install { 
    9      font: 0.8em "DejaVu Sans","Lucida Grande","Lucida Sans Unicode",Arial,sans-serif; 
     9     font: 0.875em Helvetica,Arial,sans-serif; 
    1010     color: #000; 
    1111     background-color: #fff; 
     12     line-height: 1.5em; 
    1213} 
    1314body.install #content { 
    14      width:500px; 
     15     width:32em; 
    1516     margin:1em auto; 
    1617} 
     
    2021     -moz-border-radius:8px; 
    2122     -webkit-border-radius:8px; 
     23     border-radius: 8px; 
    2224} 
    2325body.install h1,h2 { 
     
    4042} 
    4143body.install label { 
    42      font-weight: bold; 
    4344     color: #555; 
    4445} 
    4546 
    4647body.install .msg { 
    47      padding:10px 10px 10px 42px; 
     48     padding:10px 10px 10px 60px; 
    4849     -moz-border-radius:8px; 
    4950     -webkit-border-radius:8px; 
     
    5556     background: #eef url(install/note.png) no-repeat 10px 10px; 
    5657} 
     58a, a:link, a:visited { 
     59     color: #2373A8; 
     60     text-decoration: none; 
     61     border-bottom: 1px dotted #f90; 
     62} 
     63a:hover, a:active, a:focus { 
     64     text-decoration: underline; 
     65} 
    5766 
    5867div.error, p.error, div.message, p.message, div.static-msg, p.static-msg { 
    59      padding: 0.5em 0.5em 0.5em 40px; 
     68     padding: 0.5em 0.5em 0.5em 60px; 
    6069     margin-bottom: 1em; 
    6170     -moz-border-radius: 8px; 
     
    6776} 
    6877div.error, p.error { 
    69      background: #e5bfbf url(msg-error.png) no-repeat 5px 5px; 
     78     background: #e5bfbf url(install/process_warning.png) no-repeat 5px 5px; 
    7079     color: #600; 
    7180} 
    7281div.message, p.message, div.static-msg, p.static-msg { 
    73      background: #666 url(msg-std.png) no-repeat 5px 5px; 
     82     background: #666 url(install/note.png) no-repeat 5px 5px; 
    7483     color: #fff; 
    7584} 
     
    8695label.required { 
    8796     font-weight : bold; 
    88 } 
    89 label.required:before { 
    90      content : '* '; 
    91      color : #c00; 
    9297} 
    9398 
     
    123128     -webkit-border-radius: 2px; 
    124129} 
     130 
     131input[type=submit]{ 
     132     font-size: 1.05em; 
     133     display: inline-block; 
     134     outline: none; 
     135     cursor: pointer; 
     136     text-align: center; 
     137     text-decoration: none; 
     138     padding: .1em .5em; 
     139     text-shadow: 0 1px 1px rgba(0,0,0,.3); 
     140     -webkit-border-radius: .2em; 
     141     -moz-border-radius: .2em; 
     142     border-radius: .2em; 
     143     margin-bottom: .1em; 
     144     color: #fff; 
     145     border: 1px solid #2373A8; 
     146     background: #2373A8; 
     147     background: -webkit-gradient(linear, left top, left bottom, from(#2C8FD1), to(#2373A8)); 
     148     background: -moz-linear-gradient(top,  #2C8FD1,  #2373A8); 
     149} 
     150input[type=submit]:hover, 
     151input[type=submit]:focus { 
     152     background: #2373A8; 
     153     background: -webkit-gradient(linear, left top, left bottom, from(#2373A8), to(#2C8FD1)); 
     154     background: -moz-linear-gradient(top,  #2373A8,  #2C8FD1); 
     155     filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#2373A8', endColorstr='#2C8FD1'); 
     156     border: 1px solid #2C8FD1; 
     157} 
  • admin/style/install/important.png

    • Property exe set to *
  • admin/style/install/note.png

    • Property exe set to *
  • admin/style/msg-error.png

    • Property exe set to *
  • admin/style/package.png

    • Property exe set to *
Note: See TracChangeset for help on using the changeset viewer.

Sites map