remove >>> in favor of ::ng-deep

fix license check
This commit is contained in:
Eugenio Romano
2017-10-09 15:51:07 +01:00
parent 6d9bbcbf32
commit 4617a3b1cf
14 changed files with 71 additions and 19 deletions

View File

@@ -1,3 +1,3 @@
adf-create-process-attachment >>> button {
adf-create-process-attachment ::ng-deep button {
float: right;
}

View File

@@ -1,3 +1,3 @@
adf-create-task-attachment >>> button {
adf-create-task-attachment ::ng-deep button {
float: right;
}

View File

@@ -1,10 +1,10 @@
adf-datatable >>> .custom-row-style.alfresco-datatable__row:focus {
adf-datatable ::ng-deep .custom-row-style.alfresco-datatable__row:focus {
outline-offset: -1px;
outline-width: 1px;
outline-color: green;
outline-style: solid;
}
adf-datatable >>> .custom-row-style.alfresco-datatable__row--selected {
adf-datatable ::ng-deep .custom-row-style.alfresco-datatable__row--selected {
color: green;
}

View File

@@ -1,3 +1,20 @@
/*!
* @license
* Copyright 2016 Alfresco Software, Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { AlfrescoApiService } from 'ng2-alfresco-core';

View File

@@ -22,19 +22,19 @@ $minimumDocumentListWidth: 425px;
height:900px;
}
adf-document-list >>> adf-datatable tr.is-selected .image-table-cell {
adf-document-list ::ng-deep adf-datatable tr.is-selected .image-table-cell {
position: relative;
}
adf-document-list >>> adf-datatable tr.document-list__create {
adf-document-list ::ng-deep adf-datatable tr.document-list__create {
background: green !important;
}
adf-document-list >>> adf-datatable tr.document-list__disable {
adf-document-list ::ng-deep adf-datatable tr.document-list__disable {
background: red !important;
}
adf-document-list >>> adf-datatable tr.is-selected .image-table-cell::before {
adf-document-list ::ng-deep adf-datatable tr.is-selected .image-table-cell::before {
content: "\E876"; /* "done" */
font-family: "Material Icons";
font-size: 24px;

View File

@@ -2,14 +2,14 @@
* @license
* Copyright 2016 Alfresco Software, Ltd.
*
* Licensed under the Apache License, Version 2.0 (the 'License');
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.

View File

@@ -35,6 +35,6 @@
}
}
.settings >>> .mat-slide-toggle-thumb-container {
.settings ::ng-deep .mat-slide-toggle-thumb-container {
cursor: pointer;
}

View File

@@ -1,3 +1,20 @@
/*!
* @license
* Copyright 2016 Alfresco Software, Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* tslint:disable */
import 'core-js/es6/reflect';

View File

@@ -1,3 +1,20 @@
/*!
* @license
* Copyright 2016 Alfresco Software, Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* tslint:disable */
// Angular

View File

@@ -76,7 +76,7 @@ module.exports = {
emitErrors: true,
licenseFile: path.resolve(__dirname, '../assets/license_header.txt')
},
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
exclude: [/theme-picker/]
}
]
},

View File

@@ -131,6 +131,7 @@
"karma-remap-istanbul": "0.6.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"loader-utils": "^1.1.0",
"node-sass": "4.5.3",
"null-loader": "0.1.1",
"raw-loader": "0.5.1",

View File

@@ -204,11 +204,11 @@ Let's start by assigning an "image-table-cell" class to the thumbnail column:
Now your application can define styles to change the content of the column based on conditions such as the selection state:
```css
adf-document-list >>> adf-datatable tr.is-selected .image-table-cell {
adf-document-list ::ng-deep adf-datatable tr.is-selected .image-table-cell {
position: relative;
}
adf-document-list >>> adf-datatable tr.is-selected .image-table-cell::before {
adf-document-list ::ng-deep adf-datatable tr.is-selected .image-table-cell::before {
content: "\E876"; /* "done" */
font-family: "Material Icons";
font-size: 24px;
@@ -238,11 +238,11 @@ You can hide columns on small screens using custom CSS rules:
```css
@media all and (max-width: 768px) {
alfresco-document-list >>> th.desktop-only .cell-value {
alfresco-document-list ::ng-deep th.desktop-only .cell-value {
display: none;
}
alfresco-document-list >>> td.desktop-only .cell-value {
alfresco-document-list ::ng-deep td.desktop-only .cell-value {
display: none;
}
}

View File

@@ -40,7 +40,7 @@ this.permissionsStyle.push(new PermissionStyleModel('document-list__create', Per
```
```css
adf-document-list >>> adf-datatable tr.document-list__create {
adf-document-list ::ng-deep adf-datatable tr.document-list__create {
background: green !important;
}
```
@@ -61,7 +61,7 @@ this.permissionsStyle.push(new PermissionStyleModel('document-list__disable', Pe
```
```css
adf-document-list >>> adf-datatable tr.document-list__disable {
adf-document-list ::ng-deep adf-datatable tr.document-list__disable {
background: red !important;
}
```

View File

@@ -25,7 +25,7 @@
text-transform: uppercase;
}
adf-people >>> .assignment-top-container{
adf-people ::ng-deep .assignment-top-container{
background-color: #fff;
}