Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Angebotselemente

Folgende Angebotselemente können per CSS angesprochen werden:

TypAngebotselement
type1

Einleitung

type2

Abschluss

type3

Textbereich

type4

Produkt

type5

Leerzeile

type6

Trennlinie

type7Zwischensumme
type8Gesamtsumme netto
type9Gesamtsumme brutto
type10Mehrwertsteuer
type11Gruppensumme netto
type12Gruppensumme brutto
type13

Seitenumbruch

type14

Produkt-Details

type15

Produkt-Übersicht

type16

Summenrabatt

type17

Unterschrift

type18

Grafik

type19

Spaltenbezeichnungen


...

CSS-Klassen

Folgende Klassen sind z.B. im CSS-Stylesheet des Mandanten enthalten:

Code Block
languagecss
themeRDark
titleÜberschriften
linenumberstrue
collapsetrue
h1 {
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 24px;
  font-weight: lighter;
  line-height: 24px;
  color: #666666;
  padding: 0px 0px 10px 0px !important;
  margin: 0px !important;
}

h2 {
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 24px;
  font-weight: lighter;
  line-height: 28px;
  color: #666666;
  padding: 5px 0px 5px 0px !important;
}

h3 {
  font-size: 16px;
  line-height: 16px;
  color: #666666;
}


@media print {

  h1 {
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 24px;
    font-weight: lighter;
    line-height: 24px;
    color: #666666;
    padding: 0px 0px 10px 0px !important;
    margin: 0px !important;
  }

  h2 {
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 24px;
    font-weight: lighter;
    line-height: 28px;
    color: #ffffff;
    padding: 5px 0px 5px 0px !important;
  }

  h3 {
    font-size: 16px;
    line-height: 16px;
    color: #666666;
  }
  
}

...