Archive: Namaste PHP AMQP framework v1.0 (2017-2020)

952 days continuous production uptime, 40k+ tp/s single node.
Original corpo Bitbucket history not included — clean archive commit.
This commit is contained in:
2026-04-05 09:49:30 -07:00
commit 373ebc8c93
1284 changed files with 409372 additions and 0 deletions

37
html/scss/pro/_accordion.scss Executable file
View File

@@ -0,0 +1,37 @@
// Accordion
.accordion {
.card {
box-shadow: none;
border-bottom: 1px solid $grey-lighten-2;
border-radius: 0;
&:first-of-type,
&:not(:first-of-type):not(:last-of-type) {
border-bottom: 1px solid $grey-lighten-2;
}
.card-header {
border-bottom: 0;
padding: $accordion-card-header-padding-y $accordion-card-header-padding-x;
background: transparent;
.card-title {
font-weight: 400;
}
a {
transition: $accordion-link-hover-transition;
}
a:not(.collapsed) {
.rotate-icon {
transform: $accordion-rotate-icon-transform;
}
}
}
.fa-angle-down {
float: right;
}
.card-body {
font-size: $accordion-card-body-font-size;
line-height: $accordion-card-body-line-height;
font-weight: 300;
color: $accordion-card-body-color;
}
}
}