| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |