From ceb23b0de7653262a37ad7308ad5cbf3bacad2ab Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:34:11 +0530 Subject: [PATCH 01/20] fixes incorrect position of dropdown on filter --- components/lib/dropdown/Dropdown.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/dropdown/Dropdown.vue b/components/lib/dropdown/Dropdown.vue index 6097da89e..d0f5b04bc 100755 --- a/components/lib/dropdown/Dropdown.vue +++ b/components/lib/dropdown/Dropdown.vue @@ -80,7 +80,7 @@ ref="filterInput" type="text" :value="filterValue" - @vue:mounted="onFilterUpdated" + @vue:updated="onFilterUpdated" :class="cx('filterInput')" :placeholder="filterPlaceholder" role="searchbox" From f24b20d5318e7e4012fc4e039fec2057ac540b1b Mon Sep 17 00:00:00 2001 From: mertsincan Date: Tue, 6 Feb 2024 13:39:59 +0000 Subject: [PATCH 02/20] Fixed #5223 - The `scrollToIndex` method on VirtualScroller does not scroll to the correct index when triggered twice. --- components/lib/virtualscroller/VirtualScroller.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/components/lib/virtualscroller/VirtualScroller.vue b/components/lib/virtualscroller/VirtualScroller.vue index 7e9b9e3c4..b394ab576 100644 --- a/components/lib/virtualscroller/VirtualScroller.vue +++ b/components/lib/virtualscroller/VirtualScroller.vue @@ -156,7 +156,7 @@ export default { return this.orientation === 'both'; }, scrollTo(options) { - this.lastScrollPos = this.both ? { top: 0, left: 0 } : 0; + //this.lastScrollPos = this.both ? { top: 0, left: 0 } : 0; this.element && this.element.scrollTo(options); }, scrollToIndex(index, behavior = 'auto') { @@ -166,6 +166,7 @@ export default { if (valid) { const first = this.first; + const { scrollTop = 0, scrollLeft = 0 } = this.element; const { numToleratedItems } = this.calculateNumItems(); const contentPos = this.getContentPosition(); const itemSize = this.itemSize; @@ -173,20 +174,23 @@ export default { const calculateCoord = (_first, _size, _cpos) => _first * _size + _cpos; const scrollTo = (left = 0, top = 0) => this.scrollTo({ left, top, behavior }); let newFirst = both ? { rows: 0, cols: 0 } : 0; - let isRangeChanged = false; + let isRangeChanged = false, + isScrollChanged = false; if (both) { newFirst = { rows: calculateFirst(index[0], numToleratedItems[0]), cols: calculateFirst(index[1], numToleratedItems[1]) }; scrollTo(calculateCoord(newFirst.cols, itemSize[1], contentPos.left), calculateCoord(newFirst.rows, itemSize[0], contentPos.top)); + isScrollChanged = this.lastScrollPos.top !== scrollTop || this.lastScrollPos.left !== scrollLeft; isRangeChanged = newFirst.rows !== first.rows || newFirst.cols !== first.cols; } else { newFirst = calculateFirst(index, numToleratedItems); - horizontal ? scrollTo(calculateCoord(newFirst, itemSize, contentPos.left), 0) : scrollTo(0, calculateCoord(newFirst, itemSize, contentPos.top)); + horizontal ? scrollTo(calculateCoord(newFirst, itemSize, contentPos.left), scrollTop) : scrollTo(scrollLeft, calculateCoord(newFirst, itemSize, contentPos.top)); + isScrollChanged = this.lastScrollPos !== (horizontal ? scrollLeft : scrollTop); isRangeChanged = newFirst !== first; } this.isRangeChanged = isRangeChanged; - this.first = newFirst; + isScrollChanged && (this.first = newFirst); } }, scrollInView(index, to, behavior = 'auto') { From 3875022414e48ead0913a427d60ed428038fae94 Mon Sep 17 00:00:00 2001 From: Dominic Fellbaum Date: Tue, 6 Feb 2024 18:21:22 +0100 Subject: [PATCH 03/20] Remove missed inputProps from InputSwitch --- components/lib/inputswitch/InputSwitch.d.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/lib/inputswitch/InputSwitch.d.ts b/components/lib/inputswitch/InputSwitch.d.ts index 8f0a2643c..b0f1b64fc 100755 --- a/components/lib/inputswitch/InputSwitch.d.ts +++ b/components/lib/inputswitch/InputSwitch.d.ts @@ -7,7 +7,6 @@ * @module inputswitch * */ -import { InputHTMLAttributes } from 'vue'; import { ComponentHooks } from '../basecomponent'; import { PassThroughOptions } from '../passthrough'; import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers'; @@ -136,10 +135,6 @@ export interface InputSwitchProps { * Inline style of the input field. */ inputStyle?: object | undefined; - /** - * Used to pass all properties of the HTMLInputElement to the focusable input element inside the component. - */ - inputProps?: InputHTMLAttributes | undefined; /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ From 9c6e96fb678a4dadcd91555213fb8132c770dbda Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 7 Feb 2024 05:55:39 +0000 Subject: [PATCH 04/20] Update API doc --- doc/common/apidoc/index.json | 8 -------- package-lock.json | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index 6f1b61374..db9de6fb2 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -31914,14 +31914,6 @@ "default": "", "description": "Inline style of the input field." }, - { - "name": "inputProps", - "optional": true, - "readonly": false, - "type": "InputHTMLAttributes", - "default": "", - "description": "Used to pass all properties of the HTMLInputElement to the focusable input element inside the component." - }, { "name": "ariaLabelledby", "optional": true, diff --git a/package-lock.json b/package-lock.json index 881fe5e1e..d376ba2b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "primevue", - "version": "3.48.0", + "version": "3.49.0-SNAPSHOT", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "primevue", - "version": "3.48.0", + "version": "3.49.0-SNAPSHOT", "hasInstallScript": true, "license": "MIT", "dependencies": { From dbafc8e1433fe045cacce0c57f0cf0143125c9af Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 7 Feb 2024 11:17:31 +0300 Subject: [PATCH 05/20] Fixed #5230 - Steps: Aura extension defect --- public/themes/aura-dark-amber/theme.css | 10 +++++----- public/themes/aura-dark-blue/theme.css | 10 +++++----- public/themes/aura-dark-cyan/theme.css | 10 +++++----- public/themes/aura-dark-green/theme.css | 10 +++++----- public/themes/aura-dark-indigo/theme.css | 10 +++++----- public/themes/aura-dark-lime/theme.css | 10 +++++----- public/themes/aura-dark-noir/theme.css | 10 +++++----- public/themes/aura-dark-pink/theme.css | 10 +++++----- public/themes/aura-dark-purple/theme.css | 10 +++++----- public/themes/aura-dark-teal/theme.css | 10 +++++----- public/themes/aura-light-amber/theme.css | 10 +++++----- public/themes/aura-light-blue/theme.css | 10 +++++----- public/themes/aura-light-cyan/theme.css | 10 +++++----- public/themes/aura-light-green/theme.css | 10 +++++----- public/themes/aura-light-indigo/theme.css | 10 +++++----- public/themes/aura-light-lime/theme.css | 10 +++++----- public/themes/aura-light-noir/theme.css | 10 +++++----- public/themes/aura-light-pink/theme.css | 10 +++++----- public/themes/aura-light-purple/theme.css | 10 +++++----- public/themes/aura-light-teal/theme.css | 10 +++++----- 20 files changed, 100 insertions(+), 100 deletions(-) diff --git a/public/themes/aura-dark-amber/theme.css b/public/themes/aura-dark-amber/theme.css index 326c2d6d8..30a6e6a21 100644 --- a/public/themes/aura-dark-amber/theme.css +++ b/public/themes/aura-dark-amber/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-blue/theme.css b/public/themes/aura-dark-blue/theme.css index 33f806718..760f0c8ae 100644 --- a/public/themes/aura-dark-blue/theme.css +++ b/public/themes/aura-dark-blue/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-cyan/theme.css b/public/themes/aura-dark-cyan/theme.css index a71eb14ad..e7422fa44 100644 --- a/public/themes/aura-dark-cyan/theme.css +++ b/public/themes/aura-dark-cyan/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-green/theme.css b/public/themes/aura-dark-green/theme.css index 4de07897e..4fe4100a1 100644 --- a/public/themes/aura-dark-green/theme.css +++ b/public/themes/aura-dark-green/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-indigo/theme.css b/public/themes/aura-dark-indigo/theme.css index 5d8fc8f64..00f1c06f4 100644 --- a/public/themes/aura-dark-indigo/theme.css +++ b/public/themes/aura-dark-indigo/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-lime/theme.css b/public/themes/aura-dark-lime/theme.css index eb21d6f22..50237b268 100644 --- a/public/themes/aura-dark-lime/theme.css +++ b/public/themes/aura-dark-lime/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-noir/theme.css b/public/themes/aura-dark-noir/theme.css index 644892b88..52f6fc435 100644 --- a/public/themes/aura-dark-noir/theme.css +++ b/public/themes/aura-dark-noir/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-pink/theme.css b/public/themes/aura-dark-pink/theme.css index de7c59a01..44638c1ef 100644 --- a/public/themes/aura-dark-pink/theme.css +++ b/public/themes/aura-dark-pink/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-purple/theme.css b/public/themes/aura-dark-purple/theme.css index 33168128e..24eb62f49 100644 --- a/public/themes/aura-dark-purple/theme.css +++ b/public/themes/aura-dark-purple/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-dark-teal/theme.css b/public/themes/aura-dark-teal/theme.css index cdd7f359b..9ca639a0b 100644 --- a/public/themes/aura-dark-teal/theme.css +++ b/public/themes/aura-dark-teal/theme.css @@ -11511,8 +11511,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11610,7 +11610,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11808,8 +11808,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-amber/theme.css b/public/themes/aura-light-amber/theme.css index e6282e020..c5d3000f0 100644 --- a/public/themes/aura-light-amber/theme.css +++ b/public/themes/aura-light-amber/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-blue/theme.css b/public/themes/aura-light-blue/theme.css index 733f0fc2c..e243709fc 100644 --- a/public/themes/aura-light-blue/theme.css +++ b/public/themes/aura-light-blue/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-cyan/theme.css b/public/themes/aura-light-cyan/theme.css index 63ac0f770..df63b0f71 100644 --- a/public/themes/aura-light-cyan/theme.css +++ b/public/themes/aura-light-cyan/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-green/theme.css b/public/themes/aura-light-green/theme.css index 80873dcf9..85eafe69f 100644 --- a/public/themes/aura-light-green/theme.css +++ b/public/themes/aura-light-green/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-indigo/theme.css b/public/themes/aura-light-indigo/theme.css index 20a0f0219..36f861984 100644 --- a/public/themes/aura-light-indigo/theme.css +++ b/public/themes/aura-light-indigo/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-lime/theme.css b/public/themes/aura-light-lime/theme.css index d5df5d6b4..f76b7148c 100644 --- a/public/themes/aura-light-lime/theme.css +++ b/public/themes/aura-light-lime/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-noir/theme.css b/public/themes/aura-light-noir/theme.css index badc8fcac..15480351c 100644 --- a/public/themes/aura-light-noir/theme.css +++ b/public/themes/aura-light-noir/theme.css @@ -11520,8 +11520,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11619,7 +11619,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11817,8 +11817,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-pink/theme.css b/public/themes/aura-light-pink/theme.css index ca83f86bb..2882863ae 100644 --- a/public/themes/aura-light-pink/theme.css +++ b/public/themes/aura-light-pink/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-purple/theme.css b/public/themes/aura-light-purple/theme.css index fcfef867b..c902afadc 100644 --- a/public/themes/aura-light-purple/theme.css +++ b/public/themes/aura-light-purple/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { diff --git a/public/themes/aura-light-teal/theme.css b/public/themes/aura-light-teal/theme.css index 89f84c7a0..7da301419 100644 --- a/public/themes/aura-light-teal/theme.css +++ b/public/themes/aura-light-teal/theme.css @@ -11512,8 +11512,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-selectbutton .p-button.p-highlight::before { @@ -11611,7 +11611,7 @@ margin-top: calc(-1rem + 1px); } .p-steps .p-steps-item:first-child::before { - width: calc(50% + math.div($stepsItemNumberWidth,2)); + width: calc(50% + 1rem); transform: translateX(100%); } .p-steps .p-steps-item:last-child::before { @@ -11809,8 +11809,8 @@ position: absolute; left: 0.25rem; top: 0.25rem; - width: calc(100% - .5rem); - height: calc(100% - .5rem); + width: calc(100% - 0.5rem); + height: calc(100% - 0.5rem); border-radius: 4px; } .p-togglebutton.p-highlight .p-button::before { From 901a1c1396bde4976125add75d934951265c6fdb Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 7 Feb 2024 12:03:48 +0300 Subject: [PATCH 06/20] Update InvalidDoc.vue --- doc/togglebutton/InvalidDoc.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/togglebutton/InvalidDoc.vue b/doc/togglebutton/InvalidDoc.vue index 857b4d391..e8b35371a 100644 --- a/doc/togglebutton/InvalidDoc.vue +++ b/doc/togglebutton/InvalidDoc.vue @@ -12,15 +12,15 @@ export default { data() { return { - checked: true, + checked: false, code: { basic: ` - + `, options: ` @@ -28,7 +28,7 @@ export default { export default { data() { return { - checked: true + checked: false } } }; @@ -37,7 +37,7 @@ export default { composition: ` From e10d0d5e5ff3aa107065a639beb54f06b70afb86 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 7 Feb 2024 12:16:21 +0300 Subject: [PATCH 07/20] Fixed #5231 - ConfirmPopup / OverlayPanel overwritten styles defect --- public/themes/arya-blue/theme.css | 8 ++++---- public/themes/arya-green/theme.css | 8 ++++---- public/themes/arya-orange/theme.css | 8 ++++---- public/themes/arya-purple/theme.css | 8 ++++---- public/themes/aura-dark-amber/theme.css | 8 ++++---- public/themes/aura-dark-blue/theme.css | 8 ++++---- public/themes/aura-dark-cyan/theme.css | 8 ++++---- public/themes/aura-dark-green/theme.css | 8 ++++---- public/themes/aura-dark-indigo/theme.css | 8 ++++---- public/themes/aura-dark-lime/theme.css | 8 ++++---- public/themes/aura-dark-noir/theme.css | 8 ++++---- public/themes/aura-dark-pink/theme.css | 8 ++++---- public/themes/aura-dark-purple/theme.css | 8 ++++---- public/themes/aura-dark-teal/theme.css | 8 ++++---- public/themes/aura-light-amber/theme.css | 11 ++++------- public/themes/aura-light-blue/theme.css | 11 ++++------- public/themes/aura-light-cyan/theme.css | 11 ++++------- public/themes/aura-light-green/theme.css | 11 ++++------- public/themes/aura-light-indigo/theme.css | 11 ++++------- public/themes/aura-light-lime/theme.css | 11 ++++------- public/themes/aura-light-noir/theme.css | 11 ++++------- public/themes/aura-light-pink/theme.css | 11 ++++------- public/themes/aura-light-purple/theme.css | 11 ++++------- public/themes/aura-light-teal/theme.css | 11 ++++------- public/themes/bootstrap4-dark-blue/theme.css | 8 ++++---- public/themes/bootstrap4-dark-purple/theme.css | 8 ++++---- public/themes/bootstrap4-light-blue/theme.css | 8 ++++---- public/themes/bootstrap4-light-purple/theme.css | 8 ++++---- public/themes/fluent-light/theme.css | 8 ++++---- public/themes/lara-dark-amber/theme.css | 8 ++++---- public/themes/lara-dark-blue/theme.css | 8 ++++---- public/themes/lara-dark-cyan/theme.css | 8 ++++---- public/themes/lara-dark-green/theme.css | 8 ++++---- public/themes/lara-dark-indigo/theme.css | 8 ++++---- public/themes/lara-dark-pink/theme.css | 8 ++++---- public/themes/lara-dark-purple/theme.css | 8 ++++---- public/themes/lara-dark-teal/theme.css | 8 ++++---- public/themes/lara-light-amber/theme.css | 8 ++++---- public/themes/lara-light-blue/theme.css | 8 ++++---- public/themes/lara-light-cyan/theme.css | 8 ++++---- public/themes/lara-light-green/theme.css | 8 ++++---- public/themes/lara-light-indigo/theme.css | 8 ++++---- public/themes/lara-light-pink/theme.css | 8 ++++---- public/themes/lara-light-purple/theme.css | 8 ++++---- public/themes/lara-light-teal/theme.css | 8 ++++---- public/themes/luna-amber/theme.css | 8 ++++---- public/themes/luna-blue/theme.css | 8 ++++---- public/themes/luna-green/theme.css | 8 ++++---- public/themes/luna-pink/theme.css | 8 ++++---- public/themes/md-dark-deeppurple/theme.css | 8 ++++---- public/themes/md-dark-indigo/theme.css | 8 ++++---- public/themes/md-light-deeppurple/theme.css | 8 ++++---- public/themes/md-light-indigo/theme.css | 8 ++++---- public/themes/mdc-dark-deeppurple/theme.css | 8 ++++---- public/themes/mdc-dark-indigo/theme.css | 8 ++++---- public/themes/mdc-light-deeppurple/theme.css | 8 ++++---- public/themes/mdc-light-indigo/theme.css | 8 ++++---- public/themes/mira/theme.css | 8 ++++---- public/themes/nano/theme.css | 8 ++++---- public/themes/nova-accent/theme.css | 8 ++++---- public/themes/nova-alt/theme.css | 8 ++++---- public/themes/nova-vue/theme.css | 8 ++++---- public/themes/nova/theme.css | 8 ++++---- public/themes/rhea/theme.css | 8 ++++---- public/themes/saga-blue/theme.css | 8 ++++---- public/themes/saga-green/theme.css | 8 ++++---- public/themes/saga-orange/theme.css | 8 ++++---- public/themes/saga-purple/theme.css | 8 ++++---- public/themes/soho-dark/theme.css | 8 ++++---- public/themes/soho-light/theme.css | 8 ++++---- public/themes/tailwind-light/theme.css | 8 ++++---- public/themes/vela-blue/theme.css | 8 ++++---- public/themes/vela-green/theme.css | 8 ++++---- public/themes/vela-orange/theme.css | 8 ++++---- public/themes/vela-purple/theme.css | 8 ++++---- public/themes/viva-dark/theme.css | 8 ++++---- public/themes/viva-light/theme.css | 8 ++++---- 77 files changed, 308 insertions(+), 338 deletions(-) diff --git a/public/themes/arya-blue/theme.css b/public/themes/arya-blue/theme.css index fcc138548..634d995fe 100644 --- a/public/themes/arya-blue/theme.css +++ b/public/themes/arya-blue/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } @@ -6773,12 +6773,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } diff --git a/public/themes/arya-green/theme.css b/public/themes/arya-green/theme.css index cbac4314d..ef2d847a5 100644 --- a/public/themes/arya-green/theme.css +++ b/public/themes/arya-green/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } @@ -6773,12 +6773,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } diff --git a/public/themes/arya-orange/theme.css b/public/themes/arya-orange/theme.css index 69a31be3a..14a0e2d09 100644 --- a/public/themes/arya-orange/theme.css +++ b/public/themes/arya-orange/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } @@ -6773,12 +6773,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } diff --git a/public/themes/arya-purple/theme.css b/public/themes/arya-purple/theme.css index e48401cfc..bc85ddb04 100644 --- a/public/themes/arya-purple/theme.css +++ b/public/themes/arya-purple/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } @@ -6773,12 +6773,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(30, 30, 30, 0); border-bottom-color: #1e1e1e; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(56, 56, 56, 0); border-bottom-color: #353535; } diff --git a/public/themes/aura-dark-amber/theme.css b/public/themes/aura-dark-amber/theme.css index 30a6e6a21..f621769c4 100644 --- a/public/themes/aura-dark-amber/theme.css +++ b/public/themes/aura-dark-amber/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-blue/theme.css b/public/themes/aura-dark-blue/theme.css index 760f0c8ae..b7600fb7b 100644 --- a/public/themes/aura-dark-blue/theme.css +++ b/public/themes/aura-dark-blue/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-cyan/theme.css b/public/themes/aura-dark-cyan/theme.css index e7422fa44..e80c0827e 100644 --- a/public/themes/aura-dark-cyan/theme.css +++ b/public/themes/aura-dark-cyan/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-green/theme.css b/public/themes/aura-dark-green/theme.css index 4fe4100a1..451a0dfd9 100644 --- a/public/themes/aura-dark-green/theme.css +++ b/public/themes/aura-dark-green/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-indigo/theme.css b/public/themes/aura-dark-indigo/theme.css index 00f1c06f4..7de73ce37 100644 --- a/public/themes/aura-dark-indigo/theme.css +++ b/public/themes/aura-dark-indigo/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-lime/theme.css b/public/themes/aura-dark-lime/theme.css index 50237b268..ca37ff373 100644 --- a/public/themes/aura-dark-lime/theme.css +++ b/public/themes/aura-dark-lime/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-noir/theme.css b/public/themes/aura-dark-noir/theme.css index 52f6fc435..2d8f0d2a2 100644 --- a/public/themes/aura-dark-noir/theme.css +++ b/public/themes/aura-dark-noir/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-pink/theme.css b/public/themes/aura-dark-pink/theme.css index 44638c1ef..bdb517bc9 100644 --- a/public/themes/aura-dark-pink/theme.css +++ b/public/themes/aura-dark-pink/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-purple/theme.css b/public/themes/aura-dark-purple/theme.css index 24eb62f49..6691b450b 100644 --- a/public/themes/aura-dark-purple/theme.css +++ b/public/themes/aura-dark-purple/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-dark-teal/theme.css b/public/themes/aura-dark-teal/theme.css index 9ca639a0b..e22ae9307 100644 --- a/public/themes/aura-dark-teal/theme.css +++ b/public/themes/aura-dark-teal/theme.css @@ -6514,12 +6514,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } @@ -6841,12 +6841,12 @@ color: #020617; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(24, 24, 27, 0); border-bottom-color: #18181b; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 63, 70, 0); border-bottom-color: #3c3c43; } diff --git a/public/themes/aura-light-amber/theme.css b/public/themes/aura-light-amber/theme.css index c5d3000f0..43c39a71d 100644 --- a/public/themes/aura-light-amber/theme.css +++ b/public/themes/aura-light-amber/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-blue/theme.css b/public/themes/aura-light-blue/theme.css index e243709fc..c61ecea62 100644 --- a/public/themes/aura-light-blue/theme.css +++ b/public/themes/aura-light-blue/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-cyan/theme.css b/public/themes/aura-light-cyan/theme.css index df63b0f71..c74373ad7 100644 --- a/public/themes/aura-light-cyan/theme.css +++ b/public/themes/aura-light-cyan/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-green/theme.css b/public/themes/aura-light-green/theme.css index 85eafe69f..f7b7ba8e1 100644 --- a/public/themes/aura-light-green/theme.css +++ b/public/themes/aura-light-green/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-indigo/theme.css b/public/themes/aura-light-indigo/theme.css index 36f861984..d8840dff7 100644 --- a/public/themes/aura-light-indigo/theme.css +++ b/public/themes/aura-light-indigo/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-lime/theme.css b/public/themes/aura-light-lime/theme.css index f76b7148c..74b3a7a67 100644 --- a/public/themes/aura-light-lime/theme.css +++ b/public/themes/aura-light-lime/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-noir/theme.css b/public/themes/aura-light-noir/theme.css index 15480351c..169a25f0a 100644 --- a/public/themes/aura-light-noir/theme.css +++ b/public/themes/aura-light-noir/theme.css @@ -6524,12 +6524,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6851,12 +6851,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11265,9 +11265,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-pink/theme.css b/public/themes/aura-light-pink/theme.css index 2882863ae..723199347 100644 --- a/public/themes/aura-light-pink/theme.css +++ b/public/themes/aura-light-pink/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-purple/theme.css b/public/themes/aura-light-purple/theme.css index c902afadc..40c977ff6 100644 --- a/public/themes/aura-light-purple/theme.css +++ b/public/themes/aura-light-purple/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/aura-light-teal/theme.css b/public/themes/aura-light-teal/theme.css index 7da301419..ad8439a77 100644 --- a/public/themes/aura-light-teal/theme.css +++ b/public/themes/aura-light-teal/theme.css @@ -6516,12 +6516,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -6843,12 +6843,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(226, 232, 240, 0); border-bottom-color: #d3dce8; } @@ -11257,9 +11257,6 @@ .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon { margin-right: 0.5rem; } - .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-text { - /*line-height: 1.5;*/ - } .p-panelmenu .p-panelmenu-content { border-radius: 6px; padding: 0 0 0 1rem; diff --git a/public/themes/bootstrap4-dark-blue/theme.css b/public/themes/bootstrap4-dark-blue/theme.css index 1affb2919..2a9553edc 100644 --- a/public/themes/bootstrap4-dark-blue/theme.css +++ b/public/themes/bootstrap4-dark-blue/theme.css @@ -6507,12 +6507,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(42, 50, 61, 0); border-bottom-color: #2a323d; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 75, 91, 0); border-bottom-color: #3c4756; } @@ -6834,12 +6834,12 @@ color: #151515; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(42, 50, 61, 0); border-bottom-color: #2a323d; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 75, 91, 0); border-bottom-color: #3c4756; } diff --git a/public/themes/bootstrap4-dark-purple/theme.css b/public/themes/bootstrap4-dark-purple/theme.css index 155899058..f0f546513 100644 --- a/public/themes/bootstrap4-dark-purple/theme.css +++ b/public/themes/bootstrap4-dark-purple/theme.css @@ -6507,12 +6507,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(42, 50, 61, 0); border-bottom-color: #2a323d; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 75, 91, 0); border-bottom-color: #3c4756; } @@ -6834,12 +6834,12 @@ color: #151515; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(42, 50, 61, 0); border-bottom-color: #2a323d; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(63, 75, 91, 0); border-bottom-color: #3c4756; } diff --git a/public/themes/bootstrap4-light-blue/theme.css b/public/themes/bootstrap4-light-blue/theme.css index a9be4d01f..5672f6384 100644 --- a/public/themes/bootstrap4-light-blue/theme.css +++ b/public/themes/bootstrap4-light-blue/theme.css @@ -6507,12 +6507,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(0, 0, 0, 0); border-bottom-color: rgba(0, 0, 0, 0.2); } @@ -6834,12 +6834,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(0, 0, 0, 0); border-bottom-color: rgba(0, 0, 0, 0.2); } diff --git a/public/themes/bootstrap4-light-purple/theme.css b/public/themes/bootstrap4-light-purple/theme.css index e745362ff..2c26b6497 100644 --- a/public/themes/bootstrap4-light-purple/theme.css +++ b/public/themes/bootstrap4-light-purple/theme.css @@ -6507,12 +6507,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(0, 0, 0, 0); border-bottom-color: rgba(0, 0, 0, 0.2); } @@ -6834,12 +6834,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(0, 0, 0, 0); border-bottom-color: rgba(0, 0, 0, 0.2); } diff --git a/public/themes/fluent-light/theme.css b/public/themes/fluent-light/theme.css index 59be489dc..b729314ad 100644 --- a/public/themes/fluent-light/theme.css +++ b/public/themes/fluent-light/theme.css @@ -6421,12 +6421,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6748,12 +6748,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-dark-amber/theme.css b/public/themes/lara-dark-amber/theme.css index 8cdb21bcf..4556b8834 100644 --- a/public/themes/lara-dark-amber/theme.css +++ b/public/themes/lara-dark-amber/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-dark-blue/theme.css b/public/themes/lara-dark-blue/theme.css index 1503bf398..235df9a5d 100644 --- a/public/themes/lara-dark-blue/theme.css +++ b/public/themes/lara-dark-blue/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-dark-cyan/theme.css b/public/themes/lara-dark-cyan/theme.css index 3e77d8691..eb26748e5 100644 --- a/public/themes/lara-dark-cyan/theme.css +++ b/public/themes/lara-dark-cyan/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-dark-green/theme.css b/public/themes/lara-dark-green/theme.css index 725af1451..9a5b9dfca 100644 --- a/public/themes/lara-dark-green/theme.css +++ b/public/themes/lara-dark-green/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-dark-indigo/theme.css b/public/themes/lara-dark-indigo/theme.css index 4b9343073..3be4c8dd6 100644 --- a/public/themes/lara-dark-indigo/theme.css +++ b/public/themes/lara-dark-indigo/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-dark-pink/theme.css b/public/themes/lara-dark-pink/theme.css index 562ad53f1..9b0d64447 100644 --- a/public/themes/lara-dark-pink/theme.css +++ b/public/themes/lara-dark-pink/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-dark-purple/theme.css b/public/themes/lara-dark-purple/theme.css index eee01d740..51df42364 100644 --- a/public/themes/lara-dark-purple/theme.css +++ b/public/themes/lara-dark-purple/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-dark-teal/theme.css b/public/themes/lara-dark-teal/theme.css index e65c0cc86..4a465479b 100644 --- a/public/themes/lara-dark-teal/theme.css +++ b/public/themes/lara-dark-teal/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } @@ -6816,12 +6816,12 @@ color: #030712; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 41, 55, 0); border-bottom-color: #1f2937; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(66, 75, 87, 0); border-bottom-color: #3f4753; } diff --git a/public/themes/lara-light-amber/theme.css b/public/themes/lara-light-amber/theme.css index bf8c04940..f76702d4e 100644 --- a/public/themes/lara-light-amber/theme.css +++ b/public/themes/lara-light-amber/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-light-blue/theme.css b/public/themes/lara-light-blue/theme.css index 840600c3b..59ee46268 100644 --- a/public/themes/lara-light-blue/theme.css +++ b/public/themes/lara-light-blue/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-light-cyan/theme.css b/public/themes/lara-light-cyan/theme.css index fd0a37818..5935ddf4c 100644 --- a/public/themes/lara-light-cyan/theme.css +++ b/public/themes/lara-light-cyan/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-light-green/theme.css b/public/themes/lara-light-green/theme.css index 15b6a6653..36797ceae 100644 --- a/public/themes/lara-light-green/theme.css +++ b/public/themes/lara-light-green/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-light-indigo/theme.css b/public/themes/lara-light-indigo/theme.css index d5298d576..1c52238b5 100644 --- a/public/themes/lara-light-indigo/theme.css +++ b/public/themes/lara-light-indigo/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-light-pink/theme.css b/public/themes/lara-light-pink/theme.css index 61e9f833b..3908c96e4 100644 --- a/public/themes/lara-light-pink/theme.css +++ b/public/themes/lara-light-pink/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-light-purple/theme.css b/public/themes/lara-light-purple/theme.css index 55eddec68..8bc767f56 100644 --- a/public/themes/lara-light-purple/theme.css +++ b/public/themes/lara-light-purple/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/lara-light-teal/theme.css b/public/themes/lara-light-teal/theme.css index ce1fc6e60..7991e3504 100644 --- a/public/themes/lara-light-teal/theme.css +++ b/public/themes/lara-light-teal/theme.css @@ -6489,12 +6489,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6816,12 +6816,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/luna-amber/theme.css b/public/themes/luna-amber/theme.css index fbd3cfd7b..eb64fcdf4 100644 --- a/public/themes/luna-amber/theme.css +++ b/public/themes/luna-amber/theme.css @@ -6433,12 +6433,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } @@ -6760,12 +6760,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } diff --git a/public/themes/luna-blue/theme.css b/public/themes/luna-blue/theme.css index 226acfc6d..49d8ec025 100644 --- a/public/themes/luna-blue/theme.css +++ b/public/themes/luna-blue/theme.css @@ -6433,12 +6433,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } @@ -6760,12 +6760,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } diff --git a/public/themes/luna-green/theme.css b/public/themes/luna-green/theme.css index 77c3d5ef9..f493065f6 100644 --- a/public/themes/luna-green/theme.css +++ b/public/themes/luna-green/theme.css @@ -6433,12 +6433,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } @@ -6760,12 +6760,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } diff --git a/public/themes/luna-pink/theme.css b/public/themes/luna-pink/theme.css index 50b10af86..2355a90b0 100644 --- a/public/themes/luna-pink/theme.css +++ b/public/themes/luna-pink/theme.css @@ -6433,12 +6433,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } @@ -6760,12 +6760,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(50, 50, 50, 0); border-bottom-color: #323232; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(25, 25, 25, 0); border-bottom-color: #181818; } diff --git a/public/themes/md-dark-deeppurple/theme.css b/public/themes/md-dark-deeppurple/theme.css index 4b8f94daf..8758a4d9d 100644 --- a/public/themes/md-dark-deeppurple/theme.css +++ b/public/themes/md-dark-deeppurple/theme.css @@ -6520,12 +6520,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } @@ -6847,12 +6847,12 @@ color: #121212; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } diff --git a/public/themes/md-dark-indigo/theme.css b/public/themes/md-dark-indigo/theme.css index ffee7aec2..6019d39a2 100644 --- a/public/themes/md-dark-indigo/theme.css +++ b/public/themes/md-dark-indigo/theme.css @@ -6520,12 +6520,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } @@ -6847,12 +6847,12 @@ color: #121212; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } diff --git a/public/themes/md-light-deeppurple/theme.css b/public/themes/md-light-deeppurple/theme.css index 07cf8b611..7f87dfc64 100644 --- a/public/themes/md-light-deeppurple/theme.css +++ b/public/themes/md-light-deeppurple/theme.css @@ -6519,12 +6519,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6846,12 +6846,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/md-light-indigo/theme.css b/public/themes/md-light-indigo/theme.css index 93c18fcee..ddcbd51cc 100644 --- a/public/themes/md-light-indigo/theme.css +++ b/public/themes/md-light-indigo/theme.css @@ -6519,12 +6519,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6846,12 +6846,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/mdc-dark-deeppurple/theme.css b/public/themes/mdc-dark-deeppurple/theme.css index 0db21832b..c3eeb52e3 100644 --- a/public/themes/mdc-dark-deeppurple/theme.css +++ b/public/themes/mdc-dark-deeppurple/theme.css @@ -6520,12 +6520,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } @@ -6847,12 +6847,12 @@ color: #121212; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } diff --git a/public/themes/mdc-dark-indigo/theme.css b/public/themes/mdc-dark-indigo/theme.css index 75975d5c7..a92ab8f5e 100644 --- a/public/themes/mdc-dark-indigo/theme.css +++ b/public/themes/mdc-dark-indigo/theme.css @@ -6520,12 +6520,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } @@ -6847,12 +6847,12 @@ color: #121212; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #262626; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 38, 38, 0); border-bottom-color: #242424; } diff --git a/public/themes/mdc-light-deeppurple/theme.css b/public/themes/mdc-light-deeppurple/theme.css index 133e6a27b..7fe073dee 100644 --- a/public/themes/mdc-light-deeppurple/theme.css +++ b/public/themes/mdc-light-deeppurple/theme.css @@ -6519,12 +6519,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6846,12 +6846,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/mdc-light-indigo/theme.css b/public/themes/mdc-light-indigo/theme.css index 7f8f4d99b..32ef8a4f0 100644 --- a/public/themes/mdc-light-indigo/theme.css +++ b/public/themes/mdc-light-indigo/theme.css @@ -6519,12 +6519,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6846,12 +6846,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/mira/theme.css b/public/themes/mira/theme.css index c555a37bf..ff3b22672 100644 --- a/public/themes/mira/theme.css +++ b/public/themes/mira/theme.css @@ -6474,12 +6474,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6801,12 +6801,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/nano/theme.css b/public/themes/nano/theme.css index 2a49ebee8..ccd4e4138 100644 --- a/public/themes/nano/theme.css +++ b/public/themes/nano/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6773,12 +6773,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/nova-accent/theme.css b/public/themes/nova-accent/theme.css index 19f147394..cd0b0bee4 100644 --- a/public/themes/nova-accent/theme.css +++ b/public/themes/nova-accent/theme.css @@ -6421,12 +6421,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } @@ -6748,12 +6748,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } diff --git a/public/themes/nova-alt/theme.css b/public/themes/nova-alt/theme.css index d47b56b4c..9aab6fa71 100644 --- a/public/themes/nova-alt/theme.css +++ b/public/themes/nova-alt/theme.css @@ -6433,12 +6433,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } @@ -6760,12 +6760,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } diff --git a/public/themes/nova-vue/theme.css b/public/themes/nova-vue/theme.css index 72b670fd1..0b38e063c 100644 --- a/public/themes/nova-vue/theme.css +++ b/public/themes/nova-vue/theme.css @@ -6433,12 +6433,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } @@ -6760,12 +6760,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } diff --git a/public/themes/nova/theme.css b/public/themes/nova/theme.css index 3679180c8..4db50110b 100644 --- a/public/themes/nova/theme.css +++ b/public/themes/nova/theme.css @@ -6433,12 +6433,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } @@ -6760,12 +6760,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(200, 200, 200, 0); border-bottom-color: #bebebe; } diff --git a/public/themes/rhea/theme.css b/public/themes/rhea/theme.css index 3eda88bca..847e64aa6 100644 --- a/public/themes/rhea/theme.css +++ b/public/themes/rhea/theme.css @@ -6421,12 +6421,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(241, 241, 241, 0); border-bottom-color: #e5e5e5; } @@ -6748,12 +6748,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(241, 241, 241, 0); border-bottom-color: #e5e5e5; } diff --git a/public/themes/saga-blue/theme.css b/public/themes/saga-blue/theme.css index 89900317e..ecbe23d9f 100644 --- a/public/themes/saga-blue/theme.css +++ b/public/themes/saga-blue/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6773,12 +6773,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/saga-green/theme.css b/public/themes/saga-green/theme.css index 38e38ae4d..1ffe7295b 100644 --- a/public/themes/saga-green/theme.css +++ b/public/themes/saga-green/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6773,12 +6773,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/saga-orange/theme.css b/public/themes/saga-orange/theme.css index a9faaa2ce..247904c1b 100644 --- a/public/themes/saga-orange/theme.css +++ b/public/themes/saga-orange/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6773,12 +6773,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/saga-purple/theme.css b/public/themes/saga-purple/theme.css index d888fb445..820779c23 100644 --- a/public/themes/saga-purple/theme.css +++ b/public/themes/saga-purple/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6773,12 +6773,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/soho-dark/theme.css b/public/themes/soho-dark/theme.css index 71d749d97..18258be2d 100644 --- a/public/themes/soho-dark/theme.css +++ b/public/themes/soho-dark/theme.css @@ -6494,12 +6494,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(40, 41, 54, 0); border-bottom-color: #282936; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(62, 64, 83, 0); border-bottom-color: #3b3d4f; } @@ -6821,12 +6821,12 @@ color: #1c1d26; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(40, 41, 54, 0); border-bottom-color: #282936; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(62, 64, 83, 0); border-bottom-color: #3b3d4f; } diff --git a/public/themes/soho-light/theme.css b/public/themes/soho-light/theme.css index b86fb3502..516fd6453 100644 --- a/public/themes/soho-light/theme.css +++ b/public/themes/soho-light/theme.css @@ -6494,12 +6494,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6821,12 +6821,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/tailwind-light/theme.css b/public/themes/tailwind-light/theme.css index c90fa6bc9..edac5c9eb 100644 --- a/public/themes/tailwind-light/theme.css +++ b/public/themes/tailwind-light/theme.css @@ -6481,12 +6481,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6808,12 +6808,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } diff --git a/public/themes/vela-blue/theme.css b/public/themes/vela-blue/theme.css index d118c512a..7b665d515 100644 --- a/public/themes/vela-blue/theme.css +++ b/public/themes/vela-blue/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } @@ -6773,12 +6773,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } diff --git a/public/themes/vela-green/theme.css b/public/themes/vela-green/theme.css index 4daae3ff0..2485c10ef 100644 --- a/public/themes/vela-green/theme.css +++ b/public/themes/vela-green/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } @@ -6773,12 +6773,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } diff --git a/public/themes/vela-orange/theme.css b/public/themes/vela-orange/theme.css index e1425b0a0..b5842fecd 100644 --- a/public/themes/vela-orange/theme.css +++ b/public/themes/vela-orange/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } @@ -6773,12 +6773,12 @@ color: #212529; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } diff --git a/public/themes/vela-purple/theme.css b/public/themes/vela-purple/theme.css index daebd2fbd..63ddfcf70 100644 --- a/public/themes/vela-purple/theme.css +++ b/public/themes/vela-purple/theme.css @@ -6446,12 +6446,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } @@ -6773,12 +6773,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(31, 45, 64, 0); border-bottom-color: #1f2d40; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(48, 69, 98, 0); border-bottom-color: #2e425d; } diff --git a/public/themes/viva-dark/theme.css b/public/themes/viva-dark/theme.css index 9ea859022..aec0e2aca 100644 --- a/public/themes/viva-dark/theme.css +++ b/public/themes/viva-dark/theme.css @@ -6527,12 +6527,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(22, 29, 33, 0); border-bottom-color: #161d21; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 50, 56, 0); border-bottom-color: #243035; } @@ -6854,12 +6854,12 @@ color: #121212; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(22, 29, 33, 0); border-bottom-color: #161d21; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(38, 50, 56, 0); border-bottom-color: #243035; } diff --git a/public/themes/viva-light/theme.css b/public/themes/viva-light/theme.css index cab1ff908..8db3a4c90 100644 --- a/public/themes/viva-light/theme.css +++ b/public/themes/viva-light/theme.css @@ -6527,12 +6527,12 @@ margin: 0; } .p-confirm-popup:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-confirm-popup:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } @@ -6854,12 +6854,12 @@ color: #ffffff; } .p-overlaypanel:after { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; } .p-overlaypanel:before { - border: solid transparent; + border-style: solid; border-color: rgba(255, 255, 255, 0); border-bottom-color: #f2f2f2; } From 2781cae180c3dc4005a37c016fd48ae44a8dadde Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 7 Feb 2024 13:13:30 +0300 Subject: [PATCH 08/20] Refactor #5231 - For Divider and Badge --- public/themes/arya-blue/theme.css | 19 +++++++------------ public/themes/arya-green/theme.css | 19 +++++++------------ public/themes/arya-orange/theme.css | 19 +++++++------------ public/themes/arya-purple/theme.css | 19 +++++++------------ public/themes/aura-dark-amber/theme.css | 19 +++++++------------ public/themes/aura-dark-blue/theme.css | 19 +++++++------------ public/themes/aura-dark-cyan/theme.css | 19 +++++++------------ public/themes/aura-dark-green/theme.css | 19 +++++++------------ public/themes/aura-dark-indigo/theme.css | 19 +++++++------------ public/themes/aura-dark-lime/theme.css | 19 +++++++------------ public/themes/aura-dark-noir/theme.css | 19 +++++++------------ public/themes/aura-dark-pink/theme.css | 19 +++++++------------ public/themes/aura-dark-purple/theme.css | 19 +++++++------------ public/themes/aura-dark-teal/theme.css | 19 +++++++------------ public/themes/aura-light-amber/theme.css | 19 +++++++------------ public/themes/aura-light-blue/theme.css | 19 +++++++------------ public/themes/aura-light-cyan/theme.css | 19 +++++++------------ public/themes/aura-light-green/theme.css | 19 +++++++------------ public/themes/aura-light-indigo/theme.css | 19 +++++++------------ public/themes/aura-light-lime/theme.css | 19 +++++++------------ public/themes/aura-light-noir/theme.css | 19 +++++++------------ public/themes/aura-light-pink/theme.css | 19 +++++++------------ public/themes/aura-light-purple/theme.css | 19 +++++++------------ public/themes/aura-light-teal/theme.css | 19 +++++++------------ public/themes/bootstrap4-dark-blue/theme.css | 19 +++++++------------ .../themes/bootstrap4-dark-purple/theme.css | 19 +++++++------------ public/themes/bootstrap4-light-blue/theme.css | 19 +++++++------------ .../themes/bootstrap4-light-purple/theme.css | 19 +++++++------------ public/themes/fluent-light/theme.css | 19 +++++++------------ public/themes/lara-dark-amber/theme.css | 19 +++++++------------ public/themes/lara-dark-blue/theme.css | 19 +++++++------------ public/themes/lara-dark-cyan/theme.css | 19 +++++++------------ public/themes/lara-dark-green/theme.css | 19 +++++++------------ public/themes/lara-dark-indigo/theme.css | 19 +++++++------------ public/themes/lara-dark-pink/theme.css | 19 +++++++------------ public/themes/lara-dark-purple/theme.css | 19 +++++++------------ public/themes/lara-dark-teal/theme.css | 19 +++++++------------ public/themes/lara-light-amber/theme.css | 19 +++++++------------ public/themes/lara-light-blue/theme.css | 19 +++++++------------ public/themes/lara-light-cyan/theme.css | 19 +++++++------------ public/themes/lara-light-green/theme.css | 19 +++++++------------ public/themes/lara-light-indigo/theme.css | 19 +++++++------------ public/themes/lara-light-pink/theme.css | 19 +++++++------------ public/themes/lara-light-purple/theme.css | 19 +++++++------------ public/themes/lara-light-teal/theme.css | 19 +++++++------------ public/themes/luna-amber/theme.css | 19 +++++++------------ public/themes/luna-blue/theme.css | 19 +++++++------------ public/themes/luna-green/theme.css | 19 +++++++------------ public/themes/luna-pink/theme.css | 19 +++++++------------ public/themes/md-dark-deeppurple/theme.css | 19 +++++++------------ public/themes/md-dark-indigo/theme.css | 19 +++++++------------ public/themes/md-light-deeppurple/theme.css | 19 +++++++------------ public/themes/md-light-indigo/theme.css | 19 +++++++------------ public/themes/mdc-dark-deeppurple/theme.css | 19 +++++++------------ public/themes/mdc-dark-indigo/theme.css | 19 +++++++------------ public/themes/mdc-light-deeppurple/theme.css | 19 +++++++------------ public/themes/mdc-light-indigo/theme.css | 19 +++++++------------ public/themes/mira/theme.css | 19 +++++++------------ public/themes/nano/theme.css | 19 +++++++------------ public/themes/nova-accent/theme.css | 19 +++++++------------ public/themes/nova-alt/theme.css | 19 +++++++------------ public/themes/nova-vue/theme.css | 19 +++++++------------ public/themes/nova/theme.css | 19 +++++++------------ public/themes/rhea/theme.css | 19 +++++++------------ public/themes/saga-blue/theme.css | 19 +++++++------------ public/themes/saga-green/theme.css | 19 +++++++------------ public/themes/saga-orange/theme.css | 19 +++++++------------ public/themes/saga-purple/theme.css | 19 +++++++------------ public/themes/soho-dark/theme.css | 19 +++++++------------ public/themes/soho-light/theme.css | 19 +++++++------------ public/themes/tailwind-light/theme.css | 19 +++++++------------ public/themes/vela-blue/theme.css | 19 +++++++------------ public/themes/vela-green/theme.css | 19 +++++++------------ public/themes/vela-orange/theme.css | 19 +++++++------------ public/themes/vela-purple/theme.css | 19 +++++++------------ public/themes/viva-dark/theme.css | 19 +++++++------------ public/themes/viva-light/theme.css | 19 +++++++------------ 77 files changed, 539 insertions(+), 924 deletions(-) diff --git a/public/themes/arya-blue/theme.css b/public/themes/arya-blue/theme.css index 634d995fe..863b2d46d 100644 --- a/public/themes/arya-blue/theme.css +++ b/public/themes/arya-blue/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/arya-green/theme.css b/public/themes/arya-green/theme.css index ef2d847a5..2efba754a 100644 --- a/public/themes/arya-green/theme.css +++ b/public/themes/arya-green/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/arya-orange/theme.css b/public/themes/arya-orange/theme.css index 14a0e2d09..64bd76a0b 100644 --- a/public/themes/arya-orange/theme.css +++ b/public/themes/arya-orange/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/arya-purple/theme.css b/public/themes/arya-purple/theme.css index bc85ddb04..e1d184375 100644 --- a/public/themes/arya-purple/theme.css +++ b/public/themes/arya-purple/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-amber/theme.css b/public/themes/aura-dark-amber/theme.css index f621769c4..e774285c6 100644 --- a/public/themes/aura-dark-amber/theme.css +++ b/public/themes/aura-dark-amber/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-blue/theme.css b/public/themes/aura-dark-blue/theme.css index b7600fb7b..3bbd65209 100644 --- a/public/themes/aura-dark-blue/theme.css +++ b/public/themes/aura-dark-blue/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-cyan/theme.css b/public/themes/aura-dark-cyan/theme.css index e80c0827e..f65fbe784 100644 --- a/public/themes/aura-dark-cyan/theme.css +++ b/public/themes/aura-dark-cyan/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-green/theme.css b/public/themes/aura-dark-green/theme.css index 451a0dfd9..52e1b9088 100644 --- a/public/themes/aura-dark-green/theme.css +++ b/public/themes/aura-dark-green/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-indigo/theme.css b/public/themes/aura-dark-indigo/theme.css index 7de73ce37..b6494e982 100644 --- a/public/themes/aura-dark-indigo/theme.css +++ b/public/themes/aura-dark-indigo/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-lime/theme.css b/public/themes/aura-dark-lime/theme.css index ca37ff373..9a3792361 100644 --- a/public/themes/aura-dark-lime/theme.css +++ b/public/themes/aura-dark-lime/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-noir/theme.css b/public/themes/aura-dark-noir/theme.css index 2d8f0d2a2..cf2c8d70b 100644 --- a/public/themes/aura-dark-noir/theme.css +++ b/public/themes/aura-dark-noir/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-pink/theme.css b/public/themes/aura-dark-pink/theme.css index bdb517bc9..986caa1d4 100644 --- a/public/themes/aura-dark-pink/theme.css +++ b/public/themes/aura-dark-pink/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-purple/theme.css b/public/themes/aura-dark-purple/theme.css index 6691b450b..b2700a89e 100644 --- a/public/themes/aura-dark-purple/theme.css +++ b/public/themes/aura-dark-purple/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-dark-teal/theme.css b/public/themes/aura-dark-teal/theme.css index e22ae9307..2e811ec82 100644 --- a/public/themes/aura-dark-teal/theme.css +++ b/public/themes/aura-dark-teal/theme.css @@ -5987,27 +5987,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9889,7 +9884,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-amber/theme.css b/public/themes/aura-light-amber/theme.css index 43c39a71d..df1a5fb9e 100644 --- a/public/themes/aura-light-amber/theme.css +++ b/public/themes/aura-light-amber/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-blue/theme.css b/public/themes/aura-light-blue/theme.css index c61ecea62..b5eb0b7bb 100644 --- a/public/themes/aura-light-blue/theme.css +++ b/public/themes/aura-light-blue/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-cyan/theme.css b/public/themes/aura-light-cyan/theme.css index c74373ad7..c3bb6c2ab 100644 --- a/public/themes/aura-light-cyan/theme.css +++ b/public/themes/aura-light-cyan/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-green/theme.css b/public/themes/aura-light-green/theme.css index f7b7ba8e1..053d4f0ab 100644 --- a/public/themes/aura-light-green/theme.css +++ b/public/themes/aura-light-green/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-indigo/theme.css b/public/themes/aura-light-indigo/theme.css index d8840dff7..0e757c682 100644 --- a/public/themes/aura-light-indigo/theme.css +++ b/public/themes/aura-light-indigo/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-lime/theme.css b/public/themes/aura-light-lime/theme.css index 74b3a7a67..3639820e9 100644 --- a/public/themes/aura-light-lime/theme.css +++ b/public/themes/aura-light-lime/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-noir/theme.css b/public/themes/aura-light-noir/theme.css index 169a25f0a..e525a98a4 100644 --- a/public/themes/aura-light-noir/theme.css +++ b/public/themes/aura-light-noir/theme.css @@ -5997,27 +5997,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9899,7 +9894,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-pink/theme.css b/public/themes/aura-light-pink/theme.css index 723199347..1bf282f9f 100644 --- a/public/themes/aura-light-pink/theme.css +++ b/public/themes/aura-light-pink/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-purple/theme.css b/public/themes/aura-light-purple/theme.css index 40c977ff6..f1b4e1f3b 100644 --- a/public/themes/aura-light-purple/theme.css +++ b/public/themes/aura-light-purple/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/aura-light-teal/theme.css b/public/themes/aura-light-teal/theme.css index ad8439a77..1f5c98c98 100644 --- a/public/themes/aura-light-teal/theme.css +++ b/public/themes/aura-light-teal/theme.css @@ -5989,27 +5989,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9891,7 +9886,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/bootstrap4-dark-blue/theme.css b/public/themes/bootstrap4-dark-blue/theme.css index 2a9553edc..6bf579a66 100644 --- a/public/themes/bootstrap4-dark-blue/theme.css +++ b/public/themes/bootstrap4-dark-blue/theme.css @@ -5980,27 +5980,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9820,7 +9815,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/bootstrap4-dark-purple/theme.css b/public/themes/bootstrap4-dark-purple/theme.css index f0f546513..c2d4ae979 100644 --- a/public/themes/bootstrap4-dark-purple/theme.css +++ b/public/themes/bootstrap4-dark-purple/theme.css @@ -5980,27 +5980,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9820,7 +9815,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/bootstrap4-light-blue/theme.css b/public/themes/bootstrap4-light-blue/theme.css index 5672f6384..a5dbf1c15 100644 --- a/public/themes/bootstrap4-light-blue/theme.css +++ b/public/themes/bootstrap4-light-blue/theme.css @@ -5980,27 +5980,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9820,7 +9815,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/bootstrap4-light-purple/theme.css b/public/themes/bootstrap4-light-purple/theme.css index 2c26b6497..764f93ae4 100644 --- a/public/themes/bootstrap4-light-purple/theme.css +++ b/public/themes/bootstrap4-light-purple/theme.css @@ -5980,27 +5980,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9820,7 +9815,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/fluent-light/theme.css b/public/themes/fluent-light/theme.css index b729314ad..9da3026b4 100644 --- a/public/themes/fluent-light/theme.css +++ b/public/themes/fluent-light/theme.css @@ -5894,27 +5894,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9710,7 +9705,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-amber/theme.css b/public/themes/lara-dark-amber/theme.css index 4556b8834..9db74c890 100644 --- a/public/themes/lara-dark-amber/theme.css +++ b/public/themes/lara-dark-amber/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-blue/theme.css b/public/themes/lara-dark-blue/theme.css index 235df9a5d..05ff15c19 100644 --- a/public/themes/lara-dark-blue/theme.css +++ b/public/themes/lara-dark-blue/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-cyan/theme.css b/public/themes/lara-dark-cyan/theme.css index eb26748e5..24bf897d3 100644 --- a/public/themes/lara-dark-cyan/theme.css +++ b/public/themes/lara-dark-cyan/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-green/theme.css b/public/themes/lara-dark-green/theme.css index 9a5b9dfca..b49addafd 100644 --- a/public/themes/lara-dark-green/theme.css +++ b/public/themes/lara-dark-green/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-indigo/theme.css b/public/themes/lara-dark-indigo/theme.css index 3be4c8dd6..e1ea53b9f 100644 --- a/public/themes/lara-dark-indigo/theme.css +++ b/public/themes/lara-dark-indigo/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-pink/theme.css b/public/themes/lara-dark-pink/theme.css index 9b0d64447..ae456c1ba 100644 --- a/public/themes/lara-dark-pink/theme.css +++ b/public/themes/lara-dark-pink/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-purple/theme.css b/public/themes/lara-dark-purple/theme.css index 51df42364..8404ee967 100644 --- a/public/themes/lara-dark-purple/theme.css +++ b/public/themes/lara-dark-purple/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-dark-teal/theme.css b/public/themes/lara-dark-teal/theme.css index 4a465479b..efa80f493 100644 --- a/public/themes/lara-dark-teal/theme.css +++ b/public/themes/lara-dark-teal/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-amber/theme.css b/public/themes/lara-light-amber/theme.css index f76702d4e..ad9d3509d 100644 --- a/public/themes/lara-light-amber/theme.css +++ b/public/themes/lara-light-amber/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-blue/theme.css b/public/themes/lara-light-blue/theme.css index 59ee46268..b15e399ea 100644 --- a/public/themes/lara-light-blue/theme.css +++ b/public/themes/lara-light-blue/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-cyan/theme.css b/public/themes/lara-light-cyan/theme.css index 5935ddf4c..9bd4a3dfd 100644 --- a/public/themes/lara-light-cyan/theme.css +++ b/public/themes/lara-light-cyan/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-green/theme.css b/public/themes/lara-light-green/theme.css index 36797ceae..73b0f9db8 100644 --- a/public/themes/lara-light-green/theme.css +++ b/public/themes/lara-light-green/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-indigo/theme.css b/public/themes/lara-light-indigo/theme.css index 1c52238b5..72e603946 100644 --- a/public/themes/lara-light-indigo/theme.css +++ b/public/themes/lara-light-indigo/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-pink/theme.css b/public/themes/lara-light-pink/theme.css index 3908c96e4..411e94c4b 100644 --- a/public/themes/lara-light-pink/theme.css +++ b/public/themes/lara-light-pink/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-purple/theme.css b/public/themes/lara-light-purple/theme.css index 8bc767f56..e8f84391b 100644 --- a/public/themes/lara-light-purple/theme.css +++ b/public/themes/lara-light-purple/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/lara-light-teal/theme.css b/public/themes/lara-light-teal/theme.css index 7991e3504..c593f567f 100644 --- a/public/themes/lara-light-teal/theme.css +++ b/public/themes/lara-light-teal/theme.css @@ -5962,27 +5962,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/luna-amber/theme.css b/public/themes/luna-amber/theme.css index eb64fcdf4..391c84caa 100644 --- a/public/themes/luna-amber/theme.css +++ b/public/themes/luna-amber/theme.css @@ -5906,27 +5906,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9722,7 +9717,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/luna-blue/theme.css b/public/themes/luna-blue/theme.css index 49d8ec025..9d1299a00 100644 --- a/public/themes/luna-blue/theme.css +++ b/public/themes/luna-blue/theme.css @@ -5906,27 +5906,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9722,7 +9717,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/luna-green/theme.css b/public/themes/luna-green/theme.css index f493065f6..387f68c0a 100644 --- a/public/themes/luna-green/theme.css +++ b/public/themes/luna-green/theme.css @@ -5906,27 +5906,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9722,7 +9717,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/luna-pink/theme.css b/public/themes/luna-pink/theme.css index 2355a90b0..de1c0209a 100644 --- a/public/themes/luna-pink/theme.css +++ b/public/themes/luna-pink/theme.css @@ -5906,27 +5906,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9722,7 +9717,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/md-dark-deeppurple/theme.css b/public/themes/md-dark-deeppurple/theme.css index 8758a4d9d..2db955eef 100644 --- a/public/themes/md-dark-deeppurple/theme.css +++ b/public/themes/md-dark-deeppurple/theme.css @@ -5993,27 +5993,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9895,7 +9890,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/md-dark-indigo/theme.css b/public/themes/md-dark-indigo/theme.css index 6019d39a2..4184342d2 100644 --- a/public/themes/md-dark-indigo/theme.css +++ b/public/themes/md-dark-indigo/theme.css @@ -5993,27 +5993,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9895,7 +9890,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/md-light-deeppurple/theme.css b/public/themes/md-light-deeppurple/theme.css index 7f87dfc64..e725daf02 100644 --- a/public/themes/md-light-deeppurple/theme.css +++ b/public/themes/md-light-deeppurple/theme.css @@ -5992,27 +5992,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9894,7 +9889,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/md-light-indigo/theme.css b/public/themes/md-light-indigo/theme.css index ddcbd51cc..b7be1a700 100644 --- a/public/themes/md-light-indigo/theme.css +++ b/public/themes/md-light-indigo/theme.css @@ -5992,27 +5992,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9894,7 +9889,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/mdc-dark-deeppurple/theme.css b/public/themes/mdc-dark-deeppurple/theme.css index c3eeb52e3..79b558949 100644 --- a/public/themes/mdc-dark-deeppurple/theme.css +++ b/public/themes/mdc-dark-deeppurple/theme.css @@ -5993,27 +5993,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9895,7 +9890,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/mdc-dark-indigo/theme.css b/public/themes/mdc-dark-indigo/theme.css index a92ab8f5e..4c29001c0 100644 --- a/public/themes/mdc-dark-indigo/theme.css +++ b/public/themes/mdc-dark-indigo/theme.css @@ -5993,27 +5993,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9895,7 +9890,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/mdc-light-deeppurple/theme.css b/public/themes/mdc-light-deeppurple/theme.css index 7fe073dee..f291e43dd 100644 --- a/public/themes/mdc-light-deeppurple/theme.css +++ b/public/themes/mdc-light-deeppurple/theme.css @@ -5992,27 +5992,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9894,7 +9889,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/mdc-light-indigo/theme.css b/public/themes/mdc-light-indigo/theme.css index 32ef8a4f0..2110d0f17 100644 --- a/public/themes/mdc-light-indigo/theme.css +++ b/public/themes/mdc-light-indigo/theme.css @@ -5992,27 +5992,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9894,7 +9889,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/mira/theme.css b/public/themes/mira/theme.css index ff3b22672..2ae7bc205 100644 --- a/public/themes/mira/theme.css +++ b/public/themes/mira/theme.css @@ -5947,27 +5947,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9787,7 +9782,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/nano/theme.css b/public/themes/nano/theme.css index ccd4e4138..79ce76aa0 100644 --- a/public/themes/nano/theme.css +++ b/public/themes/nano/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/nova-accent/theme.css b/public/themes/nova-accent/theme.css index cd0b0bee4..c4b8dc192 100644 --- a/public/themes/nova-accent/theme.css +++ b/public/themes/nova-accent/theme.css @@ -5894,27 +5894,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9710,7 +9705,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/nova-alt/theme.css b/public/themes/nova-alt/theme.css index 9aab6fa71..c7704ed85 100644 --- a/public/themes/nova-alt/theme.css +++ b/public/themes/nova-alt/theme.css @@ -5906,27 +5906,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9722,7 +9717,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/nova-vue/theme.css b/public/themes/nova-vue/theme.css index 0b38e063c..0355e3712 100644 --- a/public/themes/nova-vue/theme.css +++ b/public/themes/nova-vue/theme.css @@ -5906,27 +5906,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9722,7 +9717,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/nova/theme.css b/public/themes/nova/theme.css index 4db50110b..0ad311adc 100644 --- a/public/themes/nova/theme.css +++ b/public/themes/nova/theme.css @@ -5906,27 +5906,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9722,7 +9717,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/rhea/theme.css b/public/themes/rhea/theme.css index 847e64aa6..77e4de43f 100644 --- a/public/themes/rhea/theme.css +++ b/public/themes/rhea/theme.css @@ -5894,27 +5894,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9710,7 +9705,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/saga-blue/theme.css b/public/themes/saga-blue/theme.css index ecbe23d9f..2ee11ca43 100644 --- a/public/themes/saga-blue/theme.css +++ b/public/themes/saga-blue/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/saga-green/theme.css b/public/themes/saga-green/theme.css index 1ffe7295b..1bef19f6d 100644 --- a/public/themes/saga-green/theme.css +++ b/public/themes/saga-green/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/saga-orange/theme.css b/public/themes/saga-orange/theme.css index 247904c1b..47cfd7268 100644 --- a/public/themes/saga-orange/theme.css +++ b/public/themes/saga-orange/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/saga-purple/theme.css b/public/themes/saga-purple/theme.css index 820779c23..af81681f5 100644 --- a/public/themes/saga-purple/theme.css +++ b/public/themes/saga-purple/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/soho-dark/theme.css b/public/themes/soho-dark/theme.css index 18258be2d..9ff2021bb 100644 --- a/public/themes/soho-dark/theme.css +++ b/public/themes/soho-dark/theme.css @@ -5967,27 +5967,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9783,7 +9778,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/soho-light/theme.css b/public/themes/soho-light/theme.css index 516fd6453..1a90cd913 100644 --- a/public/themes/soho-light/theme.css +++ b/public/themes/soho-light/theme.css @@ -5967,27 +5967,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9783,7 +9778,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/tailwind-light/theme.css b/public/themes/tailwind-light/theme.css index edac5c9eb..9d421d380 100644 --- a/public/themes/tailwind-light/theme.css +++ b/public/themes/tailwind-light/theme.css @@ -5954,27 +5954,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9794,7 +9789,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/vela-blue/theme.css b/public/themes/vela-blue/theme.css index 7b665d515..6d2af5733 100644 --- a/public/themes/vela-blue/theme.css +++ b/public/themes/vela-blue/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/vela-green/theme.css b/public/themes/vela-green/theme.css index 2485c10ef..53fb1e7ee 100644 --- a/public/themes/vela-green/theme.css +++ b/public/themes/vela-green/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/vela-orange/theme.css b/public/themes/vela-orange/theme.css index b5842fecd..3a24ad5d0 100644 --- a/public/themes/vela-orange/theme.css +++ b/public/themes/vela-orange/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/vela-purple/theme.css b/public/themes/vela-purple/theme.css index 63ddfcf70..2f9e4b867 100644 --- a/public/themes/vela-purple/theme.css +++ b/public/themes/vela-purple/theme.css @@ -5919,27 +5919,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9759,7 +9754,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/viva-dark/theme.css b/public/themes/viva-dark/theme.css index aec0e2aca..51b5339c8 100644 --- a/public/themes/viva-dark/theme.css +++ b/public/themes/viva-dark/theme.css @@ -6000,27 +6000,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; diff --git a/public/themes/viva-light/theme.css b/public/themes/viva-light/theme.css index 8db3a4c90..e1ec9cc04 100644 --- a/public/themes/viva-light/theme.css +++ b/public/themes/viva-light/theme.css @@ -6000,27 +6000,22 @@ content: ""; } - .p-divider-solid.p-divider-horizontal:before { + .p-divider.p-divider-solid.p-divider-horizontal:before { border-top-style: solid; } - - .p-divider-solid.p-divider-vertical:before { + .p-divider.p-divider-solid.p-divider-vertical:before { border-left-style: solid; } - - .p-divider-dashed.p-divider-horizontal:before { + .p-divider.p-divider-dashed.p-divider-horizontal:before { border-top-style: dashed; } - - .p-divider-dashed.p-divider-vertical:before { + .p-divider.p-divider-dashed.p-divider-vertical:before { border-left-style: dashed; } - - .p-divider-dotted.p-divider-horizontal:before { + .p-divider.p-divider-dotted.p-divider-horizontal:before { border-top-style: dotted; } - - .p-divider-dotted.p-divider-vertical:before { + .p-divider.p-divider-dotted.p-divider-vertical:before { border-left-style: dotted; } @@ -9840,7 +9835,7 @@ margin: 0; } - .p-badge-dot { + .p-badge.p-badge-dot { width: 0.5rem; min-width: 0.5rem; height: 0.5rem; From 4e8852ca717c374a338ab512554b4f38efc5a55d Mon Sep 17 00:00:00 2001 From: Viktor Gustavsson Date: Wed, 7 Feb 2024 12:46:02 +0100 Subject: [PATCH 09/20] Fix PrimeVuePTOptions.global.css (missing parenthesis) --- components/lib/config/PrimeVue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/config/PrimeVue.d.ts b/components/lib/config/PrimeVue.d.ts index 0838a0b33..178295e11 100644 --- a/components/lib/config/PrimeVue.d.ts +++ b/components/lib/config/PrimeVue.d.ts @@ -222,7 +222,7 @@ export interface PrimeVuePTOptions { animate?: AnimateOnScrollDirectivePassThroughOptions; }; global?: { - css?: (options: any) => string | string | undefined; + css?: ((options: any) => string | undefined) | string | undefined; }; } From e3e0eb14c6c10e766b87a5f7b17fa4ced420f45d Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 7 Feb 2024 15:08:53 +0300 Subject: [PATCH 10/20] Doc updates --- components/lib/floatlabel/FloatLabel.d.ts | 4 --- doc/floatlabel/pt/PTImage.vue | 8 +++++ doc/floatlabel/pt/index.vue | 35 +++++++++++++++++++ doc/floatlabel/theming/TailwindDoc.vue | 6 ++++ doc/floatlabel/theming/index.vue | 13 +++++++ doc/iconfield/pt/PTImage.vue | 8 +++++ doc/iconfield/pt/index.vue | 41 +++++++++++++++++++++++ doc/iconfield/theming/TailwindDoc.vue | 6 ++++ doc/iconfield/theming/index.vue | 13 +++++++ doc/iconfield/theming/pt/PTImage.vue | 8 +++++ doc/iconfield/theming/pt/index.vue | 35 +++++++++++++++++++ pages/floatlabel/index.vue | 4 ++- pages/iconfield/index.vue | 4 ++- 13 files changed, 179 insertions(+), 6 deletions(-) create mode 100644 doc/floatlabel/pt/PTImage.vue create mode 100644 doc/floatlabel/pt/index.vue create mode 100644 doc/floatlabel/theming/TailwindDoc.vue create mode 100644 doc/iconfield/pt/PTImage.vue create mode 100644 doc/iconfield/pt/index.vue create mode 100644 doc/iconfield/theming/TailwindDoc.vue create mode 100644 doc/iconfield/theming/pt/PTImage.vue create mode 100644 doc/iconfield/theming/pt/index.vue diff --git a/components/lib/floatlabel/FloatLabel.d.ts b/components/lib/floatlabel/FloatLabel.d.ts index 4fad3a484..e0cbb71a8 100644 --- a/components/lib/floatlabel/FloatLabel.d.ts +++ b/components/lib/floatlabel/FloatLabel.d.ts @@ -56,10 +56,6 @@ export interface FloatLabelPassThroughOptions { * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; - /** - * Used to control Vue Transition API. - */ - transition?: FloatLabelPassThroughTransitionType; } /** diff --git a/doc/floatlabel/pt/PTImage.vue b/doc/floatlabel/pt/PTImage.vue new file mode 100644 index 000000000..9ac50d6b4 --- /dev/null +++ b/doc/floatlabel/pt/PTImage.vue @@ -0,0 +1,8 @@ + diff --git a/doc/floatlabel/pt/index.vue b/doc/floatlabel/pt/index.vue new file mode 100644 index 000000000..8beecb0e6 --- /dev/null +++ b/doc/floatlabel/pt/index.vue @@ -0,0 +1,35 @@ + + + diff --git a/doc/floatlabel/theming/TailwindDoc.vue b/doc/floatlabel/theming/TailwindDoc.vue new file mode 100644 index 000000000..fe4aadc26 --- /dev/null +++ b/doc/floatlabel/theming/TailwindDoc.vue @@ -0,0 +1,6 @@ + diff --git a/doc/floatlabel/theming/index.vue b/doc/floatlabel/theming/index.vue index c34b8f644..de213ca6c 100644 --- a/doc/floatlabel/theming/index.vue +++ b/doc/floatlabel/theming/index.vue @@ -10,6 +10,7 @@ diff --git a/doc/iconfield/theming/TailwindDoc.vue b/doc/iconfield/theming/TailwindDoc.vue new file mode 100644 index 000000000..fe4aadc26 --- /dev/null +++ b/doc/iconfield/theming/TailwindDoc.vue @@ -0,0 +1,6 @@ + diff --git a/doc/iconfield/theming/index.vue b/doc/iconfield/theming/index.vue index 4d9ad686b..8bdb1e256 100644 --- a/doc/iconfield/theming/index.vue +++ b/doc/iconfield/theming/index.vue @@ -10,6 +10,7 @@ diff --git a/pages/floatlabel/index.vue b/pages/floatlabel/index.vue index b2bad2de2..f5ecb57e0 100644 --- a/pages/floatlabel/index.vue +++ b/pages/floatlabel/index.vue @@ -1,11 +1,12 @@