Changeset 246410 in webkit
- Timestamp:
- Jun 13, 2019, 1:00:01 PM (7 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Views/SettingsTabContentView.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r246292 r246410 1 2019-06-13 Devin Rousso <drousso@apple.com> 2 3 Web Inspector: Settings: sticky header disappears when over scrolling 4 https://bugs.webkit.org/show_bug.cgi?id=198833 5 6 Reviewed by Joseph Pecoraro. 7 8 * UserInterface/Views/SettingsTabContentView.css: 9 (.content-view.settings .navigation-bar): 10 (.content-view.settings > .settings-view): Added. 11 (.content-view.settings): Deleted. 12 1 13 2019-06-10 Devin Rousso <drousso@apple.com> 2 14 -
trunk/Source/WebInspectorUI/UserInterface/Views/SettingsTabContentView.css
r244353 r246410 25 25 */ 26 26 27 .content-view.settings {28 padding-bottom: 6vh;29 overflow-y: auto;30 }31 32 27 .content-view.settings .navigation-bar { 33 position: sticky;34 top: 0;35 z-index: 1;36 28 background-color: white; 37 29 } … … 52 44 .content-view.settings .navigation-bar .item.radio.button.text-only.selected { 53 45 color: var(--selected-background-color) 46 } 47 48 .content-view.settings > .settings-view { 49 height: 100%; 50 overflow-y: auto; 51 padding-bottom: calc(var(--console-prompt-min-height) + 10px); 54 52 } 55 53
Note:
See TracChangeset
for help on using the changeset viewer.