Common.css

Revision as of 13:07, 2 September 2019 by Mlink-rodrigue (talk | contribs) (added flexbox styles)

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Korrektur der Darstellung von Tokens-Input-Feldern */
.inputSpan > .pfTokens > ul, .inputSpan > .pfTokens {
    margin: 0 0 0 0!important;
}

.tcontainer {
  display: flex;
  flex-wrap: wrap;
}

.tcontainer > * {
  flex: 1 1 calc(280px + 1em); /* 1em margin als Spaltenabstand berücksichtigt, calc() nicht notwendig */
}
.tcard {
  display: flex;
  flex-wrap: wrap;
  background: silver;
}

.tcard > * {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 280px;
}

.media {
  background: black;
  min-height: 280px;
}