| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 .suggest-box-container { | 61 .suggest-box-container { |
| 62 display: flex; | 62 display: flex; |
| 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 overflow-x: hidden; | |
| 71 overflow-y: auto; | |
| 72 display: flex; | |
| 73 flex-direction: column; | |
| 74 flex: 0 0 auto; | |
| 75 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), |
| 76 0 2px 4px rgba(0, 0, 0, 0.2), | 71 0 2px 4px rgba(0, 0, 0, 0.2), |
| 77 0 2px 6px rgba(0, 0, 0, 0.1); | 72 0 2px 6px rgba(0, 0, 0, 0.1); |
| 78 } | 73 } |
| 79 | 74 |
| 80 .suggest-box .suggest-box-content-item { | 75 .suggest-box .suggest-box-content-item { |
| 81 padding: 1px; | 76 padding: 1px; |
| 82 margin: 0; | 77 margin: 0; |
| 83 overflow: hidden; | 78 overflow: hidden; |
| 84 text-overflow: ellipsis; | 79 text-overflow: ellipsis; |
| 85 border: 1px solid transparent; | 80 border: 1px solid transparent; |
| 86 flex: 0 0 auto; | |
| 87 padding-right: 0; | 81 padding-right: 0; |
| 88 white-space: nowrap; | 82 white-space: nowrap; |
| 89 } | 83 } |
| 90 | 84 |
| 91 .suggest-box .suggest-box-content-item.additional { | 85 .suggest-box .suggest-box-content-item.additional { |
| 92 background-color: #f9f9f9; | 86 background-color: #f9f9f9; |
| 93 } | 87 } |
| 94 | 88 |
| 95 .suggest-box .suggest-box-content-item.additional::before { | 89 .suggest-box .suggest-box-content-item.additional::before { |
| 96 display: inline-block; | 90 display: inline-block; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 pointer-events: auto; | 128 pointer-events: auto; |
| 135 margin-left: 3px; | 129 margin-left: 3px; |
| 136 max-width: 750px; | 130 max-width: 750px; |
| 137 word-wrap: normal; | 131 word-wrap: normal; |
| 138 } | 132 } |
| 139 | 133 |
| 140 .suggest-box .details-popup .description { | 134 .suggest-box .details-popup .description { |
| 141 margin-top: 22px; | 135 margin-top: 22px; |
| 142 color: #808080; | 136 color: #808080; |
| 143 } | 137 } |
| OLD | NEW |