Changeset 203290 in webkit
- Timestamp:
- Jul 15, 2016, 12:01:56 PM (9 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r203254 r203290 1 2016-07-15 Timothy Hatcher <timothy@apple.com> 2 3 Web Inspector: Make Open Quickly and Goto Line dialogs match Xcode 8 4 https://bugs.webkit.org/show_bug.cgi?id=159823 5 rdar://problem/27376501 6 7 Reviewed by Brian Burg. 8 9 * UserInterface/Views/GoToLineDialog.css: 10 (.go-to-line-dialog): 11 (.go-to-line-dialog > div > input): 12 (.go-to-line-dialog > div > input::placeholder): 13 (.go-to-line-dialog > div > img): 14 (.go-to-line-dialog > div): Deleted. 15 * UserInterface/Views/OpenResourceDialog.css: 16 (.open-resource-dialog): 17 (.open-resource-dialog > .field): 18 (.open-resource-dialog > .field > input): 19 (.open-resource-dialog > .field > input::placeholder): 20 (.open-resource-dialog > .field > img): 21 (.open-resource-dialog > .tree-outline .item): Deleted. 22 (.open-resource-dialog > .tree-outline .item:first-child): Deleted. 23 1 24 2016-07-14 Joseph Pecoraro <pecoraro@apple.com> 2 25 -
trunk/Source/WebInspectorUI/UserInterface/Views/GoToLineDialog.css
r202066 r203290 27 27 position: relative; 28 28 left: 50%; 29 top: 50px;29 top: 21px; 30 30 width: calc(100% - 40px); 31 31 max-width: 452px; 32 height: 38px; 33 transform: translate(-50%, -50%); 34 padding: 3px; 32 height: 46px; 33 34 transform: translate(-50%, 0); 35 36 padding: 8px 3px; 37 35 38 border-radius: 5px; 36 background-color: hsla(0, 0%, 9 0%, 0.95);37 border: 1px hsl (0, 0%, 85%) solid;39 background-color: hsla(0, 0%, 95%, 0.8); 40 border: 1px hsla(0, 0%, 0%, 0.25) solid; 38 41 box-shadow: 1px 5px 20px 3px hsla(0, 0%, 0%, 0.33); 42 43 -webkit-backdrop-filter: blur(10px); 39 44 } 40 45 … … 42 47 width: 100%; 43 48 height: 100%; 44 border-radius: 4px;45 background-color: white;46 border: 1px hsl(0, 0%, 80%) solid;47 49 } 48 50 49 51 .go-to-line-dialog > div > input { 50 position: absolute; 51 left: 2px; 52 right: 36px; 52 display: block; 53 width: 100%; 53 54 border: none; 54 55 background-color: transparent; 55 56 font-size: 20px; 56 57 color: hsl(0, 0%, 4%); 57 padding: 0 0 1px 5px;58 padding: 0 30px 1px 7px; 58 59 outline: none; 60 -webkit-appearance: none; 59 61 } 60 62 61 63 .go-to-line-dialog > div > input::placeholder { 62 color: hsl(0, 0%, 52%);64 color: hsl(0, 0%, 0%, 0.25); 63 65 } 64 66 65 67 .go-to-line-dialog > div > img { 66 68 position: absolute; 67 top: 9px;68 right: 1 2px;69 top: 15px; 70 right: 10px; 69 71 padding: 2px; 70 72 border-radius: 9px; 71 width: 1 8px;72 height: 1 8px;73 background-color: hsl(0, 0%, 73%);73 width: 15px; 74 height: 15px; 75 background-color: hsl(0, 0%, 60%); 74 76 display: none; 75 77 content: url(../Images/CloseWhite.svg); -
trunk/Source/WebInspectorUI/UserInterface/Views/OpenResourceDialog.css
r202066 r203290 27 27 display: flex; 28 28 flex-direction: column; 29 29 30 position: absolute; 30 31 left: 50%; … … 36 37 37 38 transform: translate(-50%, 0); 39 38 40 border-radius: 5px; 39 background-color: hsl (0, 0%, 90%);40 border: 1px hsl (0, 0%, 70%) solid;41 background-color: hsla(0, 0%, 95%, 0.8); 42 border: 1px hsla(0, 0%, 0%, 0.25) solid; 41 43 box-shadow: 1px 5px 20px 3px hsla(0, 0%, 0%, 0.33); 44 45 -webkit-backdrop-filter: blur(10px); 42 46 43 47 z-index: var(--z-index-popover); … … 45 49 46 50 .open-resource-dialog > .field { 47 margin: 3px; 48 border-radius: 4px; 49 background-color: white; 50 border: 1px hsl(0, 0%, 80%) solid; 51 margin: 8px 3px; 51 52 } 52 53 … … 58 59 font-size: 20px; 59 60 color: hsl(0, 0%, 4%); 60 padding: 0 3 4px 1px 7px;61 padding: 0 30px 1px 7px; 61 62 outline: none; 63 -webkit-appearance: none; 62 64 } 63 65 64 66 .open-resource-dialog > .field > input::placeholder { 65 color: hsl(0, 0%, 52%);67 color: hsl(0, 0%, 0%, 0.25); 66 68 } 67 69 68 70 .open-resource-dialog > .field > img { 69 71 position: absolute; 70 top: 1 0px;71 right: 1 2px;72 top: 15px; 73 right: 10px; 72 74 padding: 2px; 73 75 border-radius: 9px; … … 97 99 98 100 .open-resource-dialog > .tree-outline .item { 99 border-top-color: hsl(0, 0%, 94%);100 }101 102 .open-resource-dialog > .tree-outline .item:first-child {103 101 border: none; 104 102 }
Note:
See TracChangeset
for help on using the changeset viewer.