Changeset 190640 in webkit
- Timestamp:
- Oct 6, 2015, 1:28:25 PM (10 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r190632 r190640 1 2015-10-06 Devin Rousso <dcrousso+webkit@gmail.com> 2 3 Web Inspector: Fix spacing of FindBanner prev/next buttons 4 https://bugs.webkit.org/show_bug.cgi?id=149717 5 6 Reviewed by Darin Adler. 7 8 The sizing and spacing of the previous and next buttons in the FindBanner 9 is slightly off and should be readjusted to ensure that both buttons are 10 the same size and have the same spacing. 11 12 * UserInterface/Views/FindBanner.css: 13 (.find-banner > button.segmented.right > .glyph): 14 (.find-banner > button.segmented): 15 (.find-banner > button.segmented > .glyph): 16 (.find-banner > button.segmented.left): Deleted. 17 (.find-banner > button.segmented.left > .glyph): Deleted. 18 (.find-banner > button.segmented.right): Deleted. 19 1 20 2015-10-06 Joseph Pecoraro <pecoraro@apple.com> 2 21 -
trunk/Source/WebInspectorUI/UserInterface/Views/FindBanner.css
r187105 r190640 144 144 border-top-right-radius: 0; 145 145 border-bottom-right-radius: 0; 146 147 146 margin-right: 0; 148 149 padding-left: 6px;150 padding-right: 6px;151 147 } 152 148 153 149 .find-banner > button.segmented.left > .glyph { 154 150 background-image: -webkit-canvas(find-banner-previous-arrow-normal); 155 background-size: 7px 11px;156 background-repeat: no-repeat;157 151 } 158 152 … … 164 158 border-top-left-radius: 0; 165 159 border-bottom-left-radius: 0; 166 167 160 margin-left: -1px; 168 169 padding-left: 5px;170 padding-right: 7px;171 161 } 172 162 173 163 .find-banner > button.segmented.right > .glyph { 174 164 background-image: -webkit-canvas(find-banner-next-arrow-normal); 175 background-size: 7px 11px; 176 background-repeat: no-repeat; 165 margin-left: 1px; 177 166 } 178 167 … … 183 172 .find-banner > button.segmented { 184 173 min-width: 22px; 185 padding-top: 3px; 186 padding-bottom: 2px; 174 padding: 3px 6px 2px; 175 } 176 177 .find-banner > button.segmented > .glyph { 178 background-size: 7px 11px; 179 background-repeat: no-repeat; 187 180 } 188 181
Note:
See TracChangeset
for help on using the changeset viewer.