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

62
html/scss/core/_global.scss Executable file
View File

@@ -0,0 +1,62 @@
// Globals
// Shadows
.z-depth-0 {
box-shadow: none !important;
}
.z-depth-1 {
box-shadow: $z-depth-1;
}
.z-depth-1-half {
box-shadow: $z-depth-1-half;
}
.z-depth-2 {
box-shadow: $z-depth-2;
}
.z-depth-3 {
box-shadow: $z-depth-3;
}
.z-depth-4 {
box-shadow: $z-depth-4;
}
.z-depth-5 {
box-shadow: $z-depth-5;
}
// Shadow on hover
.hoverable {
box-shadow: none;
transition: $transition-hoverable;
&:hover {
box-shadow: $z-depth-2;
transition: $transition-hoverable;
}
}
// Disabled cursor
.disabled,
:disabled {
pointer-events: none !important;
}
// Links
a {
cursor: pointer;
text-decoration: none;
color: $link-color;
transition: $transition-basic;
&:hover {
transition: $transition-basic;
text-decoration: none;
}
&.disabled,
&:disabled {
&:hover {
color: $link-color;
}
}
}
a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
color: inherit;
text-decoration: none;
}