/* Actions */ .actions { display: flex; } .actions-form { display: flex; margin-left: 35px; } .actions-form > * { margin: 0 5px; } .actions-select { width: 150px; } /* Action block */ .divider { opacity: 0.2; } .action-block { padding-left: 17px; } .action-block-delete { color: #d9534f; } .action-block-view { color: #5bc0de; } .action-block-edit { color: #0275d8; } .action-block-delete:hover { color: #c9302c; } .action-block-view:hover { color: #31b0d5; } .action-block-edit:hover { color: #025aa5; } /* Button */ .btn { cursor: pointer; } .btn-sm { margin-right: 5px; } .btn-min:last-child { margin-right: 0; } .btn-margin-bottom { margin-bottom: 5px } /* Table */ .table-header { margin: 15px 0; display: flex; align-items: center; justify-content: space-between; } .table-title { font-weight: 300; font-size: 24px; } .table-item:not(:last-child) { margin-bottom: 30px; } .table-wrap { max-height: 300px; max-width: 100%; overflow-x: auto; } .table-custom { min-width: 800px; table-layout: fixed; word-wrap: break-word; } .table-custom thead th:last-child, .table-custom tbody tr td:last-child { text-align: right; } .table-custom a { overflow: hidden; /*text-overflow: ellipsis;*/ display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; /* number of lines to show */ line-height: 25px; /* fallback */ max-height: 25px; /* fallback */ font-size: 12px; } .table-custom tbody { overflow: auto; height: 300px; } .container-max { max-width: 1300px; } td[data-col="action"] { display: flex; justify-content: flex-end; } /* Loading */ .loading { display: none; position: fixed; width: 100%; height: 100%; background: rgba(0,0,0,.5); top: 0; z-index: 9999; } .loading-content { display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; } .loading i { font-size: 1.5em; color: #fff; } /* modal */ .modal-dialog { width: 100%; max-width: 100%; margin: 0; } .modal-content code { height: 100vh; } .modal-body { padding: 0; } .modal-close { position: absolute; color: #fff; right: 30px; top: 15px; } .modal-close:hover { color: #fff; }