mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-12-10 05:52:31 -05:00
feat: Improve Visual Distinction Between Trim and Chapters Editors
This commit is contained in:
@@ -150,6 +150,13 @@ const App = () => {
|
|||||||
canRedo={historyPosition < history.length - 1}
|
canRedo={historyPosition < history.length - 1}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{/* Timeline Header */}
|
||||||
|
<div style={{ marginLeft: '1rem', marginTop: '-0.5rem' }}>
|
||||||
|
<h2 style={{ fontSize: '1.125rem', fontWeight: 600, color: '#059669', margin: 0 }}>
|
||||||
|
Add Chapters
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Timeline Controls */}
|
{/* Timeline Controls */}
|
||||||
<TimelineControls
|
<TimelineControls
|
||||||
currentTime={currentTime}
|
currentTime={currentTime}
|
||||||
|
|||||||
@@ -11,6 +11,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
border-bottom: 2px solid rgba(16, 185, 129, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.timeline-title {
|
.timeline-title {
|
||||||
@@ -21,6 +23,8 @@
|
|||||||
|
|
||||||
.timeline-title-text {
|
.timeline-title-text {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
color: #059669;
|
||||||
|
font-size: 0.875rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.current-time {
|
.current-time {
|
||||||
@@ -48,10 +52,11 @@
|
|||||||
.timeline-container {
|
.timeline-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
background-color: #fafbfc;
|
background-color: #E2EDE4;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
overflow: visible !important;
|
overflow: visible !important;
|
||||||
|
border: 1px solid rgba(16, 185, 129, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.timeline-marker {
|
.timeline-marker {
|
||||||
@@ -194,7 +199,7 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
background-color: rgba(16, 185, 129, 0.6);
|
||||||
color: white;
|
color: white;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transition: background-color 0.2s;
|
transition: background-color 0.2s;
|
||||||
@@ -202,15 +207,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment:hover .clip-segment-info {
|
.clip-segment:hover .clip-segment-info {
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(16, 185, 129, 0.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment.selected .clip-segment-info {
|
.clip-segment.selected .clip-segment-info {
|
||||||
background-color: rgba(59, 130, 246, 0.5);
|
background-color: rgba(5, 150, 105, 0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment.selected:hover .clip-segment-info {
|
.clip-segment.selected:hover .clip-segment-info {
|
||||||
background-color: rgba(59, 130, 246, 0.4);
|
background-color: rgba(5, 150, 105, 0.75);
|
||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment-name {
|
.clip-segment-name {
|
||||||
|
|||||||
@@ -309,6 +309,13 @@ const App = () => {
|
|||||||
canRedo={historyPosition < history.length - 1}
|
canRedo={historyPosition < history.length - 1}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{/* Timeline Header */}
|
||||||
|
<div style={{ marginLeft: '1rem', marginTop: '-0.5rem' }}>
|
||||||
|
<h2 style={{ fontSize: '1.125rem', fontWeight: 600, color: '#2563eb', margin: 0 }}>
|
||||||
|
Trim or Split
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Timeline Controls */}
|
{/* Timeline Controls */}
|
||||||
<TimelineControls
|
<TimelineControls
|
||||||
currentTime={currentTime}
|
currentTime={currentTime}
|
||||||
|
|||||||
@@ -11,6 +11,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
border-bottom: 2px solid rgba(59, 130, 246, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.timeline-title {
|
.timeline-title {
|
||||||
@@ -21,6 +23,8 @@
|
|||||||
|
|
||||||
.timeline-title-text {
|
.timeline-title-text {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
color: #2563eb;
|
||||||
|
font-size: 0.875rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.current-time {
|
.current-time {
|
||||||
@@ -48,10 +52,11 @@
|
|||||||
.timeline-container {
|
.timeline-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
background-color: #fafbfc;
|
background-color: #eff6ff;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
overflow: visible !important;
|
overflow: visible !important;
|
||||||
|
border: 1px solid rgba(59, 130, 246, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.timeline-marker {
|
.timeline-marker {
|
||||||
@@ -194,7 +199,7 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
background-color: rgba(59, 130, 246, 0.6);
|
||||||
color: white;
|
color: white;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transition: background-color 0.2s;
|
transition: background-color 0.2s;
|
||||||
@@ -202,15 +207,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment:hover .clip-segment-info {
|
.clip-segment:hover .clip-segment-info {
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(59, 130, 246, 0.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment.selected .clip-segment-info {
|
.clip-segment.selected .clip-segment-info {
|
||||||
background-color: rgba(59, 130, 246, 0.5);
|
background-color: rgba(37, 99, 235, 0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment.selected:hover .clip-segment-info {
|
.clip-segment.selected:hover .clip-segment-info {
|
||||||
background-color: rgba(59, 130, 246, 0.4);
|
background-color: rgba(37, 99, 235, 0.75);
|
||||||
}
|
}
|
||||||
|
|
||||||
.clip-segment-name {
|
.clip-segment-name {
|
||||||
|
|||||||
Reference in New Issue
Block a user