Commit 505b49d1 authored by alemate's avatar alemate Committed by Commit bot

ChromeOS OOBE: make "System Security Settings" popup dialog backgroung gray.

This CL makes background style of "System Security Settings" look like
"Help App" background dialog that can be launched from the same UI.

BUG=604119,665752
CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation

Review-Url: https://codereview.chromium.org/2648623002
Cr-Commit-Position: refs/heads/master@{#445024}
parent 64321814
......@@ -333,9 +333,11 @@ cr.define('cr.ui.Oobe', function() {
if (loadTimeData.getString('newOobeUI') == 'on') {
$('oobe').setAttribute('md-mode', 'true');
$('oobe-shield').setAttribute('md-mode', 'true');
$('popup-overlay').setAttribute('md-mode', 'true');
} else {
$('oobe').removeAttribute('md-mode');
$('oobe-shield').removeAttribute('md-mode');
$('popup-overlay').removeAttribute('md-mode');
}
},
};
......
......@@ -17,6 +17,10 @@
z-index: 5;
}
#popup-overlay[md-mode] {
background: rgba(0, 0, 0, .5);
}
.oobe-popup {
background: white;
border: 1px solid rgb(188, 193, 208);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment