Tab-Radius in FF 13 - Code fur userchrome funktioniert nicht

  • MoinMoin,


    ich hatte bisher FF 10.0.5esr benutzt und bin nun auf FF 13 umgestiegen. Soweit funktioniert auch alles. Ich hatte über die userchrome.css den Radius für die Tabs und für den New-Tab-Button angepasst. Bisher lief es mit folgenden Codes, die unter FF 13 aber nicht mehr greifen:

    CSS
    /* — Größe und Radius der Neuer Tab Schaltfläche anpassen — */
    .tabs-newtab-button {
    background: #ECEBE7!important;
    border: 1px solid #979797 !important;
    -moz-border-radius-topleft: 3px !important;
    -moz-border-radius-topright: 3px !important;
    margin-top: 0px !important;
    }


    CSS
    /* — Radius der Tabs ändern — */
    .tabbrowser-tab {
      -moz-border-radius-topleft: 3px !important;
      -moz-border-radius-topright: 3px !important;
      margin-top: 0px !important;
      margin-bottom: 0px !important; 
    }

    Könnt Ihr mir da helfen?

    Viele Grüße

    Vitos

  • Sorry, die ganze Bezeichnung muss jetzt geändert werden

    CSS
    /* — Radius der Tabs ändern — */
        .tabbrowser-tab {
          border-top-left-radius: 3px !important;
          border-top-right-radius: 3px !important;
          margin-top: 0px !important;
          margin-bottom: 0px !important;
        }


    CSS
    /* — Größe und Radius der Neuer Tab Schaltfläche anpassen — */
        .tabs-newtab-button {
        background: #ECEBE7!important;
        border: 1px solid #979797 !important;
        border-top-left-radius: 3px !important;
        border-top-right-radius: 3px !important;
        margin-top: 0px !important;
        }

    Teste das bitte mal.