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

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

Issue 2474143002: DevTools: Rename prefix to query in the context of autocomplete (Closed)
Patch Set: merge Created 4 years, 1 month 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 /* 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 @media (-webkit-min-device-pixel-ratio: 1.1) { 104 @media (-webkit-min-device-pixel-ratio: 1.1) {
105 .suggest-box .suggest-box-content-item.additional::before { 105 .suggest-box .suggest-box-content-item.additional::before {
106 -webkit-mask-image: url(Images/smallIcons_2x.png); 106 -webkit-mask-image: url(Images/smallIcons_2x.png);
107 } 107 }
108 } /* media */ 108 } /* media */
109 109
110 .suggest-box .suggest-box-content-item.additional.selected::before { 110 .suggest-box .suggest-box-content-item.additional.selected::before {
111 background-color: #FFF; 111 background-color: #FFF;
112 } 112 }
113 113
114 .suggest-box .suggest-box-content-item .prefix { 114 .suggest-box .suggest-box-content-item .query {
115 font-weight: bold; 115 font-weight: bold;
116 } 116 }
117 117
118 .suggest-box .suggest-box-content-item .spacer { 118 .suggest-box .suggest-box-content-item .spacer {
119 display: inline-block; 119 display: inline-block;
120 width: 20px; 120 width: 20px;
121 } 121 }
122 122
123 .suggest-box .suggest-box-content-item.selected { 123 .suggest-box .suggest-box-content-item.selected {
124 background-color: rgb(56, 121, 217); 124 background-color: rgb(56, 121, 217);
125 color: #FFF; 125 color: #FFF;
126 } 126 }
127 127
128 .suggest-box .suggest-box-content-item:hover:not(.selected) { 128 .suggest-box .suggest-box-content-item:hover:not(.selected) {
129 background-color: rgba(56, 121, 217, 0.1); 129 background-color: rgba(56, 121, 217, 0.1);
130 } 130 }
131 131
132 .suggest-box .details-popup { 132 .suggest-box .details-popup {
133 padding: 17px; 133 padding: 17px;
134 pointer-events: auto; 134 pointer-events: auto;
135 margin-left: 3px; 135 margin-left: 3px;
136 max-width: 750px; 136 max-width: 750px;
137 word-wrap: normal; 137 word-wrap: normal;
138 } 138 }
139 139
140 .suggest-box .details-popup .description { 140 .suggest-box .details-popup .description {
141 margin-top: 22px; 141 margin-top: 22px;
142 color: #808080; 142 color: #808080;
143 } 143 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698