Spaces:
Paused
Paused
Update src/components/menu-bar/google-drive-save.css
Browse files
src/components/menu-bar/google-drive-save.css
CHANGED
|
@@ -446,4 +446,85 @@
|
|
| 446 |
border: 1px solid #ddd;
|
| 447 |
border-radius: 3px;
|
| 448 |
font-size: 12px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 449 |
}
|
|
|
|
| 446 |
border: 1px solid #ddd;
|
| 447 |
border-radius: 3px;
|
| 448 |
font-size: 12px;
|
| 449 |
+
}
|
| 450 |
+
/* Google Drive Save コンポーネント用の追加スタイル */
|
| 451 |
+
.shareSection {
|
| 452 |
+
margin-bottom: 20px;
|
| 453 |
+
}
|
| 454 |
+
|
| 455 |
+
.shareSection h3 {
|
| 456 |
+
margin: 0 0 10px 0;
|
| 457 |
+
font-size: 14px;
|
| 458 |
+
color: #333;
|
| 459 |
+
}
|
| 460 |
+
|
| 461 |
+
.permissionRow {
|
| 462 |
+
display: flex;
|
| 463 |
+
align-items: center;
|
| 464 |
+
margin-bottom: 10px;
|
| 465 |
+
gap: 10px;
|
| 466 |
+
}
|
| 467 |
+
|
| 468 |
+
.emailInput {
|
| 469 |
+
flex: 1;
|
| 470 |
+
padding: 8px;
|
| 471 |
+
border: 1px solid #ddd;
|
| 472 |
+
border-radius: 4px;
|
| 473 |
+
}
|
| 474 |
+
|
| 475 |
+
.roleSelect {
|
| 476 |
+
padding: 8px;
|
| 477 |
+
border: 1px solid #ddd;
|
| 478 |
+
border-radius: 4px;
|
| 479 |
+
min-width: 120px;
|
| 480 |
+
}
|
| 481 |
+
|
| 482 |
+
.addButton, .removeButton {
|
| 483 |
+
padding: 8px 12px;
|
| 484 |
+
border: 1px solid #ddd;
|
| 485 |
+
background: #f5f5f5;
|
| 486 |
+
border-radius: 4px;
|
| 487 |
+
cursor: pointer;
|
| 488 |
+
}
|
| 489 |
+
|
| 490 |
+
.addButton:hover, .removeButton:hover {
|
| 491 |
+
background: #e0e0e0;
|
| 492 |
+
}
|
| 493 |
+
|
| 494 |
+
.modalFooter {
|
| 495 |
+
display: flex;
|
| 496 |
+
justify-content: flex-end;
|
| 497 |
+
gap: 10px;
|
| 498 |
+
padding: 20px;
|
| 499 |
+
border-top: 1px solid #eee;
|
| 500 |
+
}
|
| 501 |
+
|
| 502 |
+
.applyButton, .cancelButton {
|
| 503 |
+
padding: 10px 20px;
|
| 504 |
+
border: none;
|
| 505 |
+
border-radius: 4px;
|
| 506 |
+
cursor: pointer;
|
| 507 |
+
}
|
| 508 |
+
|
| 509 |
+
.applyButton {
|
| 510 |
+
background: #4CAF50;
|
| 511 |
+
color: white;
|
| 512 |
+
}
|
| 513 |
+
|
| 514 |
+
.applyButton:hover:not(:disabled) {
|
| 515 |
+
background: #45a049;
|
| 516 |
+
}
|
| 517 |
+
|
| 518 |
+
.cancelButton {
|
| 519 |
+
background: #f5f5f5;
|
| 520 |
+
color: #333;
|
| 521 |
+
}
|
| 522 |
+
|
| 523 |
+
.cancelButton:hover:not(:disabled) {
|
| 524 |
+
background: #e0e0e0;
|
| 525 |
+
}
|
| 526 |
+
|
| 527 |
+
.applyButton:disabled, .cancelButton:disabled {
|
| 528 |
+
opacity: 0.6;
|
| 529 |
+
cursor: not-allowed;
|
| 530 |
}
|