| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 width: 100%; | 46 width: 100%; |
| 47 padding: 10px; | 47 padding: 10px; |
| 48 box-sizing: border-box; | 48 box-sizing: border-box; |
| 49 border-top: 1px solid Gray; | 49 border-top: 1px solid Gray; |
| 50 } | 50 } |
| 51 | 51 |
| 52 ol.notifications div.how { | 52 ol.notifications div.how { |
| 53 width: 350px; | 53 width: 350px; |
| 54 } | 54 } |
| 55 | 55 |
| 56 ol.notifications time { | |
| 57 display: block; | |
| 58 color: #888; | |
| 59 padding: 0 0 20px 0; | |
| 60 } | |
| 61 | |
| 62 ol.notifications div.what { | 56 ol.notifications div.what { |
| 63 display: -webkit-box; | 57 display: -webkit-box; |
| 64 -webkit-box-orient: vertical; | 58 -webkit-box-orient: vertical; |
| 65 padding: 0 0 0 10px; | 59 padding: 0 0 0 10px; |
| 66 flex: 1; | 60 flex: 1; |
| 67 } | 61 } |
| 68 | 62 |
| 69 ol.notifications > li div.what ul.effects > li.builder { | 63 ol.notifications > li div.what ul.effects > li.builder { |
| 70 display: inline; | 64 display: inline; |
| 71 padding-right: 5px; | 65 padding-right: 5px; |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 background-color: #bfdfff; | 226 background-color: #bfdfff; |
| 233 } | 227 } |
| 234 | 228 |
| 235 ol.notifications table.failures tbody tr.IMAGE td:first-child span { | 229 ol.notifications table.failures tbody tr.IMAGE td:first-child span { |
| 236 background-color: #69f; | 230 background-color: #69f; |
| 237 } | 231 } |
| 238 | 232 |
| 239 ol.notifications table.failures tbody tr.IMAGE\+TEXT td:first-child span { | 233 ol.notifications table.failures tbody tr.IMAGE\+TEXT td:first-child span { |
| 240 background-color: #96f; | 234 background-color: #96f; |
| 241 } | 235 } |
| OLD | NEW |