Le 23/03/2012 17:19, christian.palluy a écrit :
> Bonjour,
> 
> Ces satanés boutons ne peuvent être animé, soit, mais on peut tenter de
> faire des boutons.
> Ci-joint un zip avec des boutons en css. Ce sont des paragraphes
> formatés pour s'afficher sur la même ligne en partant de la droite.
> Je te laisse tester cela sous javahelp, car sur un navigateur (firefox,
> IE9, chrome) le résultat est conforme aux attentes.

J'ai modifié ton travail Christian. Avant que je ne regarde sous
Netbeans, vous en pensez quoi ?

Francois

-- 
Vous utilisez Ancestris ? Nous aussi.
http://www.arvernes.com/files/ancestris_localisation_utilisateurs.html

/*
 * rave.css      08/13/2004
 *
 * Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
 * Use is subject to license terms.
 *
 * Changes from NetBeans ide.css:
 * Oct. 2003
 * Got rid of <tr> and <td> definitions.
 * Changed table definition and added <border> tag
 * to improve appearance of tables in web browsers.
 * Added <th> definition to make default text alignment left.
 * 
 * Added <dl>, <dt>, and <dd> definitions to be used instead
 * of formatting tables for See Also lists. For example:
 * <dl>
 * <dt>See Also</dt>
 * <dd>First Linked Element of List</dd>
 * <dd>Second Linked Element of List</dd>
 * </dl>
 * 
 * Added <ul> and <ol> definitions that support blue ball
 * and blue square graphics for bullets. Definitions
 * account for sublists and for subslists of sublists.
 * 
 */


/* Page */

body  {
    font-size: 12px;
    font-family: SansSerif, Arial, Helvetica, sans-serif;
    margin-left: 10;
    margin-right: 10;
    color: Black;
    background-color: White;
}

/* Titles */

h1 {
    font-size: large;
    font-weight: bold;
    margin-top: 10;
    margin-bottom: 5;
}

h2 {
    font-size: large;
    font-weight: bold;
    margin-top: 10;
    margin-bottom: 5;
}

h3 {
    font-size: medium;
    font-weight: bold;
    margin-top: 10;
    margin-bottom: 5;
}

h4 {
    font-size: medium;
    font-weight: bold;
    margin-top: 10;
    margin-bottom: 5;
}
/* 
 * Use the h6 tag for the term in a glossary popup
 * topic. The term being defined is the heading for 
 * the topic.
 */
h6 {
    font-size: smaller;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10;
}

/* Paragraphs */

p  {
    font-size: 12px;
    margin-top: 5;
    margin-bottom: 5;
}

p.justify  {
    font-size: 12px;
    margin-top: 5;
    margin-bottom: 5;
    text-align: justify;
    text-justify: newspaper;
}

/* Lists */

li {margin-top: 0;
    margin-bottom: 5;
 }
        
li p{margin-top: 5;
     margin-bottom: 0}

/* Ordered lists */

ul {list-style-image:url(images/blue-ball-mid.gif);
    margin-top: 5;
    margin-bottom: 0;
    margin-left: 32;
}

ul li ul{list-style-image:url(images/blue-sqr-mid.gif);}

ul ul{list-style-image:url(images/blue-sqr-mid.gif)}

/* Numbered lists embedded in ordered lists */

ul li ol{list-style-image:none;
         list-style-type: decimal}

ul li ol li ol{list-style-type: lower-alpha}

ul li ol ol{list-style-type: lower-alpha}

ul ol{list-style-image:none;
      list-style-type: decimal}

ul ol li ol{list-style-type: lower-alpha}

ul ol ol{list-style-type: lower-alpha}

/* Graphics for notes and warnings */
ul.note {list-style-image:url(images/tip.gif);
     margin-top: 5;
     margin-bottom: 0;
     margin-left: 16;
}

ul.warning {list-style-image:url(images/warn.gif);
     margin-top: 5;
     margin-bottom: 0;
     margin-left: 16;
}

/* Numbered lists */

ol {list-style-type: decimal;
     margin-top: 5;
     margin-bottom: 0;
     margin-left: 22;
}

ol li ol{list-style-type: lower-alpha}

ol ol{list-style-type: lower-alpha}

/* Ordered lists embedded in Numbered lists */

ol li ul {list-style-image:url(images/blue-ball-mid.gif)}

ol li ul li ul {list-style-image:url(images/blue-sqr-mid.gif)}

ol li ul ul {list-style-image:url(images/blue-sqr-mid.gif)}

ol ul {list-style-image:url(images/blue-ball-mid.gif)}

ol ul li ul {list-style-image:url(images/blue-sqr-mid.gif)}

ol ul ul{list-style-image:url(images/blue-sqr-mid.gif)}

dl {margin-left: 0;
    margin-top: 10;
    margin-bottom: 5}

dt {font-size: 12px;
    font-style: normal;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
    text-indent: 0}

dd {font-size: 12px;
    font-style: normal;
    font-weight: normal;
    margin-top: 2;
    margin-left: 25}
        
table {
    border-style: solid;
    border-color: silver;
    margin-top: 5;
    margin-bottom: 5;
}

td {
    border-style: solid;
    border-color: silver;
    padding-left: 1;
    padding-right: 1;
    padding-top: 1;
    padding-bottom: 1;
}

th {
    border-style: solid;
    border-color: silver;
    padding-left: 1;
    padding-right: 1;
    padding-top: 1;
    padding-bottom: 1;
}

small {font-size: x-small}

/* Specific style for the Help section of Ancestris - Start */

h1.ancestris_help_title   {
    color: #000000;
    background: #ffffff;
    font-size: 14pt;
    font-weight: 900;
    text-decoration: underline;
    }

h1.section1   {
    color: #000000;
    background: #ffffff;
    font-size: 18pt;
    font-weight: 700;
    text-decoration: underline;
    }

h2.section1   {
    color: #000000;
    background: #ffffff;
    font-size: 15pt;
    font-weight: 700;
    text-decoration: underline;
    }

h2.ancestris_back_section   {
    color: #000000;
    background: #ffffff;
    font-size: 12pt;
    font-weight: 700;
    text-align: center;
    text-decoration: underline;
    }

h3.section1   {
    color: #000000;
    background: #ffffff;
    font-size: 12pt;
    font-weight: 700;
    text-decoration: underline;
    }

div.section1    {
    color: #000000;
    font-size: 9pt;
    font-weight: 400;
    margin-left: 10px;
    margin-right: 5px;
    text-align: justify;
    }

.ancestris_stop_tip {
    background-color:#abeee2;
    font-size: 11px;
}

.ancestris_info_image {
    color: #24006b;
    font-style: italic;
    font-size: 10px;
}

.featured {
    margin: 30px 0;
    padding: 7px 4px;
    border: 2px dotted #090;
    background: #e8fcd9;
    color: #333;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.code_citation {
    font-family: monospace;
    font-size: 7pt;
    margin: 20px 0;
    padding: 7px 4px;
    border: 2px dotted #090;
    background: #e5e5e5;
    color: #333;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

p.warning   {
    font-weight: bolder;
    color: red;
    background: white;
    }

.buttons a   {
  color: olive;
  background: white;
  text-decoration: none;
  font-size: 7pt;
  }

table.button_left {
  border-style: outset;
  border-width: 2px;
  font-size: 110%;
  background-color: #66ddbb;
  font-family: Arial,Helvetica,sans-serif;
  font-weight: bold;
  float: left;
  display: inline;
  margin-right: 5px;
  }

table.button_right {
  border-style: outset;
  border-width: 2px;
  font-size: 110%;
  background-color: #66ddbb;
  font-family: Arial,Helvetica,sans-serif;
  font-weight: bold;
  float: right;
  display: inline;
  margin-right: 5px;
  }

td.button {
  border-style: solid;
  border-color: #66ddbb;
  background-color: #b6ffb1;
  padding: -2px
 }

/* Specific style for the Help section of Ancestris - End */

Title: Ancestris

BIENVENUE DANS ANCESTRIS


Ancestris est un programme de généalogie écrit en langage Java. Il fonctionne sous les systèmes d'exploitation : Windows, Linux et Mac.
Ce logiciel est régi par les termes de la licence GNU/GPL qui définit les logiciels libres. Il respecte au plus près la norme GEDCOM, ce qui facilite le partage des données avec d'autres généalogistes.

Ancestris est un logiciel convivial et personnalisable, qui s'adapte à tous, débutants ou chercheurs expérimentés et exigeants.

Vous pourrez, créer vos fiches (familiales et individuelles), éditer des rapports (listes, éclair, statistiques...), stocker des informations multimédias (images, vidéos, ...). Vous pourrez réaliser votre livre familial, imprimer votre arbre ascendant ou descendant.
De plus, vous aurez à votre disposition de nombreuses extensions (plugins) telles, la vérification du format gedcom, la géolocalisation des événements de votre généalogie…
Sans quitter Ancestris, vous pourrez naviguer sur le net.

Un autre point fort d'Ancestris est la multiplicité de ses aides. Selon votre besoin du moment, vous préférerez l'aide intégrée (F1), l'aide du site (Wiki, collaboratif) ou une aide type "bible" à télécharger (un B.A-BA, régulièrement réactualisé par son auteur). S'il vous reste encore une interrogation vous pourrez échanger avec les autres utilisateurs grâce à la liste de discussion.

Si vous le souhaitez, vous pourrez faire évoluer Ancestris, en donnant, à tout moment, votre avis, vos idées (liste de discussion) ou en participant à son développement.


Toute l'équipe de développement d'Ancestris, vous souhaite une bonne généalogie.


Page précédente
Page suivante

---------------------------------------------------------------------
Sites Web Ancestris: http://www.ancestris.org et http://www.ancestris.com

Les archives de la liste sont disponibles sur ce site :
              http://www.mail-archive.com/[email protected]

<*> Pour vous desinscrire de cette liste, envoyez un mail a :
              [email protected]
<*> Pour obtenir de l'aide sur les commandes de la liste :
              [email protected]

Répondre à