/****************************************** — TABLE — ******************************************/ /* Color of log level */ .tableLog .logInfo { color: yellow;} .tableLog .logWarn { color: orange;} .tableLog .logError { color: red;} .logMuck { color: green;} /* Apply word-break */ .tableLog { word-break: break-word; } /* Jede zweite Tabellenzeile formatieren */ .tableLog tr:nth-child(even) { background:rgba(56,46,67,0.1); } /* Rand unterhalb Tabellenüberschrift setzen */ .tableLog .mdc-data-table__header-row { border-bottom: 1px solid #434343; } /* Zeilenhöhe und Abstände definieren */ .tableLog .mdc-data-table__cell { line-height:1.3em; padding-top: 6px; padding-bottom: 6px; } /* Scrollbar */ .tableLog::-webkit-scrollbar { width: 5px; } .tableLog::-webkit-scrollbar-track { background: transparent; } .tableLog::-webkit-scrollbar-thumb { background-color: rgba(63,64,71,1); border-radius: 7px; border-color: rgba(63,64,71,1); } .tableLog::-webkit-scrollbar-thumb:hover { background: #8f8f8f; }