/** * @file * Visual styles for Bootstrap Barrio's system messages. */ .alert-success { color: white; background-color: #00c851; border-color: #007e33; } .alert-success::before { display: inline-block; content: ""; background-image: url('data:image/svg+xml,'); background-repeat: no-repeat; -webkit-background-size: 1.5rem 1.5rem; background-size: 1.5rem 1.5rem; background-position: 0 0.4rem; width: 1.75rem; height: 1.75rem; } .alert-warning { color: white; background-color: #ffbb33; border-color: #ff8800; } .alert-warning::before { display: inline-block; content: ""; background-image: url('data:image/svg+xml,'); background-repeat: no-repeat; -webkit-background-size: 1.5rem 1.5rem; background-size: 1.5rem 1.5rem; background-position: 0 0.4rem; width: 1.75rem; height: 1.75rem; } .alert-danger::before { display: inline-block; content: ""; background-image: url('data:image/svg+xml,'); background-repeat: no-repeat; -webkit-background-size: 1.5rem 1.5rem; background-size: 1.5rem 1.5rem; background-position: 0 0.4rem; width: 1.75rem; height: 1.75rem; } .alert-danger { color: white; background-color: #ff4444; border-color: #cc0000; } .alert-dismissible .btn-close { opacity: 0.6; }