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

Side by Side Diff: chrome/browser/resources/options/add_startup_page_overlay.css

Issue 6361005: DOMUI Prefs: Fix the way recent page rows are sized and truncated. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/options/add_startup_page_recent_pages_list.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 #addStartupPageOverlay { 1 #addStartupPageOverlay {
2 width: 500px; 2 width: 500px;
3 } 3 }
4 4
5 #addURLBlock { 5 #addURLBlock {
6 display: -webkit-box; 6 display: -webkit-box;
7 margin: 1ex 0 2ex 0; 7 margin: 1ex 0 2ex 0;
8 } 8 }
9 9
10 #addURLBlock > * { 10 #addURLBlock > * {
11 display: block; 11 display: block;
12 } 12 }
13 13
14 #addURLBlock > span { 14 #addURLBlock > span {
15 padding-top: 4px; 15 padding-top: 4px;
16 } 16 }
17 17
18 #addStartupPageURL { 18 #addStartupPageURL {
19 -webkit-box-flex: 1; 19 -webkit-box-flex: 1;
20 } 20 }
21 21
22 #addStartupRecentPageList { 22 #addStartupRecentPageList {
23 height: 320px; 23 height: 320px;
24 } 24 }
25 25
26 #addStartupRecentPageList .vertical-center {
27 overflow: hidden;
28 text-overflow: ellipsis;
29 width: 100%;
30 white-space: nowrap;
31 color: hsl(0, 0%, 70%);
32 }
33
34 #addStartupRecentPageList .title {
35 box-sizing: border-box;
36 color: black;
37 display: inline-block;
38 max-width: 100%;
39 }
40
26 #addStartupRecentPageList .url { 41 #addStartupRecentPageList .url {
27 display: none;
28 color: hsl(0, 0%, 70%);
29 -webkit-padding-start: 3ex; 42 -webkit-padding-start: 3ex;
30 } 43 }
31 44
32 #addStartupRecentPageList > :hover > .url, 45 #addStartupRecentPageList > :not(:hover):not([selected]) > .url,
33 #addStartupRecentPageList > [selected] > .url { 46 display: none;
34 display: inline;
35 } 47 }
36 48
37 #addStartupPageOverlay .action-area { 49 #addStartupPageOverlay .action-area {
38 margin-top: 2ex; 50 margin-top: 2ex;
39 } 51 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/add_startup_page_recent_pages_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698