OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 /* Styles for the intents list elements in intents_view.html. */ | 5 /* Styles for the intents list elements in intents_view.html. */ |
6 | 6 |
7 #intents-column-headers { | 7 #intents-column-headers { |
8 position: relative; | 8 position: relative; |
9 width: 100%; | 9 width: 100%; |
10 } | 10 } |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 text-overflow: ellipsis; | 116 text-overflow: ellipsis; |
117 } | 117 } |
118 | 118 |
119 .intents-item .intents-item-action { | 119 .intents-item .intents-item-action { |
120 display: table-cell; | 120 display: table-cell; |
121 padding: 2px 5px; | 121 padding: 2px 5px; |
122 } | 122 } |
123 | 123 |
124 .intents-item .intents-item-types { | 124 .intents-item .intents-item-types { |
125 display: table-cell; | 125 display: table-cell; |
| 126 overflow: hidden; |
126 padding: 2px 5px; | 127 padding: 2px 5px; |
127 overflow: hidden; | |
128 } | 128 } |
129 | 129 |
130 .intents-item .intents-item-url { | 130 .intents-item .intents-item-url { |
131 display: table-cell; | 131 display: table-cell; |
| 132 overflow: hidden; |
132 padding: 2px 5px; | 133 padding: 2px 5px; |
133 overflow: hidden; | |
134 text-overflow: ellipsis; | 134 text-overflow: ellipsis; |
135 } | 135 } |
136 | 136 |
137 .intents-items .intents-item:hover { | 137 .intents-items .intents-item:hover { |
138 background: rgb(238, 243, 249); | 138 background: rgb(238, 243, 249); |
139 border-color: rgb(100, 113, 135); | 139 border-color: rgb(100, 113, 135); |
140 } | 140 } |
141 | 141 |
142 .intents-items .intents-item[selected] { | 142 .intents-items .intents-item[selected] { |
143 background: rgb(245, 248, 248); | 143 background: rgb(245, 248, 248); |
144 border-color: #b2b2b2; | 144 border-color: #b2b2b2; |
145 } | 145 } |
146 | 146 |
147 .intents-items .intents-item[selected]:hover { | 147 .intents-items .intents-item[selected]:hover { |
148 background: rgb(245, 248, 248); | 148 background: rgb(245, 248, 248); |
149 border-color: rgb(100, 113, 135); | 149 border-color: rgb(100, 113, 135); |
150 } | 150 } |
151 | 151 |
152 /* Styles for the intents details box. */ | 152 /* Styles for the intents details box. */ |
153 | 153 |
154 .intents-details { | 154 .intents-details { |
155 background: rgb(245, 248, 248); | 155 background: rgb(245, 248, 248); |
| 156 border: 1px solid #b2b2b2; |
156 border-radius: 5px; | 157 border-radius: 5px; |
157 border: 1px solid #b2b2b2; | |
158 margin-top: 2px; | 158 margin-top: 2px; |
159 padding: 5px; | 159 padding: 5px; |
160 } | 160 } |
161 | 161 |
162 list.intents-list > .deletable-item[selected] .intents-details { | 162 list.intents-list > .deletable-item[selected] .intents-details { |
163 -webkit-user-select: text; | 163 -webkit-user-select: text; |
164 } | 164 } |
165 | 165 |
166 .intents-details-table { | 166 .intents-details-table { |
167 table-layout: fixed; | 167 table-layout: fixed; |
168 width: 100%; | 168 width: 100%; |
169 } | 169 } |
170 | 170 |
171 .intents-details-label { | 171 .intents-details-label { |
172 vertical-align: top; | 172 vertical-align: top; |
173 white-space: pre; | 173 white-space: pre; |
174 width: 10em; | 174 width: 10em; |
175 } | 175 } |
176 | 176 |
177 .intents-details-value { | 177 .intents-details-value { |
178 word-wrap: break-word; | 178 word-wrap: break-word; |
179 } | 179 } |
OLD | NEW |