Desktopansicht auf allen Seiten angepasst
This commit is contained in:
parent
92220fc11c
commit
3eb0a99813
@ -442,6 +442,15 @@ body {
|
|||||||
line-height: 1.5; }
|
line-height: 1.5; }
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
color: #0046a0;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none; }
|
||||||
|
a strong {
|
||||||
|
color: currentColor; }
|
||||||
|
a:hover {
|
||||||
|
color: #0046a0; }
|
||||||
|
|
||||||
|
a.menu-list {
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-decoration: none; }
|
text-decoration: none; }
|
||||||
@ -4154,7 +4163,8 @@ a.list-item {
|
|||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.5em 0.75em;
|
padding: 0.5em 0.75em;
|
||||||
background-color: #0046a0; }
|
background-color: #0046a0;
|
||||||
|
color: white !important;}
|
||||||
.menu-list a:hover {
|
.menu-list a:hover {
|
||||||
background-color: #01295d;
|
background-color: #01295d;
|
||||||
color: white; }
|
color: white; }
|
||||||
|
@ -42,7 +42,7 @@ const CreateMsgRouter = {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="column is-three-quarters is-pulled-right is-hidden-touch content-desktop">
|
<div class="column is-three-quarters is-pulled-right is-hidden-touch content-desktop">
|
||||||
<div id="desktop" class="content card om-card">
|
<div id="desktop" class="content">
|
||||||
<h4>Neue Nachricht erstellen</h4>
|
<h4>Neue Nachricht erstellen</h4>
|
||||||
<b-field>
|
<b-field>
|
||||||
<b-input placeholder="User" id="user"></b-input>
|
<b-input placeholder="User" id="user"></b-input>
|
||||||
|
@ -3,6 +3,8 @@ var tagArray = [];
|
|||||||
const FileRouter = {
|
const FileRouter = {
|
||||||
template: `
|
template: `
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="is-hidden-desktop">
|
||||||
<h4>Erweiterte Suche</h4>
|
<h4>Erweiterte Suche</h4>
|
||||||
<b-field label="Suche nach">
|
<b-field label="Suche nach">
|
||||||
<b-select
|
<b-select
|
||||||
@ -37,6 +39,45 @@ const FileRouter = {
|
|||||||
:msg="messages[id] || {}"
|
:msg="messages[id] || {}"
|
||||||
></MsgCard>
|
></MsgCard>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="column is-three-quarters is-pulled-right is-hidden-touch content-desktop">
|
||||||
|
<h4>Erweiterte Suche</h4>
|
||||||
|
<b-field label="Suche nach">
|
||||||
|
<b-select
|
||||||
|
placeholder="Wähle eine Suchform"
|
||||||
|
v-model="selectedOptions">
|
||||||
|
<option value="freeSearch">Freie Suche</option>
|
||||||
|
<option value="subject">Betreff</option>
|
||||||
|
<option value="tags">Tags</option>
|
||||||
|
<option value="text">Nachrichtentext</option>
|
||||||
|
<option value="user">User</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
|
||||||
|
<b-field v-if="selectedOptions=='freeSearch'||selectedOptions=='subject'|| selectedOptions=='text' || selectedOptions=='user'">
|
||||||
|
<b-input id="freeSe"></b-input>
|
||||||
|
</b-field>
|
||||||
|
|
||||||
|
<b-field v-if="selectedOptions=='tags'">
|
||||||
|
<b-autocomplete rounded v-model="searchtext"
|
||||||
|
:data="filteredDataArray"
|
||||||
|
placeholder="suche..." icon="magnify"
|
||||||
|
@select="option => selected = option">
|
||||||
|
</b-autocomplete>
|
||||||
|
</b-field>
|
||||||
|
|
||||||
|
<b-button type="is-primary" @click="search">SUCHE</b-button>
|
||||||
|
|
||||||
|
<div id="om-msg-cards">
|
||||||
|
<MsgCard
|
||||||
|
v-for="id in messagelist.slice().reverse()"
|
||||||
|
:key="id"
|
||||||
|
:msg="messages[id] || {}"
|
||||||
|
></MsgCard>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
`,
|
`,
|
||||||
data: function () {
|
data: function () {
|
||||||
|
@ -1,11 +1,21 @@
|
|||||||
const HomeRouter = {
|
const HomeRouter = {
|
||||||
template: `
|
template: `
|
||||||
<div id="om-msg-cards">
|
<div>
|
||||||
|
<div id="om-msg-cards" class="is-hidden-desktop">
|
||||||
<MsgCard
|
<MsgCard
|
||||||
v-for="id in messagelist.slice().reverse()"
|
v-for="id in messagelist.slice().reverse()"
|
||||||
:key="id"
|
:key="id"
|
||||||
:msg="messages[id] || {}"
|
:msg="messages[id] || {}"
|
||||||
></MsgCard>
|
></MsgCard>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="om-msg-cards" class="column is-three-quarters is-pulled-right is-hidden-touch content-desktop">
|
||||||
|
<MsgCard
|
||||||
|
v-for="id in messagelist.slice().reverse()"
|
||||||
|
:key="id"
|
||||||
|
:msg="messages[id] || {}"
|
||||||
|
></MsgCard>
|
||||||
|
</div>
|
||||||
</div>`,
|
</div>`,
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
|
@ -29,23 +29,23 @@ Vue.component('nav-router', {
|
|||||||
<div class="column is-sidebar-menu is-hidden-touch">
|
<div class="column is-sidebar-menu is-hidden-touch">
|
||||||
<aside class="menu is-medium">
|
<aside class="menu is-medium">
|
||||||
<ul class="menu-list">
|
<ul class="menu-list">
|
||||||
<li><router-link to="/home" class="is-hidden-touch">
|
<li><router-link to="/home">
|
||||||
<i class="material-icons">home</i> Home
|
<i class="material-icons">home</i> Home
|
||||||
</router-link></li>
|
</router-link></li>
|
||||||
|
|
||||||
<li><router-link to="/files" class="is-hidden-touch">
|
<li><router-link to="/files">
|
||||||
<i class="material-icons">language</i> Language
|
<i class="material-icons">search</i> Search
|
||||||
</router-link></li>
|
</router-link></li>
|
||||||
|
|
||||||
<li><router-link to="/createMessage" class="is-hidden-touch">
|
<li><router-link to="/createMessage">
|
||||||
<i class="material-icons">add_circle</i> Create Message
|
<i class="material-icons">add_circle</i> Create Message
|
||||||
</router-link></li>
|
</router-link></li>
|
||||||
|
|
||||||
<li><router-link to="/bookmark" class="is-hidden-touch">
|
<li><router-link to="/bookmark">
|
||||||
<i class="material-icons">bookmark</i> Bookmark
|
<i class="material-icons">bookmark</i> Bookmark
|
||||||
</router-link></li>
|
</router-link></li>
|
||||||
|
|
||||||
<li><router-link to="/profil" class="is-hidden-touch">
|
<li><router-link to="/profil">
|
||||||
<i class="material-icons">person</i> Profil
|
<i class="material-icons">person</i> Profil
|
||||||
</router-link></li>
|
</router-link></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
const ProfilRouter = {
|
const ProfilRouter = {
|
||||||
template: `
|
template: `
|
||||||
<div>
|
<div>
|
||||||
|
<div class="is-hidden-desktop">
|
||||||
<div v-if="isAuth">
|
<div v-if="isAuth">
|
||||||
<profil-card></profil-card>
|
<profil-card></profil-card>
|
||||||
</div>
|
</div>
|
||||||
@ -17,6 +18,26 @@ const ProfilRouter = {
|
|||||||
<login-panel></login-panel>
|
<login-panel></login-panel>
|
||||||
</b-modal>
|
</b-modal>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="column is-three-quarters is-pulled-right is-hidden-touch content-desktop">
|
||||||
|
<div v-if="isAuth">
|
||||||
|
<profil-card></profil-card>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<button class="button is-primary is-medium"
|
||||||
|
@click="isLPVisible = true">
|
||||||
|
Login
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<b-modal :active.sync="isLPVisible"
|
||||||
|
@close-login-panel="closeLoginPanel"
|
||||||
|
@show-login-panel="showLoginPanel"
|
||||||
|
has-modal-card>
|
||||||
|
<login-panel></login-panel>
|
||||||
|
</b-modal>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>`,
|
</div>`,
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
|
@ -31,10 +31,16 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.om-content a {
|
.om-content a {
|
||||||
color: white;
|
color: #0046a0;
|
||||||
}
|
}
|
||||||
.om-content a:hover {
|
.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 {
|
.content-desktop {
|
||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
|
@ -37,9 +37,12 @@
|
|||||||
width: auto;
|
width: auto;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
a{
|
a{
|
||||||
color: white;
|
color: #0046a0;
|
||||||
&:hover{color:white;}
|
&:hover{color: #0046a0;}
|
||||||
}
|
.menu-list {
|
||||||
|
color: white !important;
|
||||||
|
&:hover{color: white !important; }
|
||||||
|
}}
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-desktop {
|
.content-desktop {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user