primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View File

@ -0,0 +1,162 @@
@charset "UTF-8";
joomla-alert {
--jui-alert-min-width: 250px;
--jui-alert-padding: .5rem 1.25rem;
--jui-alert-margin: 0 0 1rem 0;
--jui-alert-border: 1px solid transparent;
--jui-alert-border-radius: .25rem;
--jui-alert-animation-duration: .5s;
--jui-alert-animation-timing-function: ease-in-out;
--jui-alert-button-color-dark: #000;
--jui-alert-button-color-light: #fff;
--jui-alert-success-color: #234423;
--jui-alert-success-background-color: #d9e6d9;
--jui-alert-success-border-color: #cadcca;
--jui-alert-success-link-color: #122212;
--jui-alert-info-color: #0c5460;
--jui-alert-info-background-color: #d1ecf1;
--jui-alert-info-border-color: #bee5eb;
--jui-alert-info-link-color: #062c33;
--jui-alert-warning-color: #7d5a29;
--jui-alert-warning-background-color: #fcefdc;
--jui-alert-warning-border-color: #fbe8cd;
--jui-alert-warning-link-color: #573e1c;
--jui-alert-danger-color: #712b29;
--jui-alert-danger-background-color: #f7dddc;
--jui-alert-danger-border-color: #f4cfce;
--jui-alert-danger-link-color: #4c1d1b;
min-width: var(--jui-alert-min-width, 250px);
padding: var(--jui-alert-padding, .5rem 1.25rem);
margin: var(--jui-alert-margin, 0 0 1rem 0);
border: var(--jui-alert-border, 1px solid transparent);
border-radius: var(--jui-alert-border-radius, .25rem);
-webkit-animation-duration: var(--jui-alert-animation-duration, .5s);
animation-duration: var(--jui-alert-animation-duration, .5s);
-webkit-animation-timing-function: var(--jui-alert-animation-timing-function, ease-in-out);
animation-timing-function: var(--jui-alert-animation-timing-function, ease-in-out);
display: block;
}
joomla-alert .joomla-alert--close {
float: right;
color: var(--jui-alert-button-color-dark, #000);
text-shadow: 0 1px 0 var(--jui-alert-button-color-light, #fff);
opacity: .5;
background: none;
border: 0;
padding: .2rem 1rem;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
position: relative;
top: -.5rem;
right: -1.25rem;
}
joomla-alert .joomla-alert--close:hover, joomla-alert .joomla-alert--close:focus {
color: var(--jui-alert-button-color-dark, #000);
cursor: pointer;
opacity: .75;
text-decoration: none;
}
joomla-alert[type="success"] {
color: var(--jui-alert-success-color, #234423);
background-color: var(--jui-alert-success-background-color, #d9e6d9);
border-color: var(--jui-alert-success-border-color, #cadcca);
}
joomla-alert[type="success"] hr {
border-top-color: var(--jui-alert-success-border-color, #cadcca);
}
joomla-alert[type="success"] .alert-link {
color: var(--jui-alert-success-link-color, #122212);
}
joomla-alert[type="info"] {
color: var(--jui-alert-info-color, #0c5460);
background-color: var(--jui-alert-info-background-color, #d1ecf1);
border-color: var(--jui-alert-info-border-color, #bee5eb);
}
joomla-alert[type="info"] hr {
border-top-color: var(--jui-alert-info-border-color, #bee5eb);
}
joomla-alert[type="info"] .alert-link {
color: var(--jui-alert-info-link-color, #062c33);
}
joomla-alert[type="warning"] {
color: var(--jui-alert-warning-color, #7d5a29);
background-color: var(--jui-alert-warning-background-color, #fcefdc);
border-color: var(--jui-alert-warning-border-color, #fbe8cd);
}
joomla-alert[type="warning"] hr {
border-top-color: var(--jui-alert-warning-border-color, #fbe8cd);
}
joomla-alert[type="warning"] .alert-link {
color: var(--jui-alert-warning-link-color, #573e1c);
}
joomla-alert[type="danger"] {
color: var(--jui-alert-danger-color, #712b29);
background-color: var(--jui-alert-danger-background-color, #f7dddc);
border-color: var(--jui-alert-danger-border-color, #f4cfce);
}
joomla-alert[type="danger"] hr {
border-top-color: var(--jui-alert-danger-border-color, #f4cfce);
}
joomla-alert[type="danger"] .alert-link {
color: var(--jui-alert-danger-link-color, #4c1d1b);
}
html[dir="rtl"] joomla-alert .joomla-alert--close, html[dir="rtl"] joomla-alert .joomla-alert-button--close {
float: left;
left: -1.25rem;
right: auto;
}
@-webkit-keyframes joomla-alert-fade-in {
0% {
opacity: 0;
}
}
@keyframes joomla-alert-fade-in {
0% {
opacity: 0;
}
}
@-webkit-keyframes joomla-alert-fade-out {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes joomla-alert-fade-out {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
joomla-alert {
-webkit-animation-duration: 1ms !important;
animation-duration: 1ms !important;
}
}

View File

@ -0,0 +1 @@
@charset "UTF-8";joomla-alert{--jui-alert-min-width:250px;--jui-alert-padding:.5rem 1.25rem;--jui-alert-margin:0 0 1rem 0;--jui-alert-border:1px solid transparent;--jui-alert-border-radius:.25rem;--jui-alert-animation-duration:.5s;--jui-alert-animation-timing-function:ease-in-out;--jui-alert-button-color-dark:#000;--jui-alert-button-color-light:#fff;--jui-alert-success-color:#234423;--jui-alert-success-background-color:#d9e6d9;--jui-alert-success-border-color:#cadcca;--jui-alert-success-link-color:#122212;--jui-alert-info-color:#0c5460;--jui-alert-info-background-color:#d1ecf1;--jui-alert-info-border-color:#bee5eb;--jui-alert-info-link-color:#062c33;--jui-alert-warning-color:#7d5a29;--jui-alert-warning-background-color:#fcefdc;--jui-alert-warning-border-color:#fbe8cd;--jui-alert-warning-link-color:#573e1c;--jui-alert-danger-color:#712b29;--jui-alert-danger-background-color:#f7dddc;--jui-alert-danger-border-color:#f4cfce;--jui-alert-danger-link-color:#4c1d1b;-webkit-animation-duration:var(--jui-alert-animation-duration,.5s);animation-duration:var(--jui-alert-animation-duration,.5s);-webkit-animation-timing-function:var(--jui-alert-animation-timing-function,ease-in-out);animation-timing-function:var(--jui-alert-animation-timing-function,ease-in-out);border:var(--jui-alert-border,1px solid transparent);border-radius:var(--jui-alert-border-radius,.25rem);margin:var(--jui-alert-margin,0 0 1rem 0);min-width:var(--jui-alert-min-width,250px);padding:var(--jui-alert-padding,.5rem 1.25rem);display:block}joomla-alert .joomla-alert--close{color:var(--jui-alert-button-color-dark,#000);float:right;opacity:.5;text-shadow:0 1px 0 var(--jui-alert-button-color-light,#fff);background:0 0;border:0;padding:.2rem 1rem;font-size:1.5rem;font-weight:700;line-height:1;position:relative;top:-.5rem;right:-1.25rem}joomla-alert .joomla-alert--close:focus,joomla-alert .joomla-alert--close:hover{color:var(--jui-alert-button-color-dark,#000);cursor:pointer;opacity:.75;text-decoration:none}joomla-alert[type=success]{background-color:var(--jui-alert-success-background-color,#d9e6d9);border-color:var(--jui-alert-success-border-color,#cadcca);color:var(--jui-alert-success-color,#234423)}joomla-alert[type=success] hr{border-top-color:var(--jui-alert-success-border-color,#cadcca)}joomla-alert[type=success] .alert-link{color:var(--jui-alert-success-link-color,#122212)}joomla-alert[type=info]{background-color:var(--jui-alert-info-background-color,#d1ecf1);border-color:var(--jui-alert-info-border-color,#bee5eb);color:var(--jui-alert-info-color,#0c5460)}joomla-alert[type=info] hr{border-top-color:var(--jui-alert-info-border-color,#bee5eb)}joomla-alert[type=info] .alert-link{color:var(--jui-alert-info-link-color,#062c33)}joomla-alert[type=warning]{background-color:var(--jui-alert-warning-background-color,#fcefdc);border-color:var(--jui-alert-warning-border-color,#fbe8cd);color:var(--jui-alert-warning-color,#7d5a29)}joomla-alert[type=warning] hr{border-top-color:var(--jui-alert-warning-border-color,#fbe8cd)}joomla-alert[type=warning] .alert-link{color:var(--jui-alert-warning-link-color,#573e1c)}joomla-alert[type=danger]{background-color:var(--jui-alert-danger-background-color,#f7dddc);border-color:var(--jui-alert-danger-border-color,#f4cfce);color:var(--jui-alert-danger-color,#712b29)}joomla-alert[type=danger] hr{border-top-color:var(--jui-alert-danger-border-color,#f4cfce)}joomla-alert[type=danger] .alert-link{color:var(--jui-alert-danger-link-color,#4c1d1b)}html[dir=rtl] joomla-alert .joomla-alert--close,html[dir=rtl] joomla-alert .joomla-alert-button--close{float:left;left:-1.25rem;right:auto}@-webkit-keyframes joomla-alert-fade-in{0%{opacity:0}}@keyframes joomla-alert-fade-in{0%{opacity:0}}@-webkit-keyframes joomla-alert-fade-out{0%{opacity:1}to{opacity:0}}@keyframes joomla-alert-fade-out{0%{opacity:1}to{opacity:0}}@media (prefers-reduced-motion:reduce){joomla-alert{-webkit-animation-duration:1ms!important;animation-duration:1ms!important}}

Binary file not shown.

View File

@ -0,0 +1,183 @@
@charset "UTF-8";
joomla-tab {
flex-direction: column;
display: flex;
}
joomla-tab[view="tabs"] > div[role="tablist"] {
white-space: nowrap;
list-style: outside none none;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-bottom: 0;
-o-border-image: ;
border-image: ;
border-radius: .25rem .25rem 0 0;
margin: 0;
padding: 0;
display: flex;
overflow: auto hidden;
box-shadow: inset 0 1px #fff, 0 2px 3px -3px #00000026, inset 0 -4px #0000000d, 0 0 3px #0000000a;
}
joomla-tab[view="accordion"] > div[role="tablist"] {
display: none;
}
joomla-tab button[role="tab"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #0d1321;
border: unset;
background-color: #0000;
padding: .75em 1em;
text-decoration: none;
display: block;
position: relative;
box-shadow: 1px 0 #0000000d;
}
joomla-tab button[role="tab"][aria-expanded="true"] {
background-color: #00000008;
background-image: linear-gradient(#0000, #0000000d 100%);
border-left: 0;
border-right: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
box-shadow: inset 2px 0 1px -1px #00000014, inset -2px 0 1px -1px #00000014, inset 0 1px #00000005;
}
joomla-tab button[aria-expanded="true"]:after {
content: "";
opacity: .8;
background-color: #006898;
height: 5px;
position: absolute;
bottom: -1px;
left: 0;
right: 0;
}
joomla-tab > joomla-tab-element {
background-color: #fefefe;
border: 1px solid #ccc;
border-radius: 0 0 .25rem .25rem;
padding: 15px;
display: none;
position: relative;
box-shadow: 0 0 3px #0000000a;
}
joomla-tab > joomla-tab-element[active] {
display: block;
}
joomla-tab[orientation="vertical"] {
flex-direction: row;
align-items: flex-start;
}
joomla-tab[orientation="vertical"] > div[role="tablist"] {
box-shadow: none;
border: 1px solid #ccc;
border-radius: .25rem;
flex-direction: column;
min-width: 30%;
height: auto;
overflow: hidden;
}
joomla-tab[orientation="vertical"] > div[role="tablist"] button:last-of-type {
border-bottom: 0;
}
joomla-tab[orientation="vertical"] > div[role="tablist"] button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #0d1321;
box-shadow: none;
background-color: #0000;
border-bottom: 1px solid #ddd;
padding: .75em 1em;
text-decoration: none;
display: block;
position: relative;
}
joomla-tab[orientation="vertical"] > div[role="tablist"] button[aria-expanded="true"] {
box-shadow: none;
background-color: #fff;
background-image: none;
border-left: 0;
border-right: 0;
}
joomla-tab[orientation="vertical"] > div[role="tablist"] button[aria-expanded="true"]:after {
width: 5px;
height: auto;
top: 0;
bottom: 0;
left: -1px;
}
joomla-tab[orientation="vertical"] > joomla-tab-element {
box-shadow: none;
border: 0;
padding: 15px;
}
joomla-tab[view="accordion"] {
white-space: normal;
border-radius: .25rem;
flex-direction: column;
box-shadow: inset 0 1px #fff, 0 0 3px #0000000a;
}
joomla-tab[view="accordion"] > button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #0d1321;
border: unset;
background-color: #f5f5f5;
padding: .75em 1em;
text-decoration: none;
display: block;
position: relative;
box-shadow: 1px 0 #0000000d;
}
joomla-tab[view="accordion"] > button[aria-expanded="true"], joomla-tab[view="accordion"] > button:focus {
background-color: #00000008;
background-image: linear-gradient(#0000, #0000000d 100%);
}
joomla-tab[view="accordion"] joomla-tab-element {
padding: 15px;
display: none;
}
joomla-tab[view="accordion"] joomla-tab-element[active] {
border-bottom: 1px solid #ddd;
display: block;
}
joomla-tab[view="accordion"] [active] {
background-color: #fff;
}
joomla-tab[view="accordion"] button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-bottom: 1px solid #ddd;
}
joomla-tab[view="accordion"] button[aria-expanded="true"]:after {
width: 5px;
height: 100%;
top: 0;
left: 0;
}

View File

@ -0,0 +1 @@
@charset "UTF-8";joomla-tab{flex-direction:column;display:flex}joomla-tab[view=tabs]>div[role=tablist]{white-space:nowrap;background-color:#f5f5f5;border:1px solid #ccc;border-bottom:0;-o-border-image:;border-image:;border-radius:.25rem .25rem 0 0;margin:0;padding:0;list-style:none;display:flex;overflow:auto hidden;box-shadow:inset 0 1px #fff,0 2px 3px -3px #00000026,inset 0 -4px #0000000d,0 0 3px #0000000a}joomla-tab[view=accordion]>div[role=tablist]{display:none}joomla-tab button[role=tab]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:unset;color:#0d1321;background-color:#0000;padding:.75em 1em;text-decoration:none;display:block;position:relative;box-shadow:1px 0 #0000000d}joomla-tab button[role=tab][aria-expanded=true]{background-color:#00000008;background-image:linear-gradient(#0000,#0000000d);border-left:0;border-right:0;border-top-left-radius:0;border-top-right-radius:0;box-shadow:inset 2px 0 1px -1px #00000014,inset -2px 0 1px -1px #00000014,inset 0 1px #00000005}joomla-tab button[aria-expanded=true]:after{content:"";opacity:.8;background-color:#006898;height:5px;position:absolute;bottom:-1px;left:0;right:0}joomla-tab>joomla-tab-element{background-color:#fefefe;border:1px solid #ccc;border-radius:0 0 .25rem .25rem;padding:15px;display:none;position:relative;box-shadow:0 0 3px #0000000a}joomla-tab>joomla-tab-element[active]{display:block}joomla-tab[orientation=vertical]{flex-direction:row;align-items:flex-start}joomla-tab[orientation=vertical]>div[role=tablist]{box-shadow:none;border:1px solid #ccc;border-radius:.25rem;flex-direction:column;min-width:30%;height:auto;overflow:hidden}joomla-tab[orientation=vertical]>div[role=tablist] button:last-of-type{border-bottom:0}joomla-tab[orientation=vertical]>div[role=tablist] button{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-shadow:none;color:#0d1321;background-color:#0000;border-bottom:1px solid #ddd;padding:.75em 1em;text-decoration:none;display:block;position:relative}joomla-tab[orientation=vertical]>div[role=tablist] button[aria-expanded=true]{box-shadow:none;background-color:#fff;background-image:none;border-left:0;border-right:0}joomla-tab[orientation=vertical]>div[role=tablist] button[aria-expanded=true]:after{width:5px;height:auto;top:0;bottom:0;left:-1px}joomla-tab[orientation=vertical]>joomla-tab-element{box-shadow:none;border:0;padding:15px}joomla-tab[view=accordion]{white-space:normal;border-radius:.25rem;flex-direction:column;box-shadow:inset 0 1px #fff,0 0 3px #0000000a}joomla-tab[view=accordion]>button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:unset;color:#0d1321;background-color:#f5f5f5;padding:.75em 1em;text-decoration:none;display:block;position:relative;box-shadow:1px 0 #0000000d}joomla-tab[view=accordion]>button:focus,joomla-tab[view=accordion]>button[aria-expanded=true]{background-color:#00000008;background-image:linear-gradient(#0000,#0000000d)}joomla-tab[view=accordion] joomla-tab-element{padding:15px;display:none}joomla-tab[view=accordion] joomla-tab-element[active]{border-bottom:1px solid #ddd;display:block}joomla-tab[view=accordion] [active]{background-color:#fff}joomla-tab[view=accordion] button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-bottom:1px solid #ddd}joomla-tab[view=accordion] button[aria-expanded=true]:after{width:5px;height:100%;top:0;left:0}

Binary file not shown.