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 {
|
.content {
|
||||||
@include flex-row;
|
@include flex-row;
|
||||||
flex: unset;
|
flex: unset;
|
||||||
@ -59,14 +55,22 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.adf-datatable .adf-datatable-cell {
|
.adf-datatable {
|
||||||
padding-top: 9px;
|
.adf-datatable-row {
|
||||||
padding-bottom: 9px;
|
padding: 0 15px;
|
||||||
min-height: auto;
|
}
|
||||||
|
|
||||||
.adf-datatable-cell-value {
|
.adf-datatable-cell {
|
||||||
display: inline-block;
|
margin: 0 5px;
|
||||||
padding-left: 0;
|
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/>.
|
* 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 { NodePaging, Pagination, MinimalNodeEntity } from '@alfresco/js-api';
|
||||||
import { ActivatedRoute, Params, Router } from '@angular/router';
|
import { ActivatedRoute, Params, Router } from '@angular/router';
|
||||||
import {
|
import {
|
||||||
@ -46,6 +46,7 @@ import { Observable } from 'rxjs';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'aca-search-results',
|
selector: 'aca-search-results',
|
||||||
templateUrl: './search-results.component.html',
|
templateUrl: './search-results.component.html',
|
||||||
|
encapsulation: ViewEncapsulation.None,
|
||||||
styleUrls: ['./search-results.component.scss']
|
styleUrls: ['./search-results.component.scss']
|
||||||
})
|
})
|
||||||
export class SearchResultsComponent extends PageComponent implements OnInit {
|
export class SearchResultsComponent extends PageComponent implements OnInit {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user