mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
[ACA-2140] improve search-results style
This commit is contained in:
parent
3423ba298d
commit
12a718d9cb
@ -41,10 +41,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.text--bold {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.content {
|
||||
@include flex-row;
|
||||
flex: unset;
|
||||
@ -59,14 +55,22 @@
|
||||
}
|
||||
}
|
||||
|
||||
.adf-datatable .adf-datatable-cell {
|
||||
padding-top: 9px;
|
||||
padding-bottom: 9px;
|
||||
min-height: auto;
|
||||
.adf-datatable {
|
||||
.adf-datatable-row {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.adf-datatable-cell-value {
|
||||
display: inline-block;
|
||||
padding-left: 0;
|
||||
.adf-datatable-cell {
|
||||
margin: 0 5px;
|
||||
padding-left: 5px;
|
||||
padding-top: 9px;
|
||||
padding-bottom: 9px;
|
||||
min-height: auto;
|
||||
|
||||
.adf-datatable-cell-value {
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,7 @@
|
||||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { Component, OnInit, ViewChild } from '@angular/core';
|
||||
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
|
||||
import { NodePaging, Pagination, MinimalNodeEntity } from '@alfresco/js-api';
|
||||
import { ActivatedRoute, Params, Router } from '@angular/router';
|
||||
import {
|
||||
@ -46,6 +46,7 @@ import { Observable } from 'rxjs';
|
||||
@Component({
|
||||
selector: 'aca-search-results',
|
||||
templateUrl: './search-results.component.html',
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
styleUrls: ['./search-results.component.scss']
|
||||
})
|
||||
export class SearchResultsComponent extends PageComponent implements OnInit {
|
||||
|
Loading…
x
Reference in New Issue
Block a user