UNPKG

ace-customizer-lib

Version:

ACE knowledge platform scripts

94 lines (78 loc) 1.4 kB
/** * Table search application styles * Author: Jannik Maag, Telia Company * Date: 30 May 2021 * License: MIT */ .ts-table p { margin: unset; padding: unset; } .ts-table thead tr { background-color: #9908E2; color: #ffffff; text-align: left; position: sticky; top: 1px; } .ts-table th, .ts-table td { padding: 12px 15px; } .ts-table tr { border-bottom: thin solid #dddddd; } .ts-table tr:nth-of-type(even) { background-color: #f3f3f3; } .ts-table tr:last-of-type { border-bottom: 3px solid #9908E2; } .ts--is-flex { display: flex; } .ts-list__item { margin: 20px 0px; list-style-type: none; } .ts-list__item--underlined { border-bottom: 1px solid #edecea; padding-bottom: 4px; margin-bottom: 4px; font-weight: 600; } .ts-input { padding: 10px 15px; font-size: 16px; width: 100%; } /* Error message to show when table is not found */ .ts-error { color: rgb(235, 0, 0); font-weight: 700; font-size: 16px; } .ts-input__wrapper { max-width: 100%; min-width: 400px; position: relative; } .ts-input__wrapper--margin-below { margin-bottom: 20px; } .ts-button { padding: 0 10px; height: 44px; cursor: pointer; margin-left: 10px; } .ts-container { margin-top: 10px; border: 1px solid; border-radius: 2px; padding: 0 15px; z-index: 1; background: white; width: 100%; position: absolute; }