Comment 0 for bug 1481216

Revision history for this message
Nobuto Murata (nobuto) wrote : unreadable text color in confirmation dialog with ubuntu theme

The same symptom appeared as LP: #1308651.

When deleting an instance or other resources, confirmation dialog will be shown up. Background color and text color of confirm button are orange/orange. Firefox calculated css rules are as follows (color: #DD4814, background-color: #DD4814).

element {

}
a, a:link, a:visited {

    color: #DD4814;

}
.btn-primary {

    background: #DD4814 none repeat scroll 0% 0%;
    border-color: #C64012;

}
.btn-primary {

    color: #FFF;
    background-color: #428BCA;
    border-color: #357EBD;

}
.btn {

    display: inline-block;
    margin-bottom: 0px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857;
    border-radius: 4px;
    -moz-user-select: none;

}
<snip>