mirror of
https://github.com/thelounge/thelounge.git
synced 2026-04-19 05:21:06 -04:00
textarea, input
This commit is contained in:
@@ -75,7 +75,11 @@
|
||||
<!-- Sessions -->
|
||||
<SettingCard v-if="!store.state.serverConfiguration?.public" title="Sessions" role="group">
|
||||
<h3>Current session</h3>
|
||||
<Session v-if="currentSession" :session="currentSession" />
|
||||
<Session
|
||||
v-if="currentSession"
|
||||
:session="currentSession"
|
||||
v-bind:class="'current-session'"
|
||||
/>
|
||||
|
||||
<template v-if="activeSessions.length > 0">
|
||||
<h3>Active sessions</h3>
|
||||
|
||||
@@ -191,10 +191,18 @@
|
||||
/* Text inputs inside cards */
|
||||
|
||||
.setting-card .input {
|
||||
background-color: #28333d;
|
||||
color: var(--body-color);
|
||||
border: 1px solid #28333d;
|
||||
margin-bottom: 0;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.setting-card input::placeholder,
|
||||
.setting-card textarea::placeholder {
|
||||
color: var(--body-color-muted);
|
||||
}
|
||||
|
||||
.setting-card textarea.input {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user