Skip to content

Commit 7c81f18

Browse files
Update video player control, fix youtube API
1 parent 9e93e26 commit 7c81f18

File tree

8 files changed

+187
-151
lines changed

8 files changed

+187
-151
lines changed

.editorconfig

Whitespace-only changes.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ Windows, macOS and Linux. Bluetooth connectivity required.
5050
The final installable app is packaged using electron-forge:
5151
`npm run make`
5252

53+
## Release Process
54+
- Increment version in package.json, run installer Github Action, run Release Github Action, Edit release notes.
55+
5356
### Architecture
5457
The app is built using TypeScript, with electron/node as a the host process, talking to the electron renderer and back again (the standard electron way of working).
5558

css/styles.css

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ label.fx-type {
171171
background-color: #2d2d2da9;
172172
color: white;
173173
padding: 1em;
174-
175174
}
176175

177176
.modal-content {
@@ -189,7 +188,7 @@ label.fx-type {
189188
.nav-section {
190189
height: 128px;
191190
background-color: #2d2d2da9;
192-
padding: 0.5em;
191+
padding: 0em;
193192
margin-bottom: 1em;
194193
min-width: 400px;
195194
max-width: 600px;
@@ -239,20 +238,18 @@ td {
239238
vertical-align: top;
240239
}
241240

242-
243-
.pip-video {
244-
position: fixed;
245-
margin-left: 40%;
246-
opacity: 0.8;
247-
transform: scale(0.3);
248-
}
249-
.expanded-video {
241+
.pip-video-control {
250242
position: fixed;
251-
margin-left: 40%;
252-
opacity: 1;
253-
transform: scale(1);
254-
background-color: #000;
255-
padding:0.2em;
256243
box-shadow: 2px 2px 2px gainsboro;
257-
color:#9c9c9c
244+
color: #dddddd;
245+
background-color: rgba(58, 58, 58, 0.849);
246+
padding: 0.2em;
247+
opacity: 1;
248+
border: 1px solid black;
249+
box-shadow: 3px 3px 20px 2px #11c137;
250+
margin-left:50%;
251+
}
252+
253+
.now-playing {
254+
box-shadow: 3px 3px 20px 2px #11c137;
258255
}

0 commit comments

Comments
 (0)