Skip to content
Snippets Groups Projects
sended-resource-list.component.scss 1.86 KiB
Newer Older
  • Learn to ignore specific revisions
  • @import '../../css/vars.scss';
    
    
    .dateType {
        width: 100px;
        display: flex;
        flex-direction: column;
        font-size: 10px !important;
        justify-content: center;
        text-align: center;
    
        .type {
            .badge {
    
                overflow: hidden;
                text-overflow: ellipsis;
    
                font-size: 10px !important;
                color: white;
                font-weight: normal;
                width: 100px;
    
                border-radius: .25em;
    
            }
    
        }
    
        .date {
            opacity: 0.5;
        }
    }
    
    .desc {
        font-size: 13px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .error {
        color: red;
    }
    
    .success {
        color: green;
    }
    
    .contact {
        font-size: 10px;
        flex-direction: column;
        display: flex;
    }
    
    .filterTypes {
        overflow: auto;
        overflow-y: hidden;
        width: auto;
        max-width: 100%;
        margin-left: 10px;
    
        ::ng-deep.mat-button-toggle-checked {
            background: $secondary;
            color: white;
            font-weight: bold;
            height: 25px;
            font-size: 10px;
    
            .mat-button-toggle-label-content {
                line-height: 0px;
            }
    
            .mat-button-toggle-button {
                height: 100%;
            }
        }
    
        :not(::ng-deep.mat-button-toggle-checked) {
            ::ng-deep.mat-button-toggle-button {
                color: $primary;
                font-weight: bold;
                height: 25px;
                font-size: 10px;
    
                .mat-button-toggle-label-content {
                    line-height: 0px;
                }
            }
        }
    }
    
    .subinfo {
        padding: 5px;
        display: flex;
        font-size: 10px;
        opacity: 0.5;
        width: 100%;
    }
    
    .dataLine {
        transition: all 0.5s;
    
        &:hover {
            background: rgba($primary, 0.1);
            transition: all 0.5s;
        }
    }
    
    .attach {
        font-size: 13px;
        display: flex;
        padding: 5px;
        color: $primary;
    
        i {
            flex: 1;
            cursor: help;
        }
    }