OLD | NEW |
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 } |
OLD | NEW |