diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a1088c3..afa1f137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ - Add generic block-level sectioning elements as custom components. Eg `
`, `
`, `
` etc - Add copy code to clipboard for `CodeBlock` - Add `RadioTabGroup` component -- Convert all millisecond values to seconds +- Convert all millisecond values to seconds #### ⚠️ BREAKING CHANGES ⚠️ - Remove `ThemeProvider` and `theme` prop from all components diff --git a/src/components/Sidebar/SidebarWrapper/sidebar-wrapper.css b/src/components/Sidebar/SidebarWrapper/sidebar-wrapper.css index 43556e45..e53cec73 100644 --- a/src/components/Sidebar/SidebarWrapper/sidebar-wrapper.css +++ b/src/components/Sidebar/SidebarWrapper/sidebar-wrapper.css @@ -46,18 +46,22 @@ position : absolute; } - [data-sidebar-item]:hover [data-sidebar-item-icon] + [data-sidebar-item-text] { - display : flex; - position : fixed; - left : 40px; - align-self : center; - border-radius : var(--sidebar-collapsed-item-border-radius); - padding : 4px 8px; - background-color : var(--sidebar-collapsed-item-bg); - color : var(--sidebar-collapsed-item-link-text); - font-size : 88%; - box-shadow : 0 4px 16px -2px rgba(0, 0, 0, 0.24); - } + /* TEMPORARY FIX */ + /* Impossible to fix this using the current implementation, and need */ + /* to find a better solution. Temporarily removing this feature. */ + /* ================================================================== */ + /*[data-sidebar-item]:hover [data-sidebar-item-icon] + [data-sidebar-item-text] {*/ + /* display : flex;*/ + /* position : fixed;*/ + /* left : 40px;*/ + /* align-self : center;*/ + /* border-radius : var(--sidebar-collapsed-item-border-radius);*/ + /* padding : 4px 8px;*/ + /* background-color : var(--sidebar-collapsed-item-bg);*/ + /* color : var(--sidebar-collapsed-item-link-text);*/ + /* font-size : 88%;*/ + /* box-shadow : 0 4px 16px -2px rgba(0, 0, 0, 0.24);*/ + /*}*/ [data-sidebar-foooter] { padding-left : 0; } }