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

Unified Diff: chrome/browser/resources/downloads/downloads.css

Issue 1710083005: Remove old downloads UI; Material Design version is now the default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove testing/ Created 4 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/downloads/constants.js ('k') | chrome/browser/resources/downloads/downloads.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/downloads/downloads.css
diff --git a/chrome/browser/resources/downloads/downloads.css b/chrome/browser/resources/downloads/downloads.css
deleted file mode 100644
index dd6bb7dcb47638e96da3631e04ceea9d158e2ade..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/downloads/downloads.css
+++ /dev/null
@@ -1,163 +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. */
-
-<include src="../search_header.css">
-
-#downloads-summary-text {
- font-weight: bold;
-}
-
-#download-actions {
- -webkit-margin-start: 16px;
-}
-
-#downloads-actions > * ~ * {
- -webkit-margin-start: 10px;
-}
-
-#downloads-display,
-#no-downloads-or-results {
- max-width: 740px;
- padding: 0 10px 34px;
-}
-
-.download {
- -webkit-margin-start: 114px;
- -webkit-padding-start: 52px;
- margin-bottom: 15px;
- position: relative;
-}
-
-.download,
-#no-downloads-or-results {
- margin-top: 6px;
-}
-
-.date-container {
- left: -110px;
- position: absolute;
- width: 110px;
-}
-
-html[dir=rtl] .date-container {
- left: auto;
- right: -110px;
-}
-
-.date-container .since {
- color: black;
-}
-
-.date-container .date {
- color: #666;
-}
-
-.download .icon {
- height: 32px;
- left: 9px;
- position: absolute;
- top: 2px;
- width: 32px;
-}
-
-html[dir=rtl] .icon {
- left: auto;
- right: 9px;
-}
-
-.download.otr > :-webkit-any(.safe, .dangerous) {
- -webkit-transition: opacity 150ms;
- background: url(../../../../ui/webui/resources/images/otr_icon_standalone.png)
- no-repeat right bottom;
- opacity: .66;
-}
-
-html[dir=rtl] .download.otr > :-webkit-any(.safe, .dangerous) {
- background-position: left bottom;
-}
-
-.download.otr > :-webkit-any(.safe, .dangerous):hover {
- opacity: 1;
-}
-
-.description.malware {
- color: rgb(196, 42, 23);
-}
-
-.progress {
- height: 48px;
- left: 0;
- position: absolute;
- top: -6px;
- width: 48px;
-}
-
-html[dir=rtl] .progress {
- left: auto;
- right: 0;
-}
-
-.progress.background {
- background: url(chrome://theme/IDR_DOWNLOAD_PROGRESS_BACKGROUND_32);
- background-size: 48px;
-}
-
-.title-area {
- align-items: baseline;
- display: flex;
-}
-
-.title-area > * {
- flex-shrink: 0;
-}
-
-.name,
-.src-url,
-.controls a,
-.description {
- -webkit-padding-end: 4px;
- -webkit-padding-start: 4px;
-}
-
-.name {
- -webkit-padding-end: 16px;
- display: inline-block;
- max-width: 450px;
- word-break: break-all;
-}
-
-.interrupted {
- color: red;
-}
-
-.download .status {
- color: #999;
- white-space: nowrap;
-}
-
-.download .src-url {
- color: rgb(85, 102, 221);
- display: inline-block;
- max-width: 500px;
- overflow: hidden;
- padding-bottom: 1px;
- padding-top: 4px;
- text-decoration: none;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-
-.controls a {
- -webkit-margin-end: 12px;
- color: #777;
-}
-
-.safe .controls a {
- display: inline;
-}
-
-#downloads-pagination {
- -webkit-margin-start: 18px;
- padding-top: 24px;
-}
« no previous file with comments | « chrome/browser/resources/downloads/constants.js ('k') | chrome/browser/resources/downloads/downloads.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698