| OLD | NEW |
| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 padding: 1px; | 84 padding: 1px; |
| 85 margin: 0; | 85 margin: 0; |
| 86 overflow: hidden; | 86 overflow: hidden; |
| 87 text-overflow: ellipsis; | 87 text-overflow: ellipsis; |
| 88 border: 1px solid transparent; | 88 border: 1px solid transparent; |
| 89 flex: 0 0 auto; | 89 flex: 0 0 auto; |
| 90 padding-right: 0; | 90 padding-right: 0; |
| 91 white-space: nowrap; | 91 white-space: nowrap; |
| 92 } | 92 } |
| 93 | 93 |
| 94 .suggest-box .suggest-box-content-item.additional { |
| 95 background-color: #f9f9f9; |
| 96 } |
| 97 |
| 98 .suggest-box .suggest-box-content-item.additional::before { |
| 99 display: inline-block; |
| 100 content: ""; |
| 101 -webkit-user-select: none; |
| 102 background-image: url(Images/toolbarButtonGlyphs.png); |
| 103 background-size: 352px 168px; |
| 104 width: 10px; |
| 105 height: 10px; |
| 106 position: relative; |
| 107 top: 2px; |
| 108 margin-right: 4px; |
| 109 background-position: -192px -96px; |
| 110 } |
| 111 |
| 112 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 113 .suggest-box .suggest-box-content-item.additional::before { |
| 114 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 115 } |
| 116 } /* media */ |
| 117 |
| 94 .suggest-box .suggest-box-content-item .prefix { | 118 .suggest-box .suggest-box-content-item .prefix { |
| 95 font-weight: bold; | 119 font-weight: bold; |
| 96 } | 120 } |
| 97 | 121 |
| 98 .suggest-box .suggest-box-content-item .spacer { | 122 .suggest-box .suggest-box-content-item .spacer { |
| 99 display: inline-block; | 123 display: inline-block; |
| 100 width: 20px; | 124 width: 20px; |
| 101 } | 125 } |
| 102 | 126 |
| 103 .suggest-box .suggest-box-content-item.selected { | 127 .suggest-box .suggest-box-content-item.selected { |
| 104 background-color: rgba(56, 121, 217, 0.1); | 128 background-color: rgba(56, 121, 217, 0.1); |
| 105 } | 129 } |
| 106 | 130 |
| 107 .suggest-box .suggest-box-content-item:hover:not(.selected) { | 131 .suggest-box .suggest-box-content-item:hover:not(.selected) { |
| 108 border: 1px solid rgb(204, 204, 204); | 132 border: 1px solid rgb(204, 204, 204); |
| 109 } | 133 } |
| 110 | 134 |
| 111 .suggest-box .details-popup { | 135 .suggest-box .details-popup { |
| 112 padding: 17px; | 136 padding: 17px; |
| 113 pointer-events: auto; | 137 pointer-events: auto; |
| 114 margin-left: 3px; | 138 margin-left: 3px; |
| 115 max-width: 750px; | 139 max-width: 750px; |
| 116 word-wrap: normal; | 140 word-wrap: normal; |
| 117 } | 141 } |
| 118 | 142 |
| 119 .suggest-box .details-popup .description { | 143 .suggest-box .details-popup .description { |
| 120 margin-top: 22px; | 144 margin-top: 22px; |
| 121 color: #808080; | 145 color: #808080; |
| 122 } | 146 } |
| OLD | NEW |