style(next): joined tabs to launch bar on horizontal layout

This commit is contained in:
Elian Doran 2024-12-01 09:53:15 +02:00
parent e7c4e037e0
commit c4085b0729
No known key found for this signature in database

View File

@ -653,6 +653,10 @@ html body #left-pane .quick-search:focus-within .search-button:hover,
height: var(--tab-height) !important; height: var(--tab-height) !important;
} }
#root-widget.horizontal-layout .tab-row-widget-container {
margin-top: calc((var(--tab-bar-height) - var(--tab-height)));
}
.tab-row-widget .note-tab .note-tab-wrapper { .tab-row-widget .note-tab .note-tab-wrapper {
height: var(--tab-height) !important; height: var(--tab-height) !important;
transition: background 75ms ease-in, transition: background 75ms ease-in,
@ -663,6 +667,11 @@ html body #left-pane .quick-search:focus-within .search-button:hover,
transition: none; transition: none;
} }
#root-widget.horizontal-layout .tab-row-widget .note-tab .note-tab-wrapper {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.tab-row-widget .note-tab:nth-child(1) { .tab-row-widget .note-tab:nth-child(1) {
transform: translate3d(var(--tab-first-item-horiz-offset), 0, 0); transform: translate3d(var(--tab-first-item-horiz-offset), 0, 0);
} }