diff --git a/public/lib/buefy-0.7.5.css b/public/lib/buefy-0.7.5.css index 4eac511..27d35a8 100644 --- a/public/lib/buefy-0.7.5.css +++ b/public/lib/buefy-0.7.5.css @@ -442,6 +442,15 @@ body { line-height: 1.5; } a { + color: #0046a0; + cursor: pointer; + text-decoration: none; } + a strong { + color: currentColor; } + a:hover { + color: #0046a0; } + +a.menu-list { color: white; cursor: pointer; text-decoration: none; } @@ -4154,7 +4163,8 @@ a.list-item { border-radius: 2px; display: block; padding: 0.5em 0.75em; - background-color: #0046a0; } + background-color: #0046a0; + color: white !important;} .menu-list a:hover { background-color: #01295d; color: white; } diff --git a/public/routes/createMessage.js b/public/routes/createMessage.js index b70adb5..311d216 100644 --- a/public/routes/createMessage.js +++ b/public/routes/createMessage.js @@ -42,7 +42,7 @@ const CreateMsgRouter = {
-
+

Neue Nachricht erstellen

diff --git a/public/routes/files.js b/public/routes/files.js index 64e32d8..a503512 100644 --- a/public/routes/files.js +++ b/public/routes/files.js @@ -3,6 +3,8 @@ var tagArray = []; const FileRouter = { template: `
+ +

Erweiterte Suche

+
+ +
+

Erweiterte Suche

+ + + + + + + + + + + + + + + + + + + + SUCHE + +
+ +
+
+
`, data: function () { diff --git a/public/routes/home.js b/public/routes/home.js index b6e2428..63518a4 100644 --- a/public/routes/home.js +++ b/public/routes/home.js @@ -1,11 +1,21 @@ const HomeRouter = { template: ` -
+
+
+
+ +
+ +
`, data: function () { return { diff --git a/public/routes/navRoutes.js b/public/routes/navRoutes.js index dde12e0..bb1874a 100644 --- a/public/routes/navRoutes.js +++ b/public/routes/navRoutes.js @@ -29,23 +29,23 @@ Vue.component('nav-router', {
`, data: function () { return { diff --git a/public/style/style.css b/public/style/style.css index 6f18b0a..7d46a19 100644 --- a/public/style/style.css +++ b/public/style/style.css @@ -31,10 +31,16 @@ overflow: hidden; } .om-content a { - color: white; + color: #0046a0; } .om-content a:hover { - color: white; + color: #0046a0; +} +.om-content a .menu-list { + color: white !important; +} +.om-content a .menu-list:hover { + color: white !important; } .content-desktop { margin-right: 30px; diff --git a/public/style/style.less b/public/style/style.less index 2f667b3..a4f640a 100644 --- a/public/style/style.less +++ b/public/style/style.less @@ -37,9 +37,12 @@ width: auto; overflow: hidden; a{ - color: white; - &:hover{color:white;} - } + color: #0046a0; + &:hover{color: #0046a0;} + .menu-list { + color: white !important; + &:hover{color: white !important; } + }} } .content-desktop {