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

Unified Diff: chrome/browser/resources/chromeos/network_ui/network_ui.css

Issue 874283006: Add custom Polymer network icon element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add externs, improve typing Created 5 years, 10 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/chromeos/network_ui/network_ui.css
diff --git a/chrome/browser/resources/chromeos/network_ui/network_ui.css b/chrome/browser/resources/chromeos/network_ui/network_ui.css
index 57162b30aa4c5f447ceba1024ec059eaa8f81c67..bc197cf623572ab6281cd32aa6b591259578e664 100644
--- a/chrome/browser/resources/chromeos/network_ui/network_ui.css
+++ b/chrome/browser/resources/chromeos/network_ui/network_ui.css
@@ -4,6 +4,11 @@
* found in the LICENSE file.
*/
+paper-button[raised].colored {
+ background: rgb(66, 133, 244);
+ color: rgb(255, 255, 255);
+}
+
#header {
margin: 5px;
}
@@ -12,6 +17,28 @@
padding: 0 4px;
}
+#header cr-network-icon {
+ height: 25px;
+ width: 25px;
+}
+
+#default-network {
+ align-items: center;
+ display: flex;
+ flex-direction: row;
+ padding: 4px;
+}
+
+#default-network-text {
+ -webkit-padding-start: 8px;
+ font-size: 14px;
+ font-weight: bold;
+}
+
+#header #refresh {
+ margin: 4px;
+}
+
.state-table {
border-collapse: collapse;
}
@@ -43,6 +70,11 @@
white-space: pre-wrap;
}
+.state-table cr-network-icon {
+ height: 25px;
+ width: 25px;
+}
+
#advanced-options {
margin-top: 10px;
}

Powered by Google App Engine
This is Rietveld 408576698