OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 #popup { | 170 #popup { |
171 background-color: white; | 171 background-color: white; |
172 z-index: 1; | 172 z-index: 1; |
173 position: absolute; | 173 position: absolute; |
174 border: 3px solid grey; | 174 border: 3px solid grey; |
175 padding: 3px; | 175 padding: 3px; |
176 -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); | 176 -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); |
177 -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); | 177 -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); |
178 -webkit-border-radius: 5px; | 178 -webkit-border-radius: 5px; |
179 -moz-border-radius: 5px; | 179 -moz-border-radius: 5px; |
| 180 white-space: nowrap; |
180 } | 181 } |
181 #popup > ul { | 182 #popup > ul { |
182 margin: 0; | 183 margin: 0; |
183 padding-left: 20px; | 184 padding-left: 20px; |
184 } | 185 } |
185 .expectations-container { | 186 .expectations-container { |
186 overflow: hidden; | 187 overflow: hidden; |
187 margin-bottom: 10px; | 188 margin-bottom: 10px; |
188 } | 189 } |
189 .expectations-item { | 190 .expectations-item { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 display: inline-block; | 253 display: inline-block; |
253 white-space: nowrap; | 254 white-space: nowrap; |
254 } | 255 } |
255 .skipped-builder:after { | 256 .skipped-builder:after { |
256 content: '|'; | 257 content: '|'; |
257 margin: 5px; | 258 margin: 5px; |
258 } | 259 } |
259 .skipped-builder:last-child:after { | 260 .skipped-builder:last-child:after { |
260 content: ''; | 261 content: ''; |
261 } | 262 } |
OLD | NEW |