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

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

Issue 2564113003: bluetooth: Add basic scanning to chrome://bluetooth-internals. (Closed)
Patch Set: Replace discovering string in bluetooth_internals.js 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 ea4b87227d8ab86332e8721ab2c1179058276f98..3924fb6027b1b46c254b9aa80dee3793a505496b 100644
--- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css
+++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.css
@@ -5,6 +5,7 @@
:root {
--fade-duration: 225ms;
+ --header-height: 48px;
--md-timing-function: cubic-bezier(.4, 0, .6, 1);
--sidebar-width: 155px;
--sidebar-neg-width: calc(var(--sidebar-width) * -1);
@@ -36,13 +37,26 @@ h1 {
padding: 24px 16px;
}
+#page-container .header-extras {
+ -webkit-margin-end: 16px;
+ -webkit-margin-start: var(--sidebar-width);
+ align-items: flex-end;
+ display: flex;
+ height: var(--header-height);
+ justify-content: flex-end;
+ left: 0;
+ position: fixed;
+ right: 0;
+ top: 0;
+}
+
/* Page header */
.page-header {
align-items: center;
background-color: white;
border-bottom: 1px solid #eee;
display: flex;
- height: 48px;
+ height: var(--header-height);
padding-top: 8px;
position: sticky;
top: 0;

Powered by Google App Engine
This is Rietveld 408576698