Fixed #3820 - Panel: Footer Templating
parent
3ec57ea283
commit
be2f2acb38
|
@ -53,16 +53,20 @@ const PanelEvents = [
|
|||
const PanelSlots = [
|
||||
{
|
||||
name: 'header',
|
||||
description: "Custom content for the component's header"
|
||||
description: "Custom content for the component's header."
|
||||
},
|
||||
{
|
||||
name: 'icons',
|
||||
description: "Custom content for the header's icon"
|
||||
description: "Custom content for the header's icon."
|
||||
},
|
||||
{
|
||||
name: 'headericon',
|
||||
description: 'Custom header icon template of panel'
|
||||
}
|
||||
description: "Custom content for the component's header icon."
|
||||
},
|
||||
{
|
||||
name: 'fooetr',
|
||||
description: "Custom content for the component's footer."
|
||||
},
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
|
|
|
@ -72,6 +72,10 @@ export interface PanelPassThroughOptions {
|
|||
* Uses to pass attributes to the content's DOM element.
|
||||
*/
|
||||
content?: PanelPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the footer's DOM element.
|
||||
*/
|
||||
footer?: PanelPassThroughOptionType;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -148,6 +152,10 @@ export interface PanelSlots {
|
|||
*/
|
||||
collapsed: boolean;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom footer template.
|
||||
*/
|
||||
footer(): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -31,6 +31,9 @@
|
|||
<div class="p-panel-content" v-bind="ptm('content')">
|
||||
<slot></slot>
|
||||
</div>
|
||||
<div v-if="$slots.footer" class="p-panel-footer" v-bind="ptm('footer')">
|
||||
<slot name="footer"></slot>
|
||||
</div>
|
||||
</div>
|
||||
</transition>
|
||||
</div>
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #383838;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3998,15 +3998,19 @@
|
|||
border: 1px solid #3f4b5b;
|
||||
background: #2a323d;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1.25rem;
|
||||
border: 1px solid #3f4b5b;
|
||||
background: #2a323d;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3998,15 +3998,19 @@
|
|||
border: 1px solid #3f4b5b;
|
||||
background: #2a323d;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1.25rem;
|
||||
border: 1px solid #3f4b5b;
|
||||
background: #2a323d;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3998,15 +3998,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #212529;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1.25rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #212529;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3998,15 +3998,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #212529;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1.25rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #212529;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #a19f9d;
|
||||
background: #ffffff;
|
||||
color: #323130;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 2px;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #a19f9d;
|
||||
background: #ffffff;
|
||||
color: #323130;
|
||||
border-bottom-right-radius: 2px;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #0b213f;
|
||||
background: #071426;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3973,15 +3973,19 @@
|
|||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3973,15 +3973,19 @@
|
|||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3973,15 +3973,19 @@
|
|||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3973,15 +3973,19 @@
|
|||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #191919;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 1rem 1rem;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 1rem 1rem;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 1rem 1rem;
|
||||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 1rem 1rem;
|
||||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 0.75rem;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 0.75rem;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 0.75rem;
|
||||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4010,15 +4010,19 @@
|
|||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 0.75rem;
|
||||
border: 1px solid #e0e0e0;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4014,15 +4014,19 @@
|
|||
border: 1px solid #E5E9F0;
|
||||
background: #ffffff;
|
||||
color: #4C566A;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #E5E9F0;
|
||||
background: #ffffff;
|
||||
color: #4C566A;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #343a3f;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 1px;
|
||||
border-bottom-left-radius: 1px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #343a3f;
|
||||
border-bottom-right-radius: 1px;
|
||||
border-bottom-left-radius: 1px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3973,15 +3973,19 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3973,15 +3973,19 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3973,15 +3973,19 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #c8c8c8;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3961,15 +3961,19 @@
|
|||
border: 1px solid #dadada;
|
||||
background: #ffffff;
|
||||
color: #666666;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 2px;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.571rem 1rem;
|
||||
border: 1px solid #dadada;
|
||||
background: #ffffff;
|
||||
color: #666666;
|
||||
border-bottom-right-radius: 2px;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3985,15 +3985,19 @@
|
|||
border: 1px solid #3e4053;
|
||||
background: #282936;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #3e4053;
|
||||
background: #282936;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3985,15 +3985,19 @@
|
|||
border: 1px solid #dfe7ef;
|
||||
background: #ffffff;
|
||||
color: #043d75;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #dfe7ef;
|
||||
background: #ffffff;
|
||||
color: #043d75;
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4021,15 +4021,19 @@
|
|||
border: 1px solid #e5e7eb;
|
||||
background: #ffffff;
|
||||
color: #3f3f46;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 0.375rem;
|
||||
border-bottom-left-radius: 0.375rem;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.75rem 1.25rem;
|
||||
border: 1px solid #e5e7eb;
|
||||
background: #ffffff;
|
||||
color: #3f3f46;
|
||||
border-bottom-right-radius: 0.375rem;
|
||||
border-bottom-left-radius: 0.375rem;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -3986,15 +3986,19 @@
|
|||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 1px solid #304562;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4018,15 +4018,19 @@
|
|||
border: 2px solid #263238;
|
||||
background: #161d21;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 2px solid #263238;
|
||||
background: #161d21;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
|
@ -4018,15 +4018,19 @@
|
|||
border: 2px solid #ebebeb;
|
||||
background: #ffffff;
|
||||
color: #6c6c6c;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-content:last-child {
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
.p-panel .p-panel-footer {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 2px solid #ebebeb;
|
||||
background: #ffffff;
|
||||
color: #6c6c6c;
|
||||
border-bottom-right-radius: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue