| 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 20 matching lines...) Expand all Loading... |
| 31 padding: 3px 8px 3px 8px; | 31 padding: 3px 8px 3px 8px; |
| 32 min-height: 18px; | 32 min-height: 18px; |
| 33 line-height: 15px; | 33 line-height: 15px; |
| 34 border-top: 1px solid #efefef; | 34 border-top: 1px solid #efefef; |
| 35 } | 35 } |
| 36 | 36 |
| 37 .breakpoint-entry [is=dt-checkbox] { | 37 .breakpoint-entry [is=dt-checkbox] { |
| 38 max-width: 100%; | 38 max-width: 100%; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .breakpoint-entry .dt-checkbox-text { | 41 .breakpoint-entry label { |
| 42 text-overflow: ellipsis; | 42 white-space: nowrap; |
| 43 overflow: hidden; | |
| 44 white-space: nowrap; | |
| 45 } | 43 } |
| 46 | 44 |
| 47 :not(.breakpoints-list-deactivated) > .breakpoint-entry:hover { | 45 :not(.breakpoints-list-deactivated) > .breakpoint-entry:hover { |
| 48 background-color: #eee; | 46 background-color: #eee; |
| 49 } | 47 } |
| 50 | 48 |
| 51 .breakpoint-entry > .source-text { | 49 .breakpoint-entry > .source-text { |
| 52 cursor: pointer; | 50 cursor: pointer; |
| 53 text-overflow: ellipsis; | 51 text-overflow: ellipsis; |
| 54 overflow: hidden; | 52 overflow: hidden; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 } | 130 } |
| 133 | 131 |
| 134 .dom-breakpoints-list > li { | 132 .dom-breakpoints-list > li { |
| 135 display: flex; | 133 display: flex; |
| 136 } | 134 } |
| 137 | 135 |
| 138 .dom-breakpoints-list .dom-breakpoint > div { | 136 .dom-breakpoints-list .dom-breakpoint > div { |
| 139 overflow: hidden; | 137 overflow: hidden; |
| 140 text-overflow: ellipsis; | 138 text-overflow: ellipsis; |
| 141 } | 139 } |
| OLD | NEW |