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

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

Issue 2576603002: bluetooth: Add device details page with basic properties to internals page. (Closed)
Patch Set: Fix formatting, fix comments, fix test, change service/rssi display 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 bb76f10f1c253ae0b5167d2c68b834831acf943a..5fa4b2c06a19af04f648e17438755c18eb2764fa 100644
--- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css
+++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css
@@ -45,7 +45,7 @@ h1 {
}
/* Page content */
-#page-container section {
+#page-container > section {
padding: 24px 16px;
}
@@ -96,7 +96,10 @@ h1 {
}
.page-header > h1 {
- margin: 13px 0 13px 24px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 190px;
}
}
@@ -201,6 +204,11 @@ table {
width: 100%;
}
+table a {
+ font-size: 10pt;
+ padding: 6px;
+}
+
table th,
table td {
border: 1px solid #d9d9d9;
@@ -311,13 +319,6 @@ table .removed {
visibility: visible;
}
-/* Adapter Page */
-@media screen and (min-width: 601px) {
- #adapter {
- display: flex;
- }
-}
-
/* Object Fieldset */
.object-fieldset .status {
align-items: center;
@@ -332,4 +333,16 @@ table .removed {
.object-fieldset .status:last-child {
margin-bottom: 0;
+}
+
+/* Object Fieldset Container */
+@media screen and (min-width: 601px) {
+ .flex {
+ display: flex;
+ }
+}
+
+/* Device Details Page */
+.device-details-page section {
+ -webkit-margin-start: 1em;
}

Powered by Google App Engine
This is Rietveld 408576698