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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js

Issue 2771533004: [DevTools] Make timeline popover easier to use on small screens (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/perf_ui/TimelineOverviewPane.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js b/third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js
index 67292e7bd833c7fccc2b3b868d292f55a17cc496..3592f588eb8c2d0c841cebd4ca5bb26d9f33ac46 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/GlassPane.js
@@ -201,14 +201,17 @@ UI.GlassPane = class {
behavior = UI.GlassPane.AnchorBehavior.PreferTop;
var arrowY;
+ var enoughHeight = true;
if (behavior === UI.GlassPane.AnchorBehavior.PreferTop) {
positionY = Math.max(gutterSize, anchorBox.y - height - gutterSize);
var spaceTop = anchorBox.y - positionY - gutterSize;
if (this._sizeBehavior === UI.GlassPane.SizeBehavior.MeasureContent) {
if (height < measuredHeight)
width += scrollbarSize;
- if (height > spaceTop)
+ if (height > spaceTop) {
this._arrowElement.classList.add('arrow-none');
+ enoughHeight = false;
+ }
} else {
height = Math.min(height, spaceTop);
}
@@ -224,6 +227,7 @@ UI.GlassPane = class {
if (height > spaceBottom) {
this._arrowElement.classList.add('arrow-none');
positionY = containerHeight - gutterSize - height;
+ enoughHeight = false;
}
} else {
height = Math.min(height, spaceBottom);
@@ -234,8 +238,10 @@ UI.GlassPane = class {
}
positionX = Math.max(gutterSize, Math.min(anchorBox.x, containerWidth - width - gutterSize));
- if (this._showArrow && positionX - arrowSize >= gutterSize)
+ if (enoughHeight && this._showArrow && positionX - arrowSize >= gutterSize)
positionX -= arrowSize;
+ else if (!enoughHeight)
caseq 2017/03/22 23:30:03 This is somehow unfortunate considering we already
dgozman 2017/03/23 00:41:36 Done.
+ positionX += arrowSize;
width = Math.min(width, containerWidth - positionX - gutterSize);
if (2 * arrowSize >= width) {
this._arrowElement.classList.add('arrow-none');
@@ -253,14 +259,17 @@ UI.GlassPane = class {
behavior = UI.GlassPane.AnchorBehavior.PreferLeft;
var arrowX;
+ var enoughWidth = true;
if (behavior === UI.GlassPane.AnchorBehavior.PreferLeft) {
positionX = Math.max(gutterSize, anchorBox.x - width - gutterSize);
var spaceLeft = anchorBox.x - positionX - gutterSize;
if (this._sizeBehavior === UI.GlassPane.SizeBehavior.MeasureContent) {
if (width < measuredWidth)
height += scrollbarSize;
- if (width > spaceLeft)
+ if (width > spaceLeft) {
this._arrowElement.classList.add('arrow-none');
+ enoughWidth = false;
+ }
} else {
width = Math.min(width, spaceLeft);
}
@@ -276,6 +285,7 @@ UI.GlassPane = class {
if (width > spaceRight) {
this._arrowElement.classList.add('arrow-none');
positionX = containerWidth - gutterSize - width;
+ enoughWidth = false;
}
} else {
width = Math.min(width, spaceRight);
@@ -286,8 +296,10 @@ UI.GlassPane = class {
}
positionY = Math.max(gutterSize, Math.min(anchorBox.y, containerHeight - height - gutterSize));
- if (this._showArrow && positionY - arrowSize >= gutterSize)
+ if (enoughWidth && this._showArrow && positionY - arrowSize >= gutterSize)
positionY -= arrowSize;
+ else if (!enoughWidth)
caseq 2017/03/22 23:30:03 ditto.
+ positionY += arrowSize;
height = Math.min(height, containerHeight - positionY - gutterSize);
if (2 * arrowSize >= height) {
this._arrowElement.classList.add('arrow-none');
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/perf_ui/TimelineOverviewPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698