| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 padding: 7px 15px; | 158 padding: 7px 15px; |
| 159 white-space: nowrap; | 159 white-space: nowrap; |
| 160 display: table; | 160 display: table; |
| 161 /* Set the height and margin so that the element does not use any vertical | 161 /* Set the height and margin so that the element does not use any vertical |
| 162 space */ | 162 space */ |
| 163 height: 16px; | 163 height: 16px; |
| 164 margin: -44px auto 12px auto; | 164 margin: -44px auto 12px auto; |
| 165 font-weight: bold; | 165 font-weight: bold; |
| 166 opacity: 0; | 166 opacity: 0; |
| 167 pointer-events: none; | 167 pointer-events: none; |
| 168 -webkit-transition: opacity .15s; | 168 -webkit-transition: opacity 150ms; |
| 169 z-index: 1; | 169 z-index: 1; |
| 170 color: black; | 170 color: black; |
| 171 } | 171 } |
| 172 | 172 |
| 173 #notification > * { | 173 #notification > * { |
| 174 display: table-cell; | 174 display: table-cell; |
| 175 max-width: 500px; | 175 max-width: 500px; |
| 176 overflow: hidden; | 176 overflow: hidden; |
| 177 text-overflow: ellipsis; | 177 text-overflow: ellipsis; |
| 178 } | 178 } |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 218 |
| 219 button[disabled].text-button, | 219 button[disabled].text-button, |
| 220 button[disabled].text-button:active, | 220 button[disabled].text-button:active, |
| 221 button[disabled].text-button:focus, | 221 button[disabled].text-button:focus, |
| 222 button[disabled].text-button:hover { | 222 button[disabled].text-button:hover { |
| 223 -webkit-box-shadow: none; | 223 -webkit-box-shadow: none; |
| 224 background: transparent none; | 224 background: transparent none; |
| 225 border-color: transparent; | 225 border-color: transparent; |
| 226 color: #AAA; | 226 color: #AAA; |
| 227 } | 227 } |
| OLD | NEW |