mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-18 12:27:15 +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
68 lines
1.2 KiB
SCSS
68 lines
1.2 KiB
SCSS
.entity-page-main {
|
|
&-header {
|
|
&__content {
|
|
&--without-breadcrumbs {
|
|
padding-top: item-spacing(3);
|
|
}
|
|
|
|
&--with-breadcrumbs {
|
|
padding-top: item-spacing(3);
|
|
}
|
|
|
|
.wherehows-entity-header-title {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
&__properties-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding-bottom: item-spacing(3);
|
|
margin-top: item-spacing(3);
|
|
width: 100%;
|
|
|
|
> .wherehows-entity-header-property {
|
|
flex-basis: 50%;
|
|
}
|
|
}
|
|
|
|
&__property-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__field-value-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
&-item {
|
|
&:after {
|
|
content: ',';
|
|
margin-right: 5px;
|
|
margin-left: -3px;
|
|
}
|
|
|
|
&:last-child:after {
|
|
content: '';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.entity-tab-container {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.entity-page-component {
|
|
&--top-spacing {
|
|
padding-top: item-spacing(6);
|
|
}
|
|
}
|
|
|
|
// TODO META-11859 Standardize Margin/Padding for Social Actions
|
|
.social-metadata-container {
|
|
margin-top: 0;
|
|
margin-bottom: item-spacing(3);
|
|
}
|
|
}
|