| OLD | NEW |
| 1 .language-options { | 1 .language-options { |
| 2 display: -webkit-box; | 2 display: -webkit-box; |
| 3 margin: 10px 0; | 3 margin: 10px 0; |
| 4 } | 4 } |
| 5 | 5 |
| 6 .language-options-lower-left button, | 6 .language-options-lower-left button, |
| 7 .language-options-right button { | 7 .language-options-right button { |
| 8 min-width: 70px; | 8 min-width: 70px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 height: 400px; | 32 height: 400px; |
| 33 } | 33 } |
| 34 | 34 |
| 35 .language-options-left { | 35 .language-options-left { |
| 36 -webkit-box-orient: vertical; | 36 -webkit-box-orient: vertical; |
| 37 display: -webkit-box; | 37 display: -webkit-box; |
| 38 background-color: #ebeff9; | 38 background-color: #ebeff9; |
| 39 width: 300px; | 39 width: 300px; |
| 40 } | 40 } |
| 41 | 41 |
| 42 /* On OS X we use the native OS spellchecker, so don't display the dictionary */ | |
| 43 /* pane. */ | |
| 44 html[os=mac] .language-options-left { | |
| 45 background-color: white; | |
| 46 } | |
| 47 | |
| 48 html[os=mac] .language-options-right { | |
| 49 visibility: hidden; | |
| 50 } | |
| 51 | |
| 52 .language-options-lower-left { | 42 .language-options-lower-left { |
| 53 -webkit-box-flex: 0; | 43 -webkit-box-flex: 0; |
| 54 -webkit-padding-start: 12px; | 44 -webkit-padding-start: 12px; |
| 55 padding-bottom: 10px; | 45 padding-bottom: 10px; |
| 56 } | 46 } |
| 57 | 47 |
| 58 .language-options-right { | 48 .language-options-right { |
| 59 /* To share the center line with the left pane. */ | 49 /* To share the center line with the left pane. */ |
| 60 -webkit-margin-start: -1px; | 50 -webkit-margin-start: -1px; |
| 61 width: 360px; | 51 width: 360px; |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 220 |
| 231 button[disabled].text-button, | 221 button[disabled].text-button, |
| 232 button[disabled].text-button:active, | 222 button[disabled].text-button:active, |
| 233 button[disabled].text-button:focus, | 223 button[disabled].text-button:focus, |
| 234 button[disabled].text-button:hover { | 224 button[disabled].text-button:hover { |
| 235 -webkit-box-shadow: none; | 225 -webkit-box-shadow: none; |
| 236 background: transparent none; | 226 background: transparent none; |
| 237 border-color: transparent; | 227 border-color: transparent; |
| 238 color: #AAA; | 228 color: #AAA; |
| 239 } | 229 } |
| OLD | NEW |