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

Side by Side Diff: chrome/browser/resources/new_new_tab.css

Issue 160291: Fix issues with right border of the lower section as well as some CSS... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/new_new_tab.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 html { 1 html {
2 /* This is needed because of chrome://theme/css/new_tab.css */ 2 /* This is needed because of chrome://theme/css/new_tab.css */
3 height: 100%; 3 height: 100%;
4 } 4 }
5 5
6 body { 6 body {
7 margin: 0; 7 margin: 0;
8 } 8 }
9 9
10 #main { 10 #main {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 .filler { 79 .filler {
80 pointer-events: none; 80 pointer-events: none;
81 } 81 }
82 82
83 .filler .thumbnail-wrapper { 83 .filler .thumbnail-wrapper {
84 visibility: visible; 84 visibility: visible;
85 border: 3px solid hsl(213, 60%, 92%); 85 border: 3px solid hsl(213, 60%, 92%);
86 } 86 }
87 87
88 .list > .filler * {
89 visibility: hidden !important;
90 }
91
88 .filler .thumbnail { 92 .filler .thumbnail {
89 visibility: inherit; 93 visibility: inherit;
90 border: 1px solid white; 94 border: 1px solid white;
91 padding: 0; 95 padding: 0;
92 background-color: hsl(213, 60%, 92%); 96 background-color: hsl(213, 60%, 92%);
93 } 97 }
94 98
95 .edit-bar { 99 .edit-bar {
96 display: -webkit-box; 100 display: -webkit-box;
97 -webkit-box-orient: horizontal; 101 -webkit-box-orient: horizontal;
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 /* delay border radius transition as much as the edit bar slide delay */ 261 /* delay border radius transition as much as the edit bar slide delay */
258 -webkit-transition-delay: 0, 0, 0, .5s, 0; 262 -webkit-transition-delay: 0, 0, 0, .5s, 0;
259 } 263 }
260 264
261 .thumbnail-container:focus > .edit-mode-border, 265 .thumbnail-container:focus > .edit-mode-border,
262 .thumbnail-container:hover > .edit-mode-border { 266 .thumbnail-container:hover > .edit-mode-border {
263 background-color: hsl(213, 66%, 57%); 267 background-color: hsl(213, 66%, 57%);
264 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .5); 268 -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .5);
265 } 269 }
266 270
267 .dragging { 271 .dragging,
268 -webkit-transition: none; 272 .dragging * {
273 -webkit-transition: none !important;
269 } 274 }
270 275
271 .dragging > .title { 276 .dragging > .title {
272 opacity: 0 !important; 277 opacity: 0;
273 } 278 }
274 279
275 .list > .dragging > .title { 280 .list > .dragging > .title {
276 opacity: 1; 281 opacity: 1;
277 } 282 }
278 283
279 .hide { 284 .hide {
280 opacity: 0 !important; 285 opacity: 0 !important;
281 visibility: hidden !important; 286 visibility: hidden !important;
282 } 287 }
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 -webkit-column-count: 2; 503 -webkit-column-count: 2;
499 -webkit-column-gap: 20px; 504 -webkit-column-gap: 20px;
500 height: 120px; 505 height: 120px;
501 } 506 }
502 507
503 #recent-activities.large > .item-container { 508 #recent-activities.large > .item-container {
504 -webkit-column-count: 4; 509 -webkit-column-count: 4;
505 } 510 }
506 511
507 .section { 512 .section {
508 -webkit-box-flex: 1;
509 width: 50%;
510 display: inline-block; 513 display: inline-block;
511 } 514 }
512 515
513 #view-toolbar { 516 #view-toolbar {
514 -webkit-user-select: none; 517 -webkit-user-select: none;
515 text-align: right; 518 text-align: right;
516 position: relative; 519 position: relative;
517 top: 35px; 520 top: 35px;
518 } 521 }
519 522
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 } 720 }
718 721
719 #t3, #t7 { 722 #t3, #t7 {
720 left: 534px; 723 left: 534px;
721 } 724 }
722 725
723 #t4, #t5, #t6, #t7 { 726 #t4, #t5, #t6, #t7 {
724 top: 147px; 727 top: 147px;
725 } 728 }
726 } 729 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/new_new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698