Files
alfresco-ng2-components/ng2-components/ng2-alfresco-upload/src/components/file-uploading-list.component.css
Denys Vuika 24363ef265 [ADF-571] upload feature rework (#1922)
* upload feature rework

lots of improvements for upload dialog and underlying services

* readme update

- readme cleanup
- remove some old comments from code
- update readme with new events for Upload Service

* restore prerequisites section in readme
2017-06-02 14:05:55 +01:00

82 lines
1.3 KiB
CSS

.mdl-data-table {
width: 100%;
border: 0px;
}
.center {
text-align: center;
}
.body-dialog-header {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
background-color: #f5f5f5;
border-bottom: solid 1px #eee;
height: 30px;
line-height: 30px;
}
.body-dialog-action {
-webkit-flex: 1 1 auto;
flex: 1 1 auto;
overflow: hidden;
padding: 0 18px;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: break-word;
}
.body-dialog-cancel {
-webkit-flex: none;
flex: none;
display: inline;
padding-right: 13px;
text-align: right;
}
.action-icons {
text-align: center;
width: 100%;
}
.cancel-upload-button {
cursor: pointer;
}
.file-progress-spinner {
height: 24px;
width: 100%;
text-align: center;
}
.full-width {
width: 100%;
}
.ellipsis-cell .cell-container {
height: 1em;
}
/* visible content */
.ellipsis-cell .cell-value {
display: block;
position: absolute;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1em; /* for vertical align of text */
}
/* cell stretching content */
.ellipsis-cell > div:after {
content: attr(title);
overflow: hidden;
height: 0;
display: block;
}