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

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

Issue 149127: Another batrch of performance improvements for NNTP... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 | « no previous file | chrome/browser/resources/new_new_tab.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/new_new_tab.css
===================================================================
--- chrome/browser/resources/new_new_tab.css (revision 19797)
+++ chrome/browser/resources/new_new_tab.css (working copy)
@@ -36,10 +36,15 @@
position: relative;
padding: 0;
margin-bottom: 34px;
+ height: 372px;
-webkit-user-select: none;
-webkit-transition: height .5s, opacity .5s;
}
+.small #most-visited {
+ height: 294px;
+}
+
@-webkit-keyframes 'thumbnail-enter' {
/* 2.5s */
0%, 20% {
@@ -89,14 +94,14 @@
}
.thumbnail,
-.thumbnail-container .title {
+.thumbnail-container > .title {
width: 212px; /* natural size is 196 */
height: 132px; /* 136 */
-webkit-transition: width .5s, height .5s;
}
.small .thumbnail,
-.small .thumbnail-container .title {
+.small .thumbnail-container > .title {
width: 150px;
height: 93px;
}
@@ -130,7 +135,7 @@
display: block;
}
-.filler .thumbnail-wrapper .thumbnail {
+.filler .thumbnail {
visibility: visible;
border-color: hsl(0, 0%, 90%);
background-color: hsl(0, 0%, 95%);
@@ -217,15 +222,14 @@
:link,
:visited,
-.link,
-.thumbnail-container a {
+.link {
cursor: pointer;
text-decoration: underline;
color: hsl(213, 90%, 24%);
}
-.thumbnail-container .title,
-.small .thumbnail-container .title {
+.thumbnail-container > .title,
+.small .thumbnail-container > .title {
line-height: 16px;
height: 16px;
margin: 0;
@@ -238,7 +242,7 @@
color: black;
}
-.thumbnail-container .title div {
+.thumbnail-container > .title > div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@@ -251,7 +255,7 @@
padding-right: 0;
}
-html[dir=rtl] .thumbnail-container .title div {
+html[dir=rtl] .thumbnail-container > .title > div {
background-position-x: 100%;
padding-left: 0;
padding-right: 20px;
@@ -287,7 +291,7 @@
);
}
-.thumbnail-container:hover .edit-mode-border {
+.thumbnail-container:hover > .edit-mode-border {
-webkit-animation: 'edit-mode-border-enter' 2.5s;
background-color: hsla(213, 66%, 57%, 1);
-webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .5);
@@ -297,11 +301,11 @@
-webkit-transition: none;
}
-.dragging .title {
- opacity: 0;
+.dragging > .title {
+ opacity: 0 !important;
}
-.list .dragging .title {
+.list > .dragging > .title {
opacity: 1;
}
@@ -374,7 +378,7 @@
width: auto;
}
-.list .thumbnail-container {
+.list > .thumbnail-container {
-webkit-box-sizing: border-box;
}
@@ -387,7 +391,7 @@
text-decoration: underline;
}
-.list .title div {
+.list .title > div {
color: rgb(6, 45, 117);
}
@@ -529,7 +533,7 @@
text-align: left;
}
-#view-toolbar input {
+#view-toolbar > input {
-webkit-appearance: none;
background-color: transparent;
width: 19px;
@@ -548,14 +552,14 @@
white-space: nowrap;
}
-#lower-sections .section {
+#lower-sections > .section {
-webkit-transition: width .5s, opacity .5s, left .5s;
-webkit-box-sizing: border-box;
width: 460px; /* Set default size so we don't have to do a js layout at
load */
}
-.small #lower-sections .section {
+.small #lower-sections > .section {
width: 336px; /* Same here, see above */
}
« no previous file with comments | « no previous file | chrome/browser/resources/new_new_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698