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

Unified Diff: chrome/browser/resources/shared/css/table.css

Issue 11962043: Move webui resources from chrome\browser\resources\shared to ui\webui\resources. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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/shared/css/spinner.css ('k') | chrome/browser/resources/shared/css/tabs.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/css/table.css
===================================================================
--- chrome/browser/resources/shared/css/table.css (revision 177292)
+++ chrome/browser/resources/shared/css/table.css (working copy)
@@ -1,116 +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. */
-
-html.col-resize * {
- cursor: col-resize !important;
-}
-
-.table[hasElementFocus] > list > [lead] {
- border-color: hsl(214, 91%, 65%);
- z-index: 2;
-}
-
-.table[hasElementFocus] > list > [selected] {
- background-color: hsl(214,91%,89%);
- border-color: hsl(214, 91%, 65%);
-}
-
-.table[hasElementFocus] > list > [lead][selected],
-list > [selected]:hover {
- background-color: hsl(214, 91%, 87%);
- border-color: hsl(214, 91%, 65%);
-}
-
-.list > * {
- border-left: none;
- border-right: none;
- padding: 0;
-}
-
-.table:focus {
- border: 1px solid;
-}
-
-.table {
- border: 1px solid;
- outline: none;
- overflow: hidden;
-}
-
-.table-row {
- display: -webkit-box;
- text-align: start;
- width: 100%;
-}
-
-.table-row-cell {
- display: -webkit-box;
- overflow: hidden;
-}
-
-.table-row-cell > * {
- margin: 0 7px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-
-.table-header {
- background-color: rgb(220, 220, 220);
- overflow: hidden;
- position: relative;
-}
-
-.table-header-inner {
- -webkit-user-select: none;
- cursor: default;
- display: -webkit-box;
- position: relative;
- text-align: start;
-}
-
-.table-header-cell {
- font-weight: normal;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-
-.table-header-label {
- margin: 0 7px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-
-.table-header-label > * {
- padding: 0 12px;
-}
-
-.table-header-sort-image-desc::after {
- -webkit-padding-start: 5px;
- color: #888;
- content: '\25be'; /* BLACK DOWN-POINTING SMALL TRIANGLE */
- position: relative;
- top: -2px;
-}
-
-.table-header-sort-image-asc::after {
- -webkit-padding-start: 5px;
- color: #888;
- content: '\25b4'; /* BLACK UP-POINTING SMALL TRIANGLE */
- position: relative;
- top: -2px;
-}
-
-.table-header-splitter {
- -webkit-margin-start: -1px;
- background-color: black;
- cursor: col-resize;
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 5px;
-}
« no previous file with comments | « chrome/browser/resources/shared/css/spinner.css ('k') | chrome/browser/resources/shared/css/tabs.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698