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

Unified Diff: chrome/browser/resources/bluetooth_internals/bluetooth_internals.css

Issue 2567983007: bluetooth: Add adapter page to internals page. (Closed)
Patch Set: Merge upstream Created 3 years, 11 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/bluetooth_internals/bluetooth_internals.css
diff --git a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css
index 3924fb6027b1b46c254b9aa80dee3793a505496b..bb76f10f1c253ae0b5167d2c68b834831acf943a 100644
--- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css
+++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css
@@ -21,6 +21,18 @@ h1 {
color: rgb(92, 97, 102);
}
+.toggle-status {
+ background-image: url(../../../../ui/webui/resources/images/cancel_red.svg);
+ background-repeat: no-repeat;
+ min-height: 24px;
+ min-width: 24px;
+}
+
+.toggle-status.checked {
+ background-image:
+ url(../../../../ui/webui/resources/images/check_circle_green.svg);
+}
+
/* Page container */
#page-container {
-webkit-margin-start: var(--sidebar-width);
@@ -297,4 +309,27 @@ table .removed {
opacity: 1;
transform: translate3d(0, 0, 0);
visibility: visible;
+}
+
+/* Adapter Page */
+@media screen and (min-width: 601px) {
+ #adapter {
+ display: flex;
+ }
+}
+
+/* Object Fieldset */
+.object-fieldset .status {
+ align-items: center;
+ display: flex;
+ margin-bottom: 0.8em;
+}
+
+.object-fieldset .status div:first-child {
+ -webkit-margin-end: 1em;
+ white-space: nowrap;
+}
+
+.object-fieldset .status:last-child {
+ margin-bottom: 0;
}

Powered by Google App Engine
This is Rietveld 408576698