Index: chrome/browser/resources/ntp_search/thumbnail_page.css |
diff --git a/chrome/browser/resources/ntp_search/thumbnail_page.css b/chrome/browser/resources/ntp_search/thumbnail_page.css |
deleted file mode 100644 |
index a4158f3116afd262df4c6b9e377dd906db81f20f..0000000000000000000000000000000000000000 |
--- a/chrome/browser/resources/ntp_search/thumbnail_page.css |
+++ /dev/null |
@@ -1,111 +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. */ |
- |
-/* ----------------------------------------------------------------------------- |
- Thumbnail Cell and Tile |
------------------------------------------------------------------------------ */ |
- |
-.thumbnail-page .tile-cell { |
- -webkit-margin-start: 12px; |
- height: 68px; |
- margin-bottom: 12px; |
- width: 110px; |
-} |
- |
-.thumbnail-page .tile { |
- background: #fff; |
- border: 1px solid rgb(192, 192, 192); |
- border-radius: 2px; |
- box-shadow: 0 1px 0 rgba(255, 255, 255, .7); |
- display: block; |
- height: 66px; |
- outline: none; /* Avoids outline glitch when blacklisting a thumbnail. */ |
- position: absolute; |
- width: 108px; |
-} |
- |
-.thumbnail-page .tile:hover, |
-.thumbnail-page .tile:hover .thumbnail-card { |
- /* TODO(pedrosimonetti): Confirm value with Marcin. */ |
- border-color: rgb(127, 127, 127); |
-} |
- |
-.thumbnail-page .tile-cell.filler .tile { |
- background: -webkit-linear-gradient(rgb(242, 242, 242), rgb(232, 232, 232)); |
- border-color: rgb(224, 224, 224); |
- border-radius: 3px; |
- box-shadow: inset 0 2px 3px rgba(0, 0, 0, .09); |
-} |
- |
-/* ----------------------------------------------------------------------------- |
- Thumbnail |
------------------------------------------------------------------------------ */ |
- |
-.thumbnail .thumbnail-image { |
- /* These values are equivalent to background-size: 100%. |
- TODO(jeremycho): Resolve the discrepancy with the cell dimensions above. */ |
- background-size: 110px 68px; |
-} |
- |
-.thumbnail .title, |
-.thumbnail-banner { |
- color: #777; |
- font-size: 0.9167em; |
- overflow: hidden; |
- position: absolute; |
- text-align: center; |
- text-overflow: ellipsis; |
- white-space: nowrap; |
- width: 100%; |
-} |
- |
-.thumbnail .title { |
- bottom: -26px; |
-} |
- |
-.thumbnail-banner { |
- bottom: 25px; |
- display: block; |
- font-size: 1.14em; |
- margin: 0 7px; |
- width: 88%; |
-} |
- |
-.thumbnail, |
-.thumbnail-wrapper, |
-.thumbnail-card { |
- -webkit-background-clip: padding-box; |
-} |
- |
-.thumbnail-wrapper { |
- display: block; |
- height: 100%; |
- overflow: hidden; |
- width: 100%; |
-} |
- |
-.thumbnail-favicon { |
- height: 16px; |
- margin: 0 auto; |
- position: relative; |
- top: -8px; |
- width: 16px; |
-} |
- |
-.thumbnail-card { |
- /* This gives a 3px offset between consecutive thumbnails on the stack and |
- should be kept in sync with RecentlyClosed's STACK_OFFSET. */ |
- -webkit-margin-start: -129px; |
- border: 1px solid silver; |
- border-radius: 2px; |
- display: inline-block; |
- height: 100%; |
- margin-top: -1px; |
- position: relative; |
- width: 100%; |
-} |
- |
-.thumbnail-card:first-child { |
- -webkit-margin-start: -1px; |
-} |