OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 align-items: center; | 73 align-items: center; |
74 justify-content: center; | 74 justify-content: center; |
75 } | 75 } |
76 | 76 |
77 .storage-view.query { | 77 .storage-view.query { |
78 padding: 2px 0; | 78 padding: 2px 0; |
79 overflow-y: overlay; | 79 overflow-y: overlay; |
80 overflow-x: hidden; | 80 overflow-x: hidden; |
81 } | 81 } |
82 | 82 |
| 83 .storage-view .filter-bar { |
| 84 border-bottom: none; |
| 85 border-top: 1px solid #dadada; |
| 86 } |
| 87 |
83 .database-query-prompt { | 88 .database-query-prompt { |
84 position: relative; | 89 position: relative; |
85 padding: 1px 22px 1px 24px; | 90 padding: 1px 22px 1px 24px; |
86 min-height: 16px; | 91 min-height: 16px; |
87 white-space: pre-wrap; | 92 white-space: pre-wrap; |
88 -webkit-user-modify: read-write-plaintext-only; | 93 -webkit-user-modify: read-write-plaintext-only; |
89 -webkit-user-select: text; | 94 -webkit-user-select: text; |
90 } | 95 } |
91 | 96 |
92 .prompt-icon { | 97 .prompt-icon { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 left: 3px; | 150 left: 3px; |
146 right: 3px; | 151 right: 3px; |
147 max-width: 8px; | 152 max-width: 8px; |
148 max-height: 11px; | 153 max-height: 11px; |
149 overflow: hidden; | 154 overflow: hidden; |
150 } | 155 } |
151 | 156 |
152 .resources-sidebar { | 157 .resources-sidebar { |
153 padding: 0; | 158 padding: 0; |
154 } | 159 } |
OLD | NEW |