OLD | NEW |
---|---|
(Empty) | |
1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> | |
2 <link rel="import" href="chrome://resources/polymer/core-style/core-style.html"> | |
3 | |
4 <core-style id="networkSummaryStyle"> | |
5 | |
6 #details.selectable:hover { | |
7 background-color: lightgrey; | |
8 } | |
9 | |
10 #detailsItem { | |
11 flex: 1 1 auto; | |
Jeremy Klein
2015/04/23 18:21:15
Isn't this equivalent to flex: 1? You can also jus
stevenjb
2015/04/24 01:25:26
Done.
| |
12 margin-bottom: 10px; | |
13 } | |
14 | |
15 #buttons { | |
16 align-items: center; | |
17 } | |
18 | |
19 .invisible { | |
20 visibility: hidden; | |
21 } | |
22 | |
23 #enableButton { | |
24 margin: 0px 10px; | |
25 } | |
26 | |
27 #networkList { | |
28 max-height: 400px; | |
29 margin: 0px 70px 10px 40px; | |
30 } | |
31 | |
32 </core-style> | |
OLD | NEW |