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

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

Issue 7044136: Support drag&drop for startup pages (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed review issues Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #startupPageManagement.settings-list > :last-child { 1 #startupPageManagement.settings-list > :last-child {
2 border-top: 1px solid #d9d9d9; 2 border-top: 1px solid #d9d9d9;
3 padding: 5px 10px; 3 padding: 5px 10px;
4 } 4 }
5 5
6 #startupPagesList { 6 #startupPagesList {
7 min-height: 64px; 7 min-height: 64px;
8 } 8 }
9 9
10 #startupPagesList .title { 10 #startupPagesList .title {
11 width: 40%; 11 width: 40%;
12 } 12 }
13 13
14 #startupPagesList .url { 14 #startupPagesList .url {
15 -webkit-box-flex: 1; 15 -webkit-box-flex: 1;
16 color: #666; 16 color: #666;
17 } 17 }
18 18
19 #startupPagesListDropmarker {
20 background-clip: padding-box;
21 background-color: hsl(214, 91%, 65%);
22 border-bottom-color: transparent;
23 border-radius: 0;
24 border-top-color: transparent;
25 border: 2px solid hsl(214, 91%, 65%);
26 box-sizing: border-box;
27 display: none;
28 height: 6px;
29 overflow: hidden;
30 pointer-events: none;
31 position: fixed;
32 z-index: 10;
33 }
34
19 #customHomePageGroup { 35 #customHomePageGroup {
20 display: -webkit-box; 36 display: -webkit-box;
21 -webkit-box-orient: horizontal; 37 -webkit-box-orient: horizontal;
22 } 38 }
23 39
24 #customHomePageGroup > :last-child { 40 #customHomePageGroup > :last-child {
25 -webkit-margin-start: 1ex; 41 -webkit-margin-start: 1ex;
26 -webkit-box-flex: 1; 42 -webkit-box-flex: 1;
27 position: relative; 43 position: relative;
28 } 44 }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #instantConfirmText { 82 #instantConfirmText {
67 font-family: inherit; 83 font-family: inherit;
68 white-space: pre-wrap; 84 white-space: pre-wrap;
69 width: 500px; 85 width: 500px;
70 } 86 }
71 87
72 #instantConfirmLearnMore { 88 #instantConfirmLearnMore {
73 position: absolute; 89 position: absolute;
74 bottom: 18px; 90 bottom: 18px;
75 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698