Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1797)

Unified Diff: Tools/GardeningServer/styles/notifications.css

Issue 405843002: Delete garden-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update run_unittests.html Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/GardeningServer/styles/main.css ('k') | Tools/GardeningServer/styles/onebar.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/styles/notifications.css
diff --git a/Tools/GardeningServer/styles/notifications.css b/Tools/GardeningServer/styles/notifications.css
deleted file mode 100644
index 00144971f2f1a3887dd4c547b969d85596f83a11..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/styles/notifications.css
+++ /dev/null
@@ -1,235 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-/* FIXME: This should really be in actions.css. */
-ul.actions > li {
- display: inline-block;
-}
-
-ol.notifications {
- list-style: none;
- padding: 0;
- margin: 0;
-}
-
-ol.notifications ul {
- list-style: none;
- padding: 0;
-}
-
-ol.notifications > li {
- display: flex;
- flex-wrap: wrap;
- position: relative;
- width: 100%;
- padding: 10px;
- box-sizing: border-box;
- border-top: 1px solid Gray;
-}
-
-ol.notifications div.how {
- width: 350px;
-}
-
-ol.notifications div.what {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- padding: 0 0 0 10px;
- flex: 1;
-}
-
- ol.notifications > li div.what ul.effects > li.builder {
- display: inline;
- padding-right: 5px;
- }
-
-ol.notifications ul.causes > li, ol.notifications div.problem {
- display: -webkit-box;
-}
-
-ol.notifications ul.causes div.description, ol.notifications div.problem ul.effects {
- -webkit-box-flex: 1;
-}
-
-ol.notifications > li div.problem {
- padding-bottom: 10px;
-}
-
- ol.notifications > li div.problem > ul.actions {
- visibility: hidden;
- }
-
- ol.notifications > li:hover div.problem > ul.actions {
- visibility: visible;
- }
-
- ol.notifications > li table.failures {
- opacity: 0.2;
- -webkit-transition: opacity 0.5s;
- }
-
- ol.notifications > li:hover table.failures {
- opacity: 1;
- }
-
-ol.notifications > li ul.causes > li > ul.actions {
-}
-
- ol.notifications > li ul.causes > li > div.description {
- padding: 0 10px 5px 0;
- display: -webkit-box;
- }
-
- ol.notifications > li ul.causes > li > div.description > a {
- padding: 5px 10px 5px 10px;
- margin: -5px 10px -2px 0;
- border-radius: 4px;
- display: inline-block;
- }
-
- ol.notifications > li ul.causes > li:hover > div.description > a {
- background-color: #555;
- color: White;
- }
-
- ol.notifications > li ul.causes > li:hover > div.description > a::after {
- content: '';
- width: 0;
- height: 0;
- margin-top: 5px;
- position: absolute;
- margin-left: 10px;
- border-top: 5px solid White;
- border-left: 5px solid #555;
- border-bottom: 5px solid White;
- }
-
- ol.notifications > li ul.causes > li > div.description > span {
- padding: 0 10px 0 0;
- display: block;
- cursor: default;
- pointer-events: none;
- -webkit-box-flex: 1;
- }
-
- ol.notifications > li ul.causes > li > div.description > span > span.author {
- padding: 0 0 0 5px;
- font-style: italic;
- }
-
- ol.notifications > li ul.causes > li > div.description > span > span.reviewer {
- color: Gray;
- }
-
- ol.notifications > li ul.causes > li > div.description > span > span.bugID::before {
- content: '[bug ';
- padding-left: 8px;
- }
-
- ol.notifications > li ul.causes > li > div.description > span > span.bugID::after {
- content: ']';
- }
-
- ol.notifications > li ul.causes > li > div.description > span > span.bugID > a {
- cursor: hand;
- pointer-events: auto;
- }
-
- ol.notifications > li ul.causes > li > div.description > span > span.reviewer::before {
- content: ' (';
- }
-
- ol.notifications > li ul.causes > li > div.description > span > span.reviewer::after {
- content: ')';
- }
-
- ol.notifications > li ul.causes > li > ul.actions {
- visibility: hidden;
- }
-
- ol.notifications > li ul.causes > li:hover > ul.actions {
- visibility: visible;
- }
-
- ol.notifications > li ul.causes > li li {
- padding: 10px 0 0 0;
- display: inline;
- }
-
-ol.notifications table.failures {
- border-collapse: collapse;
- table-layout: fixed;
- font-size: 11px;
- width: 350px;
-}
-
- ol.notifications table.failures thead tr td:first-child {
- visibility: hidden;
- }
-
- ol.notifications table.failures tbody tr {
- border-top: 1px solid #eee;
- }
-
- ol.notifications table.failures tbody td:first-child {
- width: 20%;
- }
-
- ol.notifications table.failures tbody td {
- width: 40%;
- padding: 2px;
- }
-
- ol.notifications table.failures tbody tr td:first-child {
- vertical-align: top;
- }
-
- ol.notifications table.failures tbody tr td:first-child span {
- padding: 0 2px;
- }
-
- ol.notifications table.failures tbody tr.TIMEOUT td:first-child span {
- background-color: #fffc6c;
- }
-
- ol.notifications table.failures tbody tr.TEXT td:first-child span {
- background-color: #e98080;
- }
-
- ol.notifications table.failures tbody tr.CRASH td:first-child span {
- background-color: #ffc343;
- }
-
- ol.notifications table.failures tbody tr.AUDIO td:first-child span {
- background-color: #bfdfff;
- }
-
- ol.notifications table.failures tbody tr.IMAGE td:first-child span {
- background-color: #69f;
- }
-
- ol.notifications table.failures tbody tr.IMAGE\+TEXT td:first-child span {
- background-color: #96f;
- }
« no previous file with comments | « Tools/GardeningServer/styles/main.css ('k') | Tools/GardeningServer/styles/onebar.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698