125 lines
3.0 KiB
JavaScript
125 lines
3.0 KiB
JavaScript
export default {
|
|
css: `
|
|
.p-tabview-nav-container {
|
|
position: relative;
|
|
}
|
|
|
|
.p-tabview-scrollable > .p-tabview-nav-container {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.p-tabview-nav-content {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
scroll-behavior: smooth;
|
|
scrollbar-width: none;
|
|
overscroll-behavior: contain auto;
|
|
}
|
|
|
|
.p-tabview-nav {
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
flex: 1 1 auto;
|
|
background: var(--p-tabview-nav-background);
|
|
border: 1px solid var(--p-tabview-nav-border-color);
|
|
border-width: 0 0 1px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.p-tabview-nav-link {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-style: solid;
|
|
border-width: 0 0 1px 0;
|
|
border-color: transparent transparent var(--p-tabview-header-border-color) transparent;
|
|
color: var(--p-tabview-header-text-color);
|
|
padding: 1rem 1.125rem;
|
|
font-weight: 600;
|
|
border-top-right-radius: var(--p-rounded-base);
|
|
border-top-left-radius: var(--p-rounded-base);
|
|
transition: color var(--p-transition-duration), outline-color var(--p-transition-duration);
|
|
margin: 0 0 -1px 0;
|
|
outline-color: transparent;
|
|
}
|
|
|
|
.p-tabview-header:not(.p-disabled) .p-tabview-nav-link:focus-visible {
|
|
outline: var(--p-focus-ring-width) var(--p-focus-ring-style) var(--p-focus-ring-color);
|
|
outline-offset: -1px;
|
|
}
|
|
|
|
.p-tabview-header:not(.p-highlight):not(.p-disabled):hover >.p-tabview-nav-link {
|
|
color: var(--p-tabview-header-text-color-hover);
|
|
}
|
|
|
|
.p-tabview-header.p-highlight > .p-tabview-nav-link {
|
|
color: var(--p-primary-color);
|
|
}
|
|
|
|
.p-tabview-title {
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.p-tabview-nav-btn {
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 2;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--p-tabview-navigator-icon-background);
|
|
color: var(--p-tabview-navigator-icon-color);
|
|
width: 2.5rem;
|
|
border-radius: 0;
|
|
outline-color: transparent;
|
|
transition: color var(--p-transition-duration), outline-color var(--p-transition-duration);
|
|
box-shadow: var(--p-tabview-navigator-icon-box-shadow);
|
|
}
|
|
|
|
.p-tabview-nav-btn:focus-visible {
|
|
outline: var(--p-focus-ring-width) var(--p-focus-ring-style) var(--p-focus-ring-color);
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
.p-tabview-nav-btn:hover {
|
|
color: var(--p-tabview-navigator-icon-color-hover);
|
|
}
|
|
|
|
.p-tabview-nav-prev {
|
|
left: 0;
|
|
}
|
|
|
|
.p-tabview-nav-next {
|
|
right: 0;
|
|
}
|
|
|
|
.p-tabview-nav-content::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.p-tabview-panels {
|
|
background: var(--p-tabview-content-background);
|
|
color: var(--p-tabview-content-text-color);
|
|
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
|
}
|
|
|
|
.p-tabview-ink-bar {
|
|
z-index: 1;
|
|
display: block;
|
|
position: absolute;
|
|
bottom: -1px;
|
|
height: 1px;
|
|
background-color: var(--p-primary-color);
|
|
transition: 250ms cubic-bezier(0.35, 0, 0.25, 1);
|
|
}
|
|
`
|
|
};
|