diff --git a/src/components/presentations/PresentationEditor.css b/src/components/presentations/PresentationEditor.css index c44b531..b6c5f94 100644 --- a/src/components/presentations/PresentationEditor.css +++ b/src/components/presentations/PresentationEditor.css @@ -453,6 +453,18 @@ border-color: #cbd5e1; } +.thumbnail-action.edit { + background: #eff6ff; + border-color: #3b82f6; + color: #3b82f6; +} + +.thumbnail-action.edit:hover:not(:disabled) { + background: #dbeafe; + border-color: #2563eb; + color: #2563eb; +} + .thumbnail-action.delete:hover:not(:disabled) { background: #fef2f2; border-color: #fecaca; @@ -522,6 +534,18 @@ cursor: not-allowed; } +.control-button.edit-slide-button { + background: #3b82f6; + color: white; + border-color: #3b82f6; + font-weight: 600; +} + +.control-button.edit-slide-button:hover:not(:disabled) { + background: #2563eb; + border-color: #2563eb; +} + .slide-content-editor { flex: 1; display: flex; diff --git a/src/components/presentations/PresentationEditor.tsx b/src/components/presentations/PresentationEditor.tsx index ae7c1b4..b949646 100644 --- a/src/components/presentations/PresentationEditor.tsx +++ b/src/components/presentations/PresentationEditor.tsx @@ -307,6 +307,18 @@ export const PresentationEditor: React.FC = () => {
+
- {currentStep === 'content' && ( - - )}
- - +
+ +
+
+ +