Merge pull request 'Beitrag erstellen' (#13) from Beitrag-erstellen into dev
Reviewed-on: #13
This commit was merged in pull request #13.
This commit is contained in:
@@ -0,0 +1,124 @@
|
||||
/* editor in Flexbox */
|
||||
.article-editor-scope.editor-container {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
color: #1e1e1e;
|
||||
background-color: #f0f2f5;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.article-editor-scope * {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Hauptbereich */
|
||||
.article-editor-scope .editor-main {
|
||||
flex: 1;
|
||||
padding: 40px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.article-editor-scope #title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
border: none;
|
||||
outline: none;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.article-editor-scope #content {
|
||||
flex: 1;
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.6;
|
||||
border: none;
|
||||
outline: none;
|
||||
resize: none;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* Seitenleiste */
|
||||
.article-editor-scope .editor-sidebar {
|
||||
width: 300px;
|
||||
background-color: #ffffff;
|
||||
border-left: 1px solid #e0e0e0;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.article-editor-scope .sidebar-block {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.article-editor-scope .sidebar-block label {
|
||||
font-weight: 600;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.article-editor-scope .required {
|
||||
color: #d94f4f;
|
||||
}
|
||||
|
||||
/* Formularelemente innerhalb der Editor-Sidebar */
|
||||
.article-editor-scope .editor-sidebar select,
|
||||
.article-editor-scope .editor-sidebar input[type="text"] {
|
||||
width: 100%;
|
||||
padding: 8px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 4px;
|
||||
font-size: 0.9rem;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
/* Button-Zeugs */
|
||||
.article-editor-scope .btn-publish {
|
||||
background-color: #007cba;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 12px;
|
||||
border-radius: 4px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.article-editor-scope .btn-publish:hover {
|
||||
background-color: #006ba1;
|
||||
}
|
||||
|
||||
/* Responsive Anpassungen unter 760px (für z.B. Smartphones) */
|
||||
@media (max-width: 760px) {
|
||||
.article-editor-scope.editor-container {
|
||||
/* Sidebar nach unten */
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.article-editor-scope .editor-main {
|
||||
/* weniger Innenabstand */
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.article-editor-scope #content {
|
||||
/* Verhindert, dass das Textfeld auf kleinen Displays kollabiert */
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.article-editor-scope .editor-sidebar {
|
||||
width: 100%;
|
||||
/* Entfernt den linken Rand und setzt ihn nach oben als Trenner */
|
||||
border-left: none;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
.alert-message {
|
||||
padding: 12px 16px;
|
||||
margin: 12px 0;
|
||||
border-radius: 6px;
|
||||
border: 1px solid transparent;
|
||||
|
||||
font-family: sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
line-height: 1.5;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
/* Rote Fehlermeldung */
|
||||
.alert-message.is-error {
|
||||
color: #ba1a1a;
|
||||
background-color: #ffeede;
|
||||
border-color: #ffb4ab;
|
||||
}
|
||||
|
||||
/* Grüne Erfolgsmeldung */
|
||||
.alert-message.is-success {
|
||||
color: #006e2c;
|
||||
background-color: #e8f5e9;
|
||||
border-color: #b2dfdb;
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
/* Container für den gesamten articleikel */
|
||||
.article-view-container {
|
||||
box-sizing: border-box;
|
||||
max-width: 900px; /* Angenehme Lesebreite für längere Texte */
|
||||
margin: 3rem auto;
|
||||
padding: 0 2rem;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||
color: #212529;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.article-view-container * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* --- KOPFDATEN-BEREICH --- */
|
||||
.article-view-top-section {
|
||||
margin-bottom: 2.5rem;
|
||||
border-bottom: 1px solid #e2e8f0;
|
||||
padding-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
/* Kategorie-Badge */
|
||||
.article-view-category {
|
||||
display: inline-block;
|
||||
background-color: #ebf8ff;
|
||||
color: #2b6cb0;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
/* Hauptüberschrift */
|
||||
.article-view-title {
|
||||
font-size: 2.5rem;
|
||||
color: #1a202c;
|
||||
line-height: 1.2;
|
||||
margin: 0 0 0.75rem 0;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
/* Autoren-Zeile */
|
||||
.article-view-meta {
|
||||
font-size: 0.95rem;
|
||||
color: #4a5568;
|
||||
}
|
||||
|
||||
.article-view-author strong {
|
||||
color: #2d3748;
|
||||
}
|
||||
|
||||
/* --- INHALT --- */
|
||||
.article-view-content {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.article-view-body {
|
||||
font-size: 1.125rem;
|
||||
color: #2d3748;
|
||||
white-space: pre-line;
|
||||
}
|
||||
|
||||
/* --- TAG-BEREICH --- */
|
||||
.article-view-bottom-section {
|
||||
border-top: 1px solid #e2e8f0;
|
||||
padding-top: 1.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.article-view-tags-label {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
color: #718096;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.article-view-tags-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
/* Einzelner Tag */
|
||||
.article-view-tag-item {
|
||||
background-color: #f1f5f9;
|
||||
color: #475569;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
padding: 0.35rem 0.75rem;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #e2e8f0;
|
||||
transition: background-color 0.2s, color 0.2s;
|
||||
}
|
||||
|
||||
.article-view-tag-item:hover {
|
||||
background-color: #e2e8f0;
|
||||
color: #1e293b;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Responsive Anpassungen unter 760px (für z.B. Smarticlephones) */
|
||||
@media (max-width: 760px) {
|
||||
.article-view-container {
|
||||
margin: 1.5rem auto;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.article-view-title {
|
||||
font-size: 1.85rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user