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

Side by Side Diff: chrome/browser/resources/app_list/recommended_apps.css

Issue 874563003: Remove old HTML app list start page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/app_list/recommended_apps.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 .recommended-apps {
6 -webkit-align-items: center;
7 -webkit-justify-content: space-around;
8 display: -webkit-flex;
9 padding: 0 10px;
10 }
11
12 .app {
13 background-position: center 5px;
14 background-repeat: no-repeat;
15 background-size: 48px;
16 color: rgb(90, 90, 90);
17 cursor: default;
18 font-size: 11px;
19 font-weight: bold;
20 height: 20px;
21 overflow: hidden;
22 padding-top: 58px;
23 text-align: center;
24 text-overflow: ellipsis;
25 white-space: nowrap;
26 width: 88px;
27 }
28
29 .app:hover {
30 background-color: rgb(230, 230, 230);
31 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/app_list/recommended_apps.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698