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 22 matching lines...) Expand all Loading... | |
33 padding: 0; | 33 padding: 0; |
34 margin: 0; | 34 margin: 0; |
35 } | 35 } |
36 | 36 |
37 ol.notifications ul { | 37 ol.notifications ul { |
38 list-style: none; | 38 list-style: none; |
39 padding: 0; | 39 padding: 0; |
40 } | 40 } |
41 | 41 |
42 ol.notifications>li { | 42 ol.notifications>li { |
43 display: -webkit-box; | 43 display: flex; |
44 flex-wrap: wrap; | |
44 position: relative; | 45 position: relative; |
45 width: 100%; | 46 width: 100%; |
46 padding: 10px; | 47 padding: 10px; |
47 box-sizing: border-box; | 48 box-sizing: border-box; |
48 border-top: 1px solid Gray; | 49 border-top: 1px solid Gray; |
49 } | 50 } |
50 | 51 |
51 ol.notifications div.how { | 52 ol.notifications div.how { |
52 width: 350px; | 53 width: 350px; |
53 } | 54 } |
54 | 55 |
55 ol.notifications time { | 56 ol.notifications time { |
56 display: block; | 57 display: block; |
57 color: #888; | 58 color: #888; |
58 padding: 0 0 20px 0; | 59 padding: 0 0 20px 0; |
59 } | 60 } |
60 | 61 |
61 ol.notifications div.what { | 62 ol.notifications div.what { |
62 display: -webkit-box; | 63 display: -webkit-box; |
63 -webkit-box-orient: vertical; | 64 box-orient: vertical; |
ojan
2014/03/20 19:47:27
I don't think we expose an unprefixed box-orient.
| |
64 padding: 0 0 0 10px; | 65 padding: 0 0 0 10px; |
65 -webkit-box-flex: 1; | 66 flex: 1; |
66 } | 67 } |
67 | 68 |
68 ol.notifications>li div.what ul.effects>li.builder { | 69 ol.notifications>li div.what ul.effects>li.builder { |
69 display: inline; | 70 display: inline; |
70 padding-right: 5px; | 71 padding-right: 5px; |
71 } | 72 } |
72 | 73 |
73 ol.notifications ul.causes>li, ol.notifications div.problem { | 74 ol.notifications ul.causes>li, ol.notifications div.problem { |
74 display: -webkit-box; | 75 display: -webkit-box; |
75 } | 76 } |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
231 background-color: #bfdfff; | 232 background-color: #bfdfff; |
232 } | 233 } |
233 | 234 |
234 ol.notifications table.failures tbody tr.IMAGE td:first-child span { | 235 ol.notifications table.failures tbody tr.IMAGE td:first-child span { |
235 background-color: #69f; | 236 background-color: #69f; |
236 } | 237 } |
237 | 238 |
238 ol.notifications table.failures tbody tr.IMAGE\+TEXT td:first-child span { | 239 ol.notifications table.failures tbody tr.IMAGE\+TEXT td:first-child span { |
239 background-color: #96f; | 240 background-color: #96f; |
240 } | 241 } |
OLD | NEW |