mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
95 lines
1.7 KiB
SCSS
95 lines
1.7 KiB
SCSS
$minimumDocumentListWidth: 425px;
|
|
|
|
.container {
|
|
margin: 10px;
|
|
}
|
|
|
|
@media only screen and (max-width: 640px) {
|
|
.container {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.error-message {
|
|
text-align: left;
|
|
}
|
|
|
|
.error-message--text {
|
|
color: #d50000;
|
|
}
|
|
|
|
.adf-not-overlay-viewer {
|
|
height:900px;
|
|
}
|
|
|
|
adf-document-list ::ng-deep adf-datatable tr.is-selected .image-table-cell {
|
|
position: relative;
|
|
}
|
|
|
|
adf-document-list ::ng-deep adf-datatable tr.document-list__create {
|
|
background: green !important;
|
|
}
|
|
|
|
adf-document-list ::ng-deep adf-datatable tr.document-list__disable {
|
|
background: red !important;
|
|
}
|
|
|
|
adf-document-list ::ng-deep adf-datatable tr.is-selected .image-table-cell::before {
|
|
content: "\E876"; /* "done" */
|
|
font-family: "Material Icons";
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
color: white;
|
|
position: absolute;
|
|
width: 32px;
|
|
height: 32px;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -16px;
|
|
margin-left: -12px;
|
|
border-radius: 100%;
|
|
background: #00bcd4;
|
|
}
|
|
|
|
.adf-demo-site-container-style {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
width: 100%;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.adf-content-service-settings {
|
|
padding: 16px;
|
|
}
|
|
|
|
.adf-files-toolbar {
|
|
.adf-toolbar-title {
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
.adf-breadcrumb {
|
|
width: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: $minimumDocumentListWidth) {
|
|
adf-document-list ::ng-deep adf-datatable {
|
|
& ::ng-deep .adf-data-table-cell--fileSize {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.adf-demo-site-container-style {
|
|
width: 100%;
|
|
display: block;
|
|
|
|
& ::ng-deep .adf-site-dropdown-list-element {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
|