reupload
This commit is contained in:
34
public/assets/panel/css/additional.css
Normal file
34
public/assets/panel/css/additional.css
Normal file
@@ -0,0 +1,34 @@
|
||||
.px-1\.5 {
|
||||
padding-left: 0.375rem;
|
||||
padding-right: 0.375rem;
|
||||
}
|
||||
|
||||
.text-black {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.text-green-800 {
|
||||
color: rgb(22 101 52);
|
||||
}
|
||||
|
||||
.text-red-800 {
|
||||
color: rgb(153 27 27);
|
||||
}
|
||||
|
||||
.text-green-darker {
|
||||
color: #003e17;
|
||||
}
|
||||
|
||||
.fit-content {
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.nova-grid--field-wrapper {
|
||||
border-top-color: rgba(0, 0, 0, 0) !important;
|
||||
border-right-color: rgba(0, 0, 0, 0) !important;
|
||||
border-bottom-color: rgba(0, 0, 0, 0) !important;
|
||||
border-left-color: rgba(0, 0, 0, 0) !important;
|
||||
|
||||
/* border-bottom: 1px solid rgb(51,65,85) !important;*/
|
||||
/* border: none !important;*/
|
||||
}
|
||||
13
public/assets/panel/images/logo-tmpostadmin.svg
Normal file
13
public/assets/panel/images/logo-tmpostadmin.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 7.5 KiB |
14
public/assets/panel/js/additional.js
Normal file
14
public/assets/panel/js/additional.js
Normal file
@@ -0,0 +1,14 @@
|
||||
window.Event.fire = (event, el) => {
|
||||
return ( el )
|
||||
? document.querySelector(el).dispatchEvent(new Event(event))
|
||||
: document.dispatchEvent(new Event(event))
|
||||
}
|
||||
|
||||
window.Event.listen = (event, elemOrCallback, callback) => {
|
||||
return (typeof elemOrCallback === 'function')
|
||||
? document.addEventListener(event, elemOrCallback)
|
||||
: document.querySelector(elemOrCallback).addEventListener(event, callback)
|
||||
}
|
||||
|
||||
window.LaraStore = {};
|
||||
window.LaraStore.data = [];
|
||||
Reference in New Issue
Block a user