| 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 19 matching lines...) Expand all Loading... |
| 30 a.failing-builder { | 30 a.failing-builder { |
| 31 display: inline-block; | 31 display: inline-block; |
| 32 border: 1px solid Gray; | 32 border: 1px solid Gray; |
| 33 margin: 0 0 2px 0; | 33 margin: 0 0 2px 0; |
| 34 padding: 1px; | 34 padding: 1px; |
| 35 color: Black; | 35 color: Black; |
| 36 font-size: 11px; | 36 font-size: 11px; |
| 37 text-decoration: none; | 37 text-decoration: none; |
| 38 } | 38 } |
| 39 | 39 |
| 40 a.failing-builder>span.version { | 40 a.failing-builder > span.version { |
| 41 text-transform: uppercase; | 41 text-transform: uppercase; |
| 42 background-color: #555; | 42 background-color: #555; |
| 43 color: White; | 43 color: White; |
| 44 padding: 0 2px; | 44 padding: 0 2px; |
| 45 } | 45 } |
| 46 | 46 |
| 47 a.failing-builder>span.architecture { | 47 a.failing-builder > span.architecture { |
| 48 padding: 0 2px; | 48 padding: 0 2px; |
| 49 } | 49 } |
| 50 | 50 |
| 51 .effects a.failing-builder>span.architecture { | 51 .effects a.failing-builder > span.architecture { |
| 52 background-color: #555; | 52 background-color: #555; |
| 53 color: White; | 53 color: White; |
| 54 } | 54 } |
| 55 | 55 |
| 56 a.failing-builder>span.graphics { | 56 a.failing-builder > span.graphics { |
| 57 padding: 0 2px; | 57 padding: 0 2px; |
| 58 } | 58 } |
| 59 | 59 |
| 60 | 60 |
| 61 ul.failures { | 61 ul.failures { |
| 62 padding: 0px; | 62 padding: 0px; |
| 63 } | 63 } |
| 64 | 64 |
| 65 ul.failures>li { | 65 ul.failures > li { |
| 66 display: -webkit-box; | 66 display: -webkit-box; |
| 67 position: relative; | 67 position: relative; |
| 68 } | 68 } |
| 69 | 69 |
| 70 ul.failures>li label { | 70 ul.failures > li label { |
| 71 margin-left: 10px; | 71 margin-left: 10px; |
| 72 } | 72 } |
| 73 | 73 |
| 74 ul.failures>li ul.actions { | 74 ul.failures > li ul.actions { |
| 75 padding: 0px; | 75 padding: 0px; |
| 76 visibility: hidden; | 76 visibility: hidden; |
| 77 } | 77 } |
| 78 | 78 |
| 79 ul.failures>li:hover ul.actions { | 79 /* FIXME: This hover effect can't work on mobile. */ |
| 80 ul.failures > li:hover ul.actions { |
| 80 visibility: visible; | 81 visibility: visible; |
| 81 } | 82 } |
| OLD | NEW |