Bug 1421395 - change focus ring in console from gray dotted line to blue, change active input caret color to toolbar-checked-color. r=nchevobbe

MozReview-Commit-ID: 6fUAi4199Yb

--HG--
extra : rebase_source : a129539d28833ab097aa260615ab60698f7d1d80
This commit is contained in:
Kentaro Teramoto 2018-01-27 08:33:33 +09:00
parent b596b46b85
commit df454ec391
2 changed files with 12 additions and 2 deletions

View File

@ -16,10 +16,10 @@
}
#light-theme-focus:target ~ #light-theme {
fill: #4A90E2;
fill: #0060DF;
}
#dark-theme-focus:target ~ #dark-theme {
fill: #00FF7F;
fill: #75BFFF;
}
/* Unfocused states */

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -846,6 +846,16 @@ a.learn-more-link.webconsole-learn-more-link {
.webconsole-filterbar-primary .devtools-plaininput {
flex: 1 1 100%;
align-self: stretch;
margin-left: 1px;
padding-inline-start: 4px;
border: 1px solid transparent;
}
.devtools-plaininput:focus {
border: 1px solid var(--blue-50);
transition: all 0.2s ease-in-out;
outline: none;
}
.webconsole-filterbar-primary .filter-checkbox {