| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 #supervised-user-learn-more { | 5 #supervised-user-learn-more { |
| 6 display: flex; |
| 7 flex-direction: column; |
| 6 width: 722px; | 8 width: 722px; |
| 7 } | 9 } |
| 8 | 10 |
| 9 #supervised-user-learn-more-title { | 11 #supervised-user-learn-more-title { |
| 10 padding: 20px; | 12 padding: 20px; |
| 11 } | 13 } |
| 12 | 14 |
| 13 #supervised-user-learn-more-text { | 15 #supervised-user-learn-more-text { |
| 14 padding: 0 20px 0 20px; | 16 padding: 0 20px 0 20px; |
| 15 white-space: pre-wrap; | 17 white-space: pre-wrap; |
| 16 word-wrap: break-word; | 18 word-wrap: break-word; |
| 17 } | 19 } |
| 18 | 20 |
| 19 @media only screen and (max-height:500px) { | 21 @media only screen and (max-height:500px) { |
| 20 | 22 |
| 21 /* Omit the image on very small screens. */ | 23 /* Omit the image on very small screens. */ |
| 22 #supervised-user-learn-more-image { | 24 #supervised-user-learn-more-image { |
| 23 display: none; | 25 display: none; |
| 24 } | 26 } |
| 25 | 27 |
| 26 } /* @media only screen and (max-height:500px) */ | 28 } /* @media only screen and (max-height:500px) */ |
| 27 | 29 |
| 28 #supervised-user-learn-more-image { | 30 #supervised-user-learn-more-image { |
| 29 -webkit-border-radius: 3px 3px 0 0; | 31 -webkit-border-radius: 3px 3px 0 0; |
| 30 background-image: -webkit-image-set( | 32 background-image: -webkit-image-set( |
| 31 url(../../../../ui/resources/default_100_percent/supervised_illustration_s
tart.png) 1x, | 33 url(../../../../ui/resources/default_100_percent/supervised_illustration_s
tart.png) 1x, |
| 32 url(../../../../ui/resources/default_200_percent/supervised_illustration_s
tart.png) 2x); | 34 url(../../../../ui/resources/default_200_percent/supervised_illustration_s
tart.png) 2x); |
| 33 background-position: center; | 35 background-position: center; |
| 34 flex: 1; | |
| 35 height: 344px; | 36 height: 344px; |
| 36 } | 37 } |
| 37 | 38 |
| 38 #supervised-user-learn-more-action-area { | 39 #supervised-user-learn-more-action-area { |
| 39 padding: 20px; | 40 padding: 20px; |
| 40 } | 41 } |
| OLD | NEW |