Chromium Code Reviews| Index: ui/login/screen_container.css |
| diff --git a/ui/login/screen_container.css b/ui/login/screen_container.css |
| index 9a9177503d6ef95adec7a980da4fb9146826776d..176fdbb603730e2712dcab4485303df259726d9e 100644 |
| --- a/ui/login/screen_container.css |
| +++ b/ui/login/screen_container.css |
| @@ -23,7 +23,16 @@ |
| #pin-container { |
| opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */ |
| - transition: opacity 200ms ease-in-out; |
| +} |
| + |
| +#pin-container.pin-enabled { |
| + opacity: 1; |
| + transition: opacity 200ms ease-in-out 500ms; |
| +} |
| + |
| +#pin-container.pin-disabled { |
| + opacity: 0; |
|
jdufault
2016/06/15 22:20:39
Is this needed? It should get this value from #pin
sammiequon
2016/06/17 01:00:43
Done.
|
| + transition: none; |
| } |
| #scroll-container { |
| @@ -42,7 +51,6 @@ |
| #inner-container { |
| border-radius: 2px; |
| - padding: 0; |
| position: relative; |
| } |