-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
118 lines (107 loc) · 2.2 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
.jtb-spin {
font-size: 15px;
font-family: "Times New Roman";
float: right;
animation: jtb-spin 2s infinite linear;
}
@keyframes jtb-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
.jtb-importing .playlist-list .playlist-items-count::after {
content: " \e90e";
color: #878c8e;
font-family: icomoon;
}
.jtb-importing .jtb-playlist-loaded .playlist-items-count::after {
content: " ✔";
}
.jtb-importing .playlist-list .playlist_icon:hover .playlist-items-count::after,
.jtb-export-btn:hover, .jtb-import-btn:hover {
content: " \e90e"; /* only affects .playlist-items-count::after */
color: #0ff;
}
.jtb-headline {
margin-bottom: 0 !important;
margin-top: 20px !important;
}
.jtb-btn {
background: transparent;
border: 1px solid white;
border-radius: 5px;
margin-left: 10px;
padding: 0px 10px;
cursor: pointer;
}
.jtb-export-btn {
margin: 5px;
padding: 5px 20px;
}
.jtb-import-btn {
font-size: 20px;
font-weight: bold;
padding-bottom: 10px;
padding-top: 10px;
cursor: pointer;
background: transparent;
border: none;
}
.jtb-note {
color: #aaa;
}
.jtb-dropping #import-playlist-container {
border: 5px dashed cyan;
}
.jtb-files {
background: rgba(0,0,0, 0.2);
border: 1px solid rgba(0,0,0, 0.5);
padding: 5px;
text-align: left;
word-break: break-all;
max-height: 30vh;
overflow-x: hidden;
overflow-y: auto;
margin: 0 -40px;
}
.jtb-filename {
font-weight: bold;
word-break: break-all;
cursor: pointer;
}
.jtb-files > .jtb-file {
margin-bottom: 10px;
}
.jtb-file > .jtb-file {
margin-left: 10px;
border-left: 1px solid gray;
padding-left: 10px;
}
.jtb-type {
margin-left: 5px;
color: gray;
word-break: break-word;
}
.jtb-file-actions {
padding-left: 20px;
}
.jtb-error {
color: #F77;
}
.jtb-playlist-select {
color: black;
}
.jtb-file-imported {
color: limegreen;
}
.jtb-file-imported::before {
content: "✔ ";
}
.jtb-working .jtb-import-pl-btn,
.jtb-working .jtb-export-btn,
.jtb-working.jtb-importing .playlist-list .playlist_icon {
cursor: not-allowed !important;
}