????

Your IP : 216.73.216.64


Current Path : C:/inetpub/vhost/redmine/public/themes/improved/src/sass/components/
Upload File :
Current File : C:/inetpub/vhost/redmine/public/themes/improved/src/sass/components/_messages.scss

/***************************************************************************************************
 *
 * Flash & error messages
 *
 */

#errorExplanation, div.flash, .nodata, .warning, .conflict {
    padding: 4px 4px 4px 30px;
    margin-bottom: 12px;
    font-size: 1.1em;
    border: 2px solid;
    border-radius: 3px;
}

div.flash {
    margin-top: 8px;

    &.error {
        // background: url(../../../images/exclamation.png) 8px 50% no-repeat;
	@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
    }
    &.notice {
        // background: url(../../../images/true.png) 8px 5px no-repeat;
	@include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
    }
    &.warning {
        // background: url(../../../images/warning.png) 8px 5px no-repeat;
        // text-align: left;
	@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
    }
}

#errorExplanation {
    background: url(../../../images/exclamation.png) 8px 50% no-repeat;
    background-color: #ffe3e3;
    border-color: #dd0000;
    color: #880000;
    ul {
        font-size: 0.9em;
    }
    h2, p {
        display: none;
    }
}

.conflict {
    background: url(../../../images/warning.png) 8px 5px no-repeat;
    background-color: #FFEBC1;
    border-color: #FDBF3B;
    color: #A6750C;
    text-align: left;
}

.conflict-details {
    font-size: 80%;
}

.nodata, .warning {
    text-align: center;
    background-color: #FFEBC1;
    border-color: #FDBF3B;
    color: #A6750C;
}