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..ddd0706dbc2a8df1e246f615965ca1b575c1e389 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); |
@@ -204,6 +216,10 @@ table .removed { |
background-color: #bdbdbd; |
} |
+table .toggle-status { |
+ background-position: left center; |
+} |
+ |
@media screen and (max-width: 600px) { |
table thead { |
display: none; |
@@ -297,4 +313,24 @@ table .removed { |
opacity: 1; |
transform: translate3d(0, 0, 0); |
visibility: visible; |
+} |
+ |
+/* Object Fieldset */ |
+.object-fieldset { |
+ display: flex; |
scheib
2017/01/07 00:31:40
flex....
mbrunson
2017/01/07 01:05:22
Done.
|
+} |
+ |
+.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; |
} |