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

Unified Diff: chrome/browser/resources/settings/internet_page/network_summary_item_style.html

Issue 1100993002: Implement md-settings network lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/internet_page/network_summary_item_style.html
diff --git a/chrome/browser/resources/settings/internet_page/network_summary_item_style.html b/chrome/browser/resources/settings/internet_page/network_summary_item_style.html
new file mode 100644
index 0000000000000000000000000000000000000000..5234166f2d3a6cd5da86c48cef89fceca42459bb
--- /dev/null
+++ b/chrome/browser/resources/settings/internet_page/network_summary_item_style.html
@@ -0,0 +1,32 @@
+<link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
+<link rel="import" href="chrome://resources/polymer/core-style/core-style.html">
+
+<core-style id="networkSummaryStyle">
+
+#details.selectable:hover {
+ background-color: lightgrey;
+}
+
+#detailsItem {
+ 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.
+ margin-bottom: 10px;
+}
+
+#buttons {
+ align-items: center;
+}
+
+.invisible {
+ visibility: hidden;
+}
+
+#enableButton {
+ margin: 0px 10px;
+}
+
+#networkList {
+ max-height: 400px;
+ margin: 0px 70px 10px 40px;
+}
+
+</core-style>

Powered by Google App Engine
This is Rietveld 408576698