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

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

Issue 2607103004: DevTools: Make sure a horizontal scrollbar doesn't appear in SuggestBox (Closed)
Patch Set: Move overflow hidden to client 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/ListControl.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 flex-direction: row; 63 flex-direction: row;
64 } 64 }
65 65
66 .suggest-box { 66 .suggest-box {
67 background-color: #FFFFFF; 67 background-color: #FFFFFF;
68 pointer-events: auto; 68 pointer-events: auto;
69 margin-left: -3px; 69 margin-left: -3px;
70 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 70 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05),
71 0 2px 4px rgba(0, 0, 0, 0.2), 71 0 2px 4px rgba(0, 0, 0, 0.2),
72 0 2px 6px rgba(0, 0, 0, 0.1); 72 0 2px 6px rgba(0, 0, 0, 0.1);
73 overflow-x: hidden;
73 } 74 }
74 75
75 .suggest-box .suggest-box-content-item { 76 .suggest-box .suggest-box-content-item {
76 padding: 1px; 77 padding: 1px;
77 margin: 0; 78 margin: 0;
78 border: 1px solid transparent; 79 border: 1px solid transparent;
79 padding-right: 0; 80 padding-right: 0;
80 white-space: nowrap; 81 white-space: nowrap;
81 display: flex; 82 display: flex;
82 } 83 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 background-color: rgb(56, 121, 217); 117 background-color: rgb(56, 121, 217);
117 } 118 }
118 119
119 .suggest-box .suggest-box-content-item.selected > span { 120 .suggest-box .suggest-box-content-item.selected > span {
120 color: #FFF; 121 color: #FFF;
121 } 122 }
122 123
123 .suggest-box .suggest-box-content-item:hover:not(.selected) { 124 .suggest-box .suggest-box-content-item:hover:not(.selected) {
124 background-color: rgba(56, 121, 217, 0.1); 125 background-color: rgba(56, 121, 217, 0.1);
125 } 126 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/ListControl.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698