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

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

Issue 1499993004: DevTools: popover, selection and other minor theme tweaks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
OLDNEW
1 .popover-container { 1 .popover-container {
2 pointer-events: none; 2 pointer-events: none;
3 overflow: hidden; 3 overflow: hidden;
4 } 4 }
5 5
6 .popover { 6 .popover {
7 position: absolute; 7 position: absolute;
8 z-index: 600; 8 z-index: 600;
9 pointer-events: none; 9 pointer-events: none;
10 display: flex; 10 display: flex;
(...skipping 19 matching lines...) Expand all
30 .popover .arrow { 30 .popover .arrow {
31 position: absolute; 31 position: absolute;
32 background-image: url(Images/popoverArrows.png); 32 background-image: url(Images/popoverArrows.png);
33 width: 19px; 33 width: 19px;
34 height: 19px; 34 height: 19px;
35 margin-top: -19px; 35 margin-top: -19px;
36 top: 0; 36 top: 0;
37 left: 0; 37 left: 0;
38 } 38 }
39 39
40 .-theme-with-dark-background .popover .arrow {
41 -webkit-filter: invert(80%);
42 }
43
40 .popover.top-left-arrow .arrow { 44 .popover.top-left-arrow .arrow {
41 /* The default is top-left, no styles needed. */ 45 /* The default is top-left, no styles needed. */
42 } 46 }
43 47
44 .popover.top-right-arrow .arrow { 48 .popover.top-right-arrow .arrow {
45 right: 19px; 49 right: 19px;
46 left: auto; 50 left: auto;
47 } 51 }
48 52
49 .popover.bottom-left-arrow .arrow { 53 .popover.bottom-left-arrow .arrow {
(...skipping 25 matching lines...) Expand all
75 .source-frame-popover-tree { 79 .source-frame-popover-tree {
76 border-top: 1px solid rgb(184, 184, 184); 80 border-top: 1px solid rgb(184, 184, 184);
77 overflow: auto; 81 overflow: auto;
78 position: relative; 82 position: relative;
79 top: 5px; 83 top: 5px;
80 bottom: 0; 84 bottom: 0;
81 left: 0; 85 left: 0;
82 right: 0; 86 right: 0;
83 margin-top: 1px; 87 margin-top: 1px;
84 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698