Skip to content
Snippets Groups Projects
visa-workflow.component.scss 1.69 KiB
Newer Older
  • Learn to ignore specific revisions
  • .cdk-drag-preview {
        box-sizing: border-box;
        border-radius: 4px;
        box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
            0 8px 10px 1px rgba(0, 0, 0, 0.14),
            0 3px 14px 2px rgba(0, 0, 0, 0.12);
        background: white;
        padding: 10px;
        .mat-icon {
            display: none;
        }
    }
    
    .cdk-drag-placeholder {
        opacity: 0;
    }
    
    .cdk-drag-animating {
        transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
    }
    
    .columns:last-child {
        border: none;
    }
    
    .cdk-list.cdk-drop-list-dragging .columns:not(.cdk-drag-placeholder) {
        transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
    }
    
    .columns {
        cursor: move;
    }
    
    .notDraggable {
        cursor: not-allowed;
    }
    
    .notEditable {
        cursor: initial;
    
    }
    
    .currentContextButton{
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        width: 150px;
        text-align: left;
    }
    
    .currentRoleButton{
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        width: 120px;
        text-align: center;
    }
    
    .emptyContent {
        opacity: 0.5;
        text-align: center;
        font-size: 10px;
        padding: 10px;
    }
    
    .processed {
        background: rgba(0, 128, 0, 0.11);
    
    .workflow {
        height: auto !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    
    .workflowLine {
        display: flex !important;
        align-items: center;
    
        &Container {
            flex:1;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    
        &Label {
            text-overflow: ellipsis;
            overflow: hidden;
        }
    
        &SubLabel {
    
            font-size: 80%;
    
            opacity:0.5;
            flex: 1;
            text-overflow: ellipsis;
            overflow: hidden; 
        }
    
        &ProcessDate {
            flex: 1;
    
            text-align: left;
    
            font-size: 90%;
        }