Changeset 763


Ignore:
Timestamp:
03/22/13 11:28:39 (11 years ago)
Author:
npipsl
Message:

Correction bug réinitialisation de menus déroulants
changement couleurs et ombres boutons et onglets

Location:
geisa/web
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • geisa/web/initGeisa_script.jsp

    r762 r763  
    25002500                    this.selectTraceAxeY1.remove( 'Z', "Number of lines ", jQuery.proxy(this.onClickSelectTraceAxeY1, this ) ); 
    25012501                    this.selectTraceAxeY2.remove( 'Z', "Number of lines ", jQuery.proxy(this.onClickSelectTraceAxeY2, this ) ); 
    2502                     //Selection par defaut du 1er element (pour que  "Number of lines"  ne soit plus selectionne par defaut si il n'existe plus) 
    2503                     this.selectTraceAxeY1.selectFirst(); 
    2504                     this.selectTraceAxeY2.selectFirst(); 
     2502                    //Si "number of line" est selectionné alors qu'il n'existe plus (car mean value est maintenant 0), alors on recharge le menu deroulant pour qu'il se mette sur "intensity". 
     2503                    if  (this.selectTraceAxeY1.getValue() == 'Z' ) 
     2504                    { 
     2505                     this.selectTraceAxeY1.selectFirst(); 
     2506                    } 
     2507                    if  (this.selectTraceAxeY2.getValue() == 'Z' ) 
     2508                    { 
     2509                     this.selectTraceAxeY1.selectFirst(); 
     2510                    } 
     2511                   // this.selectTraceAxeY1.selectFirst(); 
     2512                    //this.selectTraceAxeY2.selectFirst(); 
    25052513                                     } 
    25062514                //dans l'option "databases comparison" griser ou non la zone outputChoice en fonction de la valeur de   "Bin-average" 
  • geisa/web/resources/css/button.css

    r665 r763  
    2929    overflow: visible; 
    3030    padding: 4px 6px 3px 6px; /* IE6 */ 
     31 
     32    -moz-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3); 
     33    -webkit-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3); 
     34    box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3); 
    3135} 
    3236 
  • geisa/web/resources/css/geisa.css

    r757 r763  
    525525 
    526526.tab_class { 
    527     -moz-border-radius: 4px 4px 0 0; 
     527   /* -moz-border-radius: 4px 4px 0 0; */ 
    528528    -moz-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3); 
    529     background: none repeat scroll 0 0 #a0c3df; 
     529    -moz-border-radius: 4px 4px 4px 4px; 
     530    -webkit-border-radius: 4px 4px 4px 4px; 
     531    -webkit-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3); 
     532    box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3); 
     533    border-radius: 4px 4px 4px 4px; 
     534    background: none repeat scroll 0 0 #FFCC33; 
     535    /*background: none repeat scroll 0 0 #a0c3df;*/ 
    530536    color: black; 
    531537    float: right; 
     
    538544 
    539545 
    540  
    541546.tab_class.activated { 
    542     background: none repeat scroll 0 0 #6191b5; 
    543     color: white; 
     547    /*background: none repeat scroll 0 0 #6191b5;*/ 
     548    background: none repeat scroll 0 0 #FF9300; 
     549    /*color: white;*/ 
     550    color:#0C0CEF; 
    544551} 
    545552 
    546553.tab_class:hover { 
    547   background: none repeat scroll 0 0 #4382C1; 
    548 } 
     554 /* background: none repeat scroll 0 0 #4382C1;*/ 
     555 background: none repeat scroll 0 0 #FF9300; 
     556} 
  • geisa/web/resources/templates/templateGeisa.jsp

    r723 r763  
    6464    <%-- ****************** MENU ****************** --%> 
    6565       <div id="containerCenter" class="containerTapas containerCenter"> 
    66          <%--    <div id="menu" class="containerMenu"> 
     66           <%-- <div id="menu" class="containerMenu"> 
    6767                <ul class="menu"> 
    6868                    <li><a href="#" class="parent"><span>Graphics options</span></a> 
     
    118118 
    119119                </ul> 
    120             </div> --%> 
     120            </div>  --%> 
    121121 
    122122 
  • geisa/web/src/com/ether/Controller.java

    r762 r763  
    283283 
    284284    //local 
    285      public static final String PATH_PROCESS = "/home/npipsl/Desktop/geisa-Graphique/prog-ether/"; 
     285      public static final String PATH_PROCESS = "/home/npipsl/Desktop/geisa-Graphique/prog-ether/"; 
    286286    //naboo 
    287    // public static final String PATH_PROCESS = "/home/www/GEISA/"; 
     287  // public static final String PATH_PROCESS = "/home/www/GEISA/"; 
    288288    private static final String VIEW_INIT = "init"; 
    289289    private static final String VIEW_INIT2 = "initGeisa"; 
Note: See TracChangeset for help on using the changeset viewer.