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

Unified Diff: chrome/browser/resources/ntp_search/most_visited_page.css

Issue 12207138: Remove unused ntp_search. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
Index: chrome/browser/resources/ntp_search/most_visited_page.css
diff --git a/chrome/browser/resources/ntp_search/most_visited_page.css b/chrome/browser/resources/ntp_search/most_visited_page.css
deleted file mode 100644
index 04954f40939f8d1e3095793adaf86fd07acd099f..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/ntp_search/most_visited_page.css
+++ /dev/null
@@ -1,59 +0,0 @@
-/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
-.close-button {
- background: no-repeat;
- background-color: transparent;
- /* TODO(estade): this should animate between states. */
- background-image: -webkit-image-set(
- url('../../../../ui/resources/default_100_percent/close_bar.png') 1x,
- url('../../../../ui/resources/default_200_percent/close_bar.png') 2x);
- border: 0;
- cursor: default;
- display: inline-block;
- height: 16px;
- padding: 0;
- width: 16px;
- z-index: 999;
-}
-
-.close-button:hover,
-.close-button:focus {
- background-image: -webkit-image-set(
- url('../../../../ui/resources/default_100_percent/close_bar_hover.png')
- 1x,
- url('../../../../ui/resources/default_200_percent/close_bar_hover.png')
- 2x);
-}
-
-.close-button:active {
- background-image: -webkit-image-set(
- url('../../../../ui/resources/default_100_percent/close_bar_pressed.png')
- 1x,
- url('../../../../ui/resources/default_200_percent/close_bar_pressed.png')
- 2x);
-}
-
-/* TODO(pedrosimonetti): Organize these rules. */
-.thumbnail .close-button {
- -webkit-transition: opacity 500ms ease-in-out;
- opacity: 0;
- position: absolute;
- right: 2px;
- top: 2px;
-}
-
-html[dir=rtl] .thumbnail .close-button {
- left: 0;
- right: auto;
-}
-
-.thumbnail:hover .close-button {
- -webkit-transition-delay: 500ms;
- opacity: 1;
-}
-
-.thumbnail .close-button:hover {
- -webkit-transition: none;
-}

Powered by Google App Engine
This is Rietveld 408576698