diff --git a/ng2-components/ng2-alfresco-documentlist/README.md b/ng2-components/ng2-alfresco-documentlist/README.md index 28484ae493..79720a364e 100644 --- a/ng2-components/ng2-alfresco-documentlist/README.md +++ b/ng2-components/ng2-alfresco-documentlist/README.md @@ -116,7 +116,7 @@ _For a complete example source code please refer to [DocumentList Demo](https://github.com/Alfresco/alfresco-ng2-components/tree/master/ng2-components/ng2-alfresco-documentlist/demo) repository._ -## DOM Events +### DOM Events Below are the DOM events the DocumentList component emits. All of them are `bubbling`, meaning you can handle them in any component up the parent hierarchy, even if DocumentList is wrapped by another component(s). @@ -152,7 +152,7 @@ Here's a basic example on handling DOM events in the parent elements: ``` -## Setting default folder +### Setting default folder You can set current folder path by assigning a value for `currentFolderId` property. It can be either one of the well-known locations as **-root-**, **-shared-** or **-my-** or a node ID (guid). diff --git a/ng2-components/ng2-alfresco-documentlist/src/components/breadcrumb/breadcrumb.component.css b/ng2-components/ng2-alfresco-documentlist/src/components/breadcrumb/breadcrumb.component.css deleted file mode 100644 index 92e9fb5736..0000000000 --- a/ng2-components/ng2-alfresco-documentlist/src/components/breadcrumb/breadcrumb.component.css +++ /dev/null @@ -1,42 +0,0 @@ -/* breadcrumb */ - -:host .breadcrumb { - text-align: left; - padding: 8px 15px; - list-style: none; - background-color: #fafafa; - margin: 0; -} - -:host .breadcrumb > li { - display: inline-block; - box-sizing: border-box; -} - -:host .breadcrumb > li+li:before { - content: ">\00a0"; - padding: 0 0 0 5px; - opacity: 0.54; - color: #000000; -} - -:host .breadcrumb > li > a { - text-decoration: none; - opacity: 0.54; - font-family: 'Muli', "Helvetica", "Arial", sans-serif; - font-size: 14px; - font-weight: 600; - line-height: 1.43; - letter-spacing: -0.2px; - color: #000000; -} - -:host .breadcrumb > li:hover > a, -:host .breadcrumb > .active { - opacity: 0.87; - font-size: 14px; - font-weight: 600; - line-height: 1.43; - letter-spacing: -0.2px; - color: #000000; -}