Files
alfresco-ng2-components/ng2-components/ng2-alfresco-upload/src/components/file-uploading-list-row.component.scss
Cilibiu Bogdan 1ed56460cc [ADF-924] Upload Component enhancements (#2115)
* changed logic/design

* restored dialog component spec

* revert changes

* update upload dialog documentation

* public over private

* component close method
2017-08-01 10:20:33 +01:00

68 lines
1.3 KiB
SCSS

@import 'theming';
:host {
display: flex;
align-items: center;
padding: 0.5em 1em 0.5em 1em;
&:not(:first-child) {
border-top: 1px solid $alfresco-dark-color--hue-1;
}
.list-row {
cursor: default;
&__name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1 1 auto;
padding: 0 1em 0 0.5em;
}
&__group, &__block {
min-width: 200px;
display: flex;
justify-content: flex-end;
}
&__group--toggle {
cursor: pointer;
.list-row__status {
display: flex;
}
.list-row__action {
display: none;
}
&:hover {
.list-row__status {
display: none;
}
.list-row__action {
display: flex;
}
}
}
&__status--done {
color: $alfresco-secondary-accent--default;
}
&__status--error {
color: $alfresco-warn-color--default;
}
&__action--cancel {
color: $alfresco-warn-color--default;
}
&__action--remove {
color: $alfresco-secondary-accent--default;
}
}
}