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

Side by Side Diff: Source/devtools/front_end/popover.css

Issue 203683005: [DevTools] Place modal elements (suggest box, popover) above splitters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/devtools/front_end/textPrompt.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .popover { 1 .popover {
2 position: absolute; 2 position: absolute;
3 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25; 3 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25;
4 border-width: 25px; 4 border-width: 25px;
5 z-index: 100; 5 z-index: 600;
vsevik 2014/03/19 16:27:27 I am not sure this is safe. Shall we make splitter
6 pointer-events: none; 6 pointer-events: none;
7 } 7 }
8 8
9 .popover .content { 9 .popover .content {
10 position: absolute; 10 position: absolute;
11 top: 0; 11 top: 0;
12 bottom: 0; 12 bottom: 0;
13 left: 0; 13 left: 0;
14 right: 0; 14 right: 0;
15 pointer-events: auto; 15 pointer-events: auto;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 .popover.right-bottom-arrow .arrow { 87 .popover.right-bottom-arrow .arrow {
88 right: 0; 88 right: 0;
89 left: auto; 89 left: auto;
90 top: auto; 90 top: auto;
91 bottom: 0; 91 bottom: 0;
92 margin-bottom: 15px; 92 margin-bottom: 15px;
93 margin-right: -25px; 93 margin-right: -25px;
94 background-position: 0 -57px; 94 background-position: 0 -57px;
95 } 95 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/textPrompt.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698