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

Side by Side Diff: chrome/browser/resources/ntp4/tile_page.css

Issue 1753783004: NTP4: erase notification promo UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 1 more Created 4 years, 9 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 | « chrome/browser/resources/ntp4/new_tab.js ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .tile-page { 5 .tile-page {
6 -webkit-box-orient: vertical; 6 -webkit-box-orient: vertical;
7 display: -webkit-box; 7 display: -webkit-box;
8 height: 100%; 8 height: 100%;
9 position: relative; 9 position: relative;
10 width: 100%; 10 width: 100%;
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 } 120 }
121 121
122 .hovering-on-trash { 122 .hovering-on-trash {
123 opacity: 0.6; 123 opacity: 0.6;
124 } 124 }
125 125
126 .animating-tile-page .top-margin { 126 .animating-tile-page .top-margin {
127 -webkit-transition: margin-bottom 200ms; 127 -webkit-transition: margin-bottom 200ms;
128 } 128 }
129 129
130 .animating-tile-page #notification-container {
131 -webkit-transition: margin 200ms, opacity 200ms;
132 }
133
134 @-webkit-keyframes bounce { 130 @-webkit-keyframes bounce {
135 0% { 131 0% {
136 -webkit-transform: scale(0, 0); 132 -webkit-transform: scale(0, 0);
137 } 133 }
138 134
139 60% { 135 60% {
140 -webkit-transform: scale(1.2, 1.2); 136 -webkit-transform: scale(1.2, 1.2);
141 } 137 }
142 138
143 100% { 139 100% {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 180
185 /** Scrollbars ****************************************************************/ 181 /** Scrollbars ****************************************************************/
186 182
187 .tile-page-content::-webkit-scrollbar { 183 .tile-page-content::-webkit-scrollbar {
188 width: 13px; 184 width: 13px;
189 } 185 }
190 186
191 .tile-page-content::-webkit-scrollbar-button { 187 .tile-page-content::-webkit-scrollbar-button {
192 display: none; 188 display: none;
193 } 189 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.js ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698