- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
36 lines
889 B
JavaScript
36 lines
889 B
JavaScript
//.CommonJS
|
|
var CSSOM = {
|
|
CSSRule: require("./CSSRule").CSSRule,
|
|
};
|
|
///CommonJS
|
|
|
|
/**
|
|
* @constructor
|
|
* @see https://drafts.csswg.org/css-cascade-5/#csslayerstatementrule
|
|
*/
|
|
CSSOM.CSSLayerStatementRule = function CSSLayerStatementRule() {
|
|
CSSOM.CSSRule.call(this);
|
|
this.nameList = [];
|
|
};
|
|
|
|
CSSOM.CSSLayerStatementRule.prototype = Object.create(CSSOM.CSSRule.prototype);
|
|
CSSOM.CSSLayerStatementRule.prototype.constructor = CSSOM.CSSLayerStatementRule;
|
|
|
|
Object.setPrototypeOf(CSSOM.CSSLayerStatementRule, CSSOM.CSSRule);
|
|
|
|
Object.defineProperty(CSSOM.CSSLayerStatementRule.prototype, "type", {
|
|
value: 0,
|
|
writable: false
|
|
});
|
|
|
|
Object.defineProperties(CSSOM.CSSLayerStatementRule.prototype, {
|
|
cssText: {
|
|
get: function () {
|
|
return "@layer " + this.nameList.join(", ") + ";";
|
|
}
|
|
},
|
|
});
|
|
|
|
//.CommonJS
|
|
exports.CSSLayerStatementRule = CSSOM.CSSLayerStatementRule;
|
|
///CommonJS
|