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

Unified Diff: chrome/browser/resources/ntp_search/new_tab.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
« no previous file with comments | « chrome/browser/resources/ntp_search/nav_dot.js ('k') | chrome/browser/resources/ntp_search/new_tab.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ntp_search/new_tab.css
diff --git a/chrome/browser/resources/ntp_search/new_tab.css b/chrome/browser/resources/ntp_search/new_tab.css
deleted file mode 100644
index 1e4da1f4f0eb6e7933f1370273bc6a63e58aa51d..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/ntp_search/new_tab.css
+++ /dev/null
@@ -1,147 +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. */
-
-/* -----------------------------------------------------------------------------
- General Styles
------------------------------------------------------------------------------ */
-
-html {
- /* It's necessary to put this here instead of in body in order to get the
- background-size of 100% to work properly */
- height: 100%;
- overflow: hidden;
-}
-
-body {
- /* Don't highlight links when they're tapped. Safari has bugs here that
- show up as flicker when dragging in some situations */
- -webkit-tap-highlight-color: transparent;
- /* Don't allow selecting text - can occur when dragging */
- -webkit-user-select: none;
- background-size: auto 100%;
- /* TODO(pedrosimonetti): Confirm with designers/engineers what do we want
- * to do regarding font family, once AFAIK we want to use Arial always. */
- font-family: Arial;
- margin: 0;
- overflow: hidden;
- padding: 0;
-}
-
-/* [hidden] does display:none, but its priority is too low in some cases. */
-[hidden] {
- display: none !important;
-}
-
-#notification-container {
- height: 18px;
- padding: 10px 0;
-}
-
-#notification {
- display: inline-block;
- font-weight: bold;
- white-space: nowrap;
-}
-
-#notification > div > div,
-#notification > div {
- display: inline-block;
-}
-
-/* NOTE: This is in the probable case that we start stuffing 16x16 data URI'd
- * icons in the promo notification responses. */
-#notification > span > img {
- margin-bottom: -3px;
-}
-
-#notification .close-button {
- -webkit-margin-start: 8px;
- vertical-align: top;
-}
-
-.link-button {
- -webkit-margin-start: 0.5em;
-}
-
-#bottom-panel {
- -webkit-transition: opacity 200ms;
- position: absolute;
- top: 300px;
- visibility: hidden;
- width: 100%;
-}
-
-.hide-bottom-panel {
- opacity: 0;
-}
-
-#card-slider-frame {
- height: 100px;
- overflow: hidden;
-}
-
-#page-list {
- display: -webkit-box;
- height: 100%;
- position: static;
-}
-
-#bottom-panel-header,
-#bottom-panel-footer,
-#bottom-panel-toolbar {
- margin: 0 auto;
- text-align: center;
-}
-
-#bottom-panel-header {
- padding: 10px 0 20px;
-}
-
-#bookmark-bar-spacer {
- height: 48px;
-}
-
-#promo-bubble-anchor {
- bottom: 50px;
- height: 10px;
- left: 0;
- position: absolute;
- width: 90px;
-}
-
-.bubble .bubble-arrow {
- display: none;
-}
-
-/* TODO(jeremycho): Figure out if we need this. */
-#attribution {
- bottom: 0;
- left: auto;
- margin-left: 8px;
- /* Leave room for the scrollbar. */
- margin-right: 13px;
- position: absolute;
- right: 0;
- text-align: left;
- z-index: -5;
-}
-
-/* For themes that right-align their images, we flip the attribution to the
- * left to avoid conflicts. We also do this for bare-minimum mode since there
- * can be conflicts with the recently closed menu. */
-html[themegravity='right'] #attribution,
-body.bare-minimum #attribution,
-html[dir='rtl'] #attribution {
- left: 0;
- right: auto;
- text-align: right;
-}
-
-#attribution > span {
- display: block;
-}
-
-.starting-up * {
- -webkit-transition: none !important;
-}
« no previous file with comments | « chrome/browser/resources/ntp_search/nav_dot.js ('k') | chrome/browser/resources/ntp_search/new_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698