Changeset 2ca9f4e in github


Ignore:
Timestamp:
Jun 24, 2012 8:19:19 AM (11 months ago)
Author:
Aleksander Machniak <alec@…>
Branches:
master, HEAD
Children:
d86aa13
Parents:
7dc7eb1
Message:

Fix form buttons (#1488548)

Location:
skins/default
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • skins/default/settings.css

    r24baf62 r2ca9f4e  
    135135#formfooter .footerleft 
    136136{ 
    137   padding-left: 2px; 
     137  padding: 0 2px 10px; 
    138138  white-space: nowrap; 
    139139  float: left; 
     
    142142#formfooter .footerright 
    143143{ 
    144   padding-right: 2px; 
     144  padding: 0 2px 10px; 
    145145  white-space: nowrap; 
    146146  text-align: right; 
  • skins/default/templates/folderedit.html

    r5744bfa r2ca9f4e  
    1212<div id="folder-details" class="boxcontent"> 
    1313  <roundcube:object name="folderdetails" /> 
    14   <p> 
    15     <roundcube:if condition="!strlen(request:_mbox)" /> 
    16     <input type="button" value="<roundcube:label name="cancel" />" class="button" onclick="history.back()" />&nbsp; 
    17     <roundcube:endif /> 
    18     <roundcube:button command="save" type="input" class="button mainaction" label="save" /> 
    19   </p> 
     14  <div id="formfooter"> 
     15    <div class="footerleft"> 
     16      <roundcube:if condition="!strlen(request:_mbox)" /> 
     17        <input type="button" value="<roundcube:label name="cancel" />" class="button" onclick="history.back()" />&nbsp; 
     18      <roundcube:endif /> 
     19      <roundcube:button command="save" type="input" class="button mainaction" label="save" /> 
     20    </div> 
     21  </div> 
    2022</div> 
    2123<script type="text/javascript">rcube_init_tabs('folder-details > form')</script> 
  • skins/default/templates/identityedit.html

    rdae0b79 r2ca9f4e  
    1919 
    2020<div id="identity-details" class="boxcontent"> 
    21 <roundcube:object name="identityform" id="identity-form" size="40" textareacols="70" textarearows="6" /> 
    22 <script type="text/javascript">rcube_init_tabs('identity-form')</script> 
     21  <roundcube:object name="identityform" id="identity-form" size="40" textareacols="70" textarearows="6" /> 
    2322 
    24 <div id="formfooter"> 
    25   <roundcube:button command="save" type="input" class="button mainaction" label="save" /> 
    26 </div> 
     23  <script type="text/javascript">rcube_init_tabs('identity-form')</script> 
     24 
     25  <div id="formfooter"> 
     26    <div class="footerleft"> 
     27      <roundcube:button command="save" type="input" class="button mainaction" label="save" /> 
     28    </div> 
     29  </div> 
    2730</div> 
    2831 
  • skins/default/templates/settingsedit.html

    r49771b1 r2ca9f4e  
    1111 
    1212<div id="prefs-details" class="boxcontent"> 
    13 <roundcube:object name="userprefs" form="form" /> 
    14 </div> 
    15  
    16 <div id="formfooter"> 
    17 <div class="footerleft"> 
    18 <roundcube:button command="save" type="input" class="button mainaction" label="save" /> 
    19 </div> 
     13  <roundcube:object name="userprefs" form="form" /> 
     14  <div id="formfooter"> 
     15    <div class="footerleft"> 
     16      <roundcube:button command="save" type="input" class="button mainaction" label="save" /> 
     17    </div> 
     18  </div> 
    2019</div> 
    2120 
Note: See TracChangeset for help on using the changeset viewer.