joomla-ui-custom-elements
Version:
Joomla UI components as custom elements
137 lines (129 loc) • 2.85 kB
CSS
joomla-panels {
display: flex;
flex-direction: column;
}
joomla-panels > ul {
display: flex;
padding: 0;
margin: 0;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
list-style: outside none none;
background-color: #3073bb;
}
joomla-panels > ul[role=tablist] {
padding: 0;
margin: 0;
}
joomla-panels a[role=tab] {
position: relative;
display: block;
padding: 0.75rem 1rem 0.85rem;
color: #fff;
text-decoration: none;
}
joomla-panels a[role=tab][active] {
background-color: rgba(0, 0, 0, 0.2);
}
joomla-panels a[role=tab][active]::after {
position: absolute;
right: 0;
bottom: -1px;
left: 0;
height: 5px;
content: "";
background-color: rgba(0, 0, 0, 0.2);
opacity: 0.8;
}
joomla-panels > section {
display: none;
padding: 15px 0;
background-color: #fefefe;
}
joomla-panels > section[active] {
display: block;
}
joomla-panels[orientation=vertical] {
flex-direction: row;
align-items: flex-start;
}
joomla-panels[orientation=vertical] > ul {
flex-direction: column;
min-width: 30%;
height: auto;
overflow: hidden;
}
joomla-panels[orientation=vertical] li:last-of-type a {
border-bottom: 0;
}
joomla-panels[orientation=vertical] a {
position: relative;
display: block;
padding: 0.75rem 1rem 0.85rem;
color: #fff;
text-decoration: none;
}
joomla-panels[orientation=vertical] a[active] {
background-color: #fff;
background-image: none;
border-right: 0 none;
border-left: 0 none;
box-shadow: none;
}
joomla-panels[orientation=vertical] a[active]::after {
top: 0;
bottom: 0;
left: -1px;
width: 5px;
height: auto;
}
joomla-panels[orientation=vertical] > section {
padding: 15px 0;
border: 0 none;
box-shadow: none;
}
joomla-panels[view=accordion] > ul {
flex-direction: column;
white-space: normal;
}
joomla-panels[view=accordion] section {
display: none;
padding: 15px 0;
}
joomla-panels[view=accordion] section[active] {
display: block;
}
joomla-panels[view=accordion] [active] {
background-color: #fff;
}
joomla-panels[view=accordion] a[role=tab][active]::after {
top: 0;
left: 0;
width: 5px;
height: 100%;
}
joomla-panels[type=primary] a[role=tab][active]::after {
background-color: #006898;
}
joomla-panels[type=secondary] a[role=tab][active]::after {
background-color: #6c757d;
}
joomla-panels[type=success] a[role=tab][active]::after {
background-color: #438243;
}
joomla-panels[type=info] a[role=tab][active]::after {
background-color: #17a2b8;
}
joomla-panels[type=warning] a[role=tab][active]::after {
background-color: #f0ad4e;
}
joomla-panels[type=danger] a[role=tab][active]::after {
background-color: #d9534f;
}
joomla-panels[type=light] a[role=tab][active]::after {
background-color: #f8f9fa;
}
joomla-panels[type=dark] a[role=tab][active]::after {
background-color: #343a40;
}