.parrots-triggers-table-row {
    display: flex; 
    width: 100%; 
    height: 100%; 
    cursor: pointer;
    .row-cron {
        display: flex; 
        width: 18%; 
        height: 100%; 
        justify-content: center; 
        align-items: center;  
        .material-text-box {
            width: 70pt;
        }
    }
    .row-icon-del {
        display: flex; 
        cursor: pointer;
        width: 10%; 
        height: 100%; 
        justify-content: center; 
        align-items: center;  
        &:before {  
            content: "g";
            font-family: 'PhloxGlyphicons';
            font-size: 11pt; 
        } 
        &:hover {  
            color: @CLR_BRAND;
        } 
    } 
}

.no-click {
    cursor: unset !important;
}