soiz1 commited on
Commit
13d2e58
·
1 Parent(s): 7eb220d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +4 -4
index.html CHANGED
@@ -719,7 +719,7 @@
719
  .lock-controls-btn.locked {
720
  color: #64ffda;
721
  }
722
- .time-markers-container {
723
  display: flex;
724
  flex-wrap: wrap;
725
  gap: 10px;
@@ -731,7 +731,7 @@
731
 
732
  .time-marker {
733
  padding: 8px 12px;
734
- background-color: rgba(100, 255, 218, 0.2);
735
  border: 1px solid #64ffda;
736
  border-radius: 4px;
737
  cursor: grab;
@@ -740,7 +740,7 @@
740
  }
741
 
742
  .time-marker:hover {
743
- background-color: rgba(100, 255, 218, 0.3);
744
  }
745
 
746
  .time-marker.dragging {
@@ -2221,7 +2221,7 @@ function pauseMedia() {
2221
  timeMarkers.forEach(marker => {
2222
  const markerElement = document.createElement('div');
2223
  markerElement.className = 'time-marker';
2224
- markerElement.textContent = `・${marker.label}(${marker.time}秒)`;
2225
  markerElement.dataset.time = marker.time;
2226
 
2227
  // ドラッグ開始
 
719
  .lock-controls-btn.locked {
720
  color: #64ffda;
721
  }
722
+ .time-markers-container {
723
  display: flex;
724
  flex-wrap: wrap;
725
  gap: 10px;
 
731
 
732
  .time-marker {
733
  padding: 8px 12px;
734
+ background-color: rgba(100, 255, 218, 0.1);
735
  border: 1px solid #64ffda;
736
  border-radius: 4px;
737
  cursor: grab;
 
740
  }
741
 
742
  .time-marker:hover {
743
+ background-color: rgba(100, 255, 218, 0.2);
744
  }
745
 
746
  .time-marker.dragging {
 
2221
  timeMarkers.forEach(marker => {
2222
  const markerElement = document.createElement('div');
2223
  markerElement.className = 'time-marker';
2224
+ markerElement.textContent = `${marker.label}(${marker.time}秒)`;
2225
  markerElement.dataset.time = marker.time;
2226
 
2227
  // ドラッグ開始