mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-13 01:48:33 +00:00

* Releases updated version of datahub-web client UI code * Fix typo in yarn lock * Change yarn lock to match yarn registry directories * Previous commit missed some paths * Even more changes to yarnlock missing in previous commit * Include codegen file for typings * Add files to get parity for datahub-web and current OS datahub-midtier * Add in typo fix from previous commit - change to proper license * Implement proper OS fix for person entity picture url * Workarounds for open source DH issues * Fixes institutional memory api and removes unopensourced tabs for datasets * Fixes search dataset deprecation and user search issue as a result of changes * Remove internal only options in the avatar menu
76 lines
1.4 KiB
SCSS
76 lines
1.4 KiB
SCSS
$change-log-table-border-color: #e0e0e0;
|
|
|
|
table.change-log-table {
|
|
border: 1px solid $change-log-table-border-color;
|
|
}
|
|
.change-log-table {
|
|
$created-by-column-width: 124px;
|
|
$date-column-width: 148px;
|
|
$subject-column-width: 450px;
|
|
$notification-status-column-width: 160px;
|
|
$general-line-height: 20px;
|
|
$general-font-size: fs(standard);
|
|
$title-font-size: 20px;
|
|
|
|
font-size: $general-font-size;
|
|
&__global + div {
|
|
border: none;
|
|
}
|
|
&__title {
|
|
font-weight: bold;
|
|
font-size: $title-font-size;
|
|
line-height: $general-line-height + 8;
|
|
margin-bottom: item-spacing(1);
|
|
}
|
|
|
|
&__label {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
line-height: line-height;
|
|
margin-bottom: item-spacing(2);
|
|
}
|
|
|
|
thead {
|
|
border: none;
|
|
}
|
|
th.nacho-table__title,
|
|
td.nacho-table__cell {
|
|
background-color: white;
|
|
padding: item-spacing(2 5);
|
|
border-bottom: 1px solid $change-log-table-border-color;
|
|
font-size: $general-font-size;
|
|
}
|
|
|
|
&__created-by {
|
|
width: $created-by-column-width;
|
|
}
|
|
|
|
&__notification-status {
|
|
width: $notification-status-column-width;
|
|
}
|
|
|
|
&__subject {
|
|
width: $subject-column-width;
|
|
}
|
|
|
|
&__date {
|
|
width: $date-column-width;
|
|
}
|
|
|
|
&__actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&__actions-button {
|
|
border: none;
|
|
color: get-color(blue7);
|
|
line-height: line-height;
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__footer {
|
|
@include nacho-table-footer();
|
|
}
|
|
}
|