forked from rc/aircox
work on pages, filters, lists
This commit is contained in:
@ -16,6 +16,9 @@
|
||||
width: 100%;
|
||||
margin: 1em 0em; }
|
||||
|
||||
ul.menu-list li {
|
||||
list-style-type: none; }
|
||||
|
||||
@keyframes spinAround {
|
||||
from {
|
||||
transform: rotate(0deg); }
|
||||
@ -7180,6 +7183,11 @@ label.panel-block {
|
||||
.has-background-transparent {
|
||||
background-color: transparent; }
|
||||
|
||||
.is-opacity-light {
|
||||
opacity: 0.7; }
|
||||
.is-opacity-light:hover {
|
||||
opacity: 1; }
|
||||
|
||||
.navbar + .container {
|
||||
margin-top: 1em; }
|
||||
|
||||
@ -7192,6 +7200,29 @@ a.navbar-item.is-active {
|
||||
.navbar .navbar-dropdown {
|
||||
z-index: 2000; }
|
||||
|
||||
.navbar .navbar-split {
|
||||
margin: 0.2em 0em;
|
||||
margin-right: 1em;
|
||||
padding-right: 1em;
|
||||
border-right: 1px #b5b5b5 solid;
|
||||
display: inline-block; }
|
||||
|
||||
.navbar form {
|
||||
margin: 0em;
|
||||
padding: 0em; }
|
||||
|
||||
.filters {
|
||||
margin: 1em 0em;
|
||||
background-color: transparent;
|
||||
margin-bottom: 1em; }
|
||||
.filters .title {
|
||||
padding-right: 2em;
|
||||
margin-right: 1em;
|
||||
border-right: 1px #b5b5b5 solid;
|
||||
font-size: 1.25rem;
|
||||
color: #7a7a7a;
|
||||
font-weight: 300; }
|
||||
|
||||
/*
|
||||
.navbar-brand img {
|
||||
min-height: 6em;
|
||||
|
@ -305,7 +305,7 @@ eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./asse
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n//\n//\n//\n//\n//\n//\n\n\nconst splitReg = new RegExp(`,\\s*`, 'g');\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n data() {\n return {\n counts: {},\n }\n },\n\n methods: {\n update() {\n const items = this.$el.querySelectorAll('input[name=\"data\"]:checked')\n const counts = {};\n\n console.log(items)\n for(var item of items)\n if(item.value)\n for(var tag of item.value.split(splitReg))\n counts[tag.trim()] = (counts[tag.trim()] || 0) + 1;\n this.counts = counts;\n console.log('counts', this.counts)\n }\n },\n\n mounted() {\n this.$refs.form.addEventListener('change', () => this.update())\n this.update()\n }\n});\n\n\n//# sourceURL=webpack:///./assets/admin/statistics.vue?./node_modules/vue-loader/lib??vue-loader-options");
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n//\n//\n//\n//\n//\n//\n\n\nconst splitReg = new RegExp(`,\\s*`, 'g');\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n data() {\n return {\n counts: {},\n }\n },\n\n methods: {\n update() {\n const items = this.$el.querySelectorAll('input[name=\"data\"]:checked')\n const counts = {};\n\n console.log(items)\n for(var item of items)\n if(item.value)\n for(var tag of item.value.split(splitReg))\n counts[tag.trim()] = (counts[tag.trim()] || 0) + 1;\n this.counts = counts;\n }\n },\n\n mounted() {\n this.$refs.form.addEventListener('change', () => this.update())\n this.update()\n }\n});\n\n\n//# sourceURL=webpack:///./assets/admin/statistics.vue?./node_modules/vue-loader/lib??vue-loader-options");
|
||||
|
||||
/***/ }),
|
||||
|
||||
|
@ -7162,6 +7162,11 @@ label.panel-block {
|
||||
.has-background-transparent {
|
||||
background-color: transparent; }
|
||||
|
||||
.is-opacity-light {
|
||||
opacity: 0.7; }
|
||||
.is-opacity-light:hover {
|
||||
opacity: 1; }
|
||||
|
||||
.navbar + .container {
|
||||
margin-top: 1em; }
|
||||
|
||||
@ -7174,6 +7179,29 @@ a.navbar-item.is-active {
|
||||
.navbar .navbar-dropdown {
|
||||
z-index: 2000; }
|
||||
|
||||
.navbar .navbar-split {
|
||||
margin: 0.2em 0em;
|
||||
margin-right: 1em;
|
||||
padding-right: 1em;
|
||||
border-right: 1px #b5b5b5 solid;
|
||||
display: inline-block; }
|
||||
|
||||
.navbar form {
|
||||
margin: 0em;
|
||||
padding: 0em; }
|
||||
|
||||
.filters {
|
||||
margin: 1em 0em;
|
||||
background-color: transparent;
|
||||
margin-bottom: 1em; }
|
||||
.filters .title {
|
||||
padding-right: 2em;
|
||||
margin-right: 1em;
|
||||
border-right: 1px #b5b5b5 solid;
|
||||
font-size: 1.25rem;
|
||||
color: #7a7a7a;
|
||||
font-weight: 300; }
|
||||
|
||||
/*
|
||||
.navbar-brand img {
|
||||
min-height: 6em;
|
||||
|
Reference in New Issue
Block a user