| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: Arial, sans-serif;
- background-color: #f5f5f5;
- color: #333;
- width: 400px;
- max-height: 600px;
- overflow-y: auto;
- }
- #app {
- padding: 16px;
- }
- header {
- margin-bottom: 16px;
- text-align: center;
- }
- h1 {
- font-size: 20px;
- color: #333;
- }
- h2 {
- font-size: 16px;
- margin-bottom: 8px;
- padding-bottom: 4px;
- border-bottom: 1px solid #ddd;
- }
- .playlist {
- background: #fff;
- border-radius: 8px;
- padding: 12px;
- margin-bottom: 16px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- }
- .video-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 8px 0;
- border-bottom: 1px solid #eee;
- }
- .video-item:last-child {
- border-bottom: none;
- }
- .video-title {
- flex: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- a.video-title {
- text-decoration: none;
- color: #333;
- }
- .video-actions {
- display: flex;
- gap: 8px;
- }
- button {
- padding: 4px 8px;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- font-size: 12px;
- }
- button:hover {
- opacity: 0.9;
- }
- .empty-playlist {
- padding: 8px 0;
- color: #888;
- font-style: italic;
- font-size: 14px;
- }
- .current-video {
- background-color: #e3f2fd;
- border-left: 3px solid #4285f4;
- padding-left: 8px;
- font-weight: bold;
- }
- .done-video {
- color: #999;
- opacity: 0.6;
- }
- .done-video .video-title {
- text-decoration: line-through;
- }
- /* More menu styles */
- .more-menu-container {
- position: relative;
- }
- .more-btn {
- background-color: #666;
- color: white;
- font-size: 14px;
- padding: 4px 8px;
- border-radius: 4px;
- font-weight: bold;
- }
- .more-menu {
- position: absolute;
- right: 0;
- top: 100%;
- background: white;
- border: 1px solid #ddd;
- border-radius: 4px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
- z-index: 1000;
- min-width: 100px;
- margin-top: 4px;
- }
- .menu-item {
- display: block;
- width: 100%;
- padding: 8px 12px;
- border: none;
- background: none;
- text-align: left;
- cursor: pointer;
- font-size: 12px;
- border-radius: 0;
- }
- .menu-item:hover {
- background-color: #f5f5f5;
- }
- .remove-item {
- color: #f44336;
- }
- .remove-item:hover {
- background-color: #ffeaea;
- }
|