Erste Funktionalität der Menükarte per GET/POST, keine API; Umstrukturierung der Tabelle als Bootstrap-div; HTML/CSS-Cleanup

This commit is contained in:
Sebastian Seedorf
2016-03-25 13:33:42 +01:00
parent 92a5ff8eda
commit f99271ee01
202 changed files with 25173 additions and 853 deletions

5
node_modules/clean-css/History.md generated vendored
View File

@@ -1,3 +1,8 @@
[3.4.10 / 2016-02-29](https://github.com/jakubpawlowicz/clean-css/compare/v3.4.9...v3.4.10)
==================
* Fixed issue [#735](https://github.com/jakubpawlowicz/clean-css/issues/735) - whitespace removal with escaped chars.
[3.4.9 / 2016-01-03](https://github.com/jakubpawlowicz/clean-css/compare/v3.4.8...v3.4.9)
==================

View File

@@ -6,6 +6,15 @@ function selectorSorter(s1, s2) {
return s1[0] > s2[0] ? 1 : -1;
}
function whitespaceReplacements(_, p1, p2, p3) {
if (p1 && p2 && p3.length)
return p1 + p2 + ' ';
else if (p1 && p2)
return p1 + p2;
else
return p2;
}
var CleanUp = {
selectors: function (selectors, removeUnsupported, adjacentSpace) {
var list = [];
@@ -16,7 +25,7 @@ var CleanUp = {
var reduced = selector[0]
.replace(/\s+/g, ' ')
.replace(/ ?, ?/g, ',')
.replace(/\s*([>\+\~])\s*/g, '$1')
.replace(/\s*(\\)?([>+~])(\s*)/g, whitespaceReplacements)
.trim();
if (adjacentSpace && reduced.indexOf('nav') > 0)

22
node_modules/clean-css/package.json generated vendored
View File

@@ -2,15 +2,19 @@
"_args": [
[
"clean-css@^3.1.9",
"C:\\Users\\IT-134\\Desktop\\PortableGit\\repos\\html5-restaurant\\node_modules\\jade"
"L:\\Git\\repos\\html5-restaurant\\node_modules\\jade"
]
],
"_from": "clean-css@>=3.1.9 <4.0.0",
"_id": "clean-css@3.4.9",
"_id": "clean-css@3.4.10",
"_inCache": true,
"_installable": true,
"_location": "/clean-css",
"_nodeVersion": "0.12.0",
"_npmOperationalInternal": {
"host": "packages-5-east.internal.npmjs.com",
"tmp": "tmp/clean-css-3.4.10.tgz_1456729605814_0.9978964275214821"
},
"_npmUser": {
"email": "jakub@goalsmashers.com",
"name": "goalsmashers"
@@ -30,11 +34,11 @@
"_requiredBy": [
"/jade"
],
"_resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.9.tgz",
"_shasum": "954c49c34968763f50b05fd0dde44694cf9d2eb9",
"_resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.10.tgz",
"_shasum": "7c85ba47448b136a3e4925d397bdfdc5a4086b7f",
"_shrinkwrap": null,
"_spec": "clean-css@^3.1.9",
"_where": "C:\\Users\\IT-134\\Desktop\\PortableGit\\repos\\html5-restaurant\\node_modules\\jade",
"_where": "L:\\Git\\repos\\html5-restaurant\\node_modules\\jade",
"author": {
"email": "contact@jakubpawlowicz.com",
"name": "Jakub Pawlowicz",
@@ -62,8 +66,8 @@
},
"directories": {},
"dist": {
"shasum": "954c49c34968763f50b05fd0dde44694cf9d2eb9",
"tarball": "http://registry.npmjs.org/clean-css/-/clean-css-3.4.9.tgz"
"shasum": "7c85ba47448b136a3e4925d397bdfdc5a4086b7f",
"tarball": "http://registry.npmjs.org/clean-css/-/clean-css-3.4.10.tgz"
},
"engines": {
"node": ">=0.10.0"
@@ -75,7 +79,7 @@
"index.js",
"lib"
],
"gitHead": "feb956f9fbf540b8d870463600bb816640467eaa",
"gitHead": "0a8d64b2e6c2370d01582d92cab8b225fe001ce5",
"homepage": "https://github.com/jakubpawlowicz/clean-css",
"keywords": [
"css",
@@ -107,5 +111,5 @@
"prepublish": "npm run check",
"test": "vows"
},
"version": "3.4.9"
"version": "3.4.10"
}