| Index: ui/login/oobe.css
|
| diff --git a/ui/login/oobe.css b/ui/login/oobe.css
|
| index f124f899279c24eeb70eb5a208ea96625ce8b356..84720ee23a33fd7479197677cd28882385abe979 100644
|
| --- a/ui/login/oobe.css
|
| +++ b/ui/login/oobe.css
|
| @@ -34,15 +34,16 @@ button {
|
|
|
| /* Follow same focus coloring as in widgets.css */
|
| /* Do not apply this style to restricted button state. */
|
| -button.custom-appearance:not(.button-restricted):not(.button-fancy) {
|
| +button.custom-appearance:not(.button-restricted):not(.button-fancy):not(
|
| + [is="gaia-icon-button"]) {
|
| -webkit-transition: border-color 200ms;
|
| border: 1px solid transparent;
|
| /* Don't grey out disabled buttons. */
|
| color: buttontext !important;
|
| }
|
|
|
| -/* ':focus' used twice to increase specificity. */
|
| -button.custom-appearance:focus:focus {
|
| +/* ':focus' used three times to increase specificity. */
|
| +button.custom-appearance:focus:focus:focus {
|
| border-color: rgb(77, 144, 254);
|
| }
|
|
|
|
|