Skip to content

Commit

Permalink
[mirotalksfu] - improve buttons UI
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jul 24, 2024
1 parent 7f71a4a commit a94f1a2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/src/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies: {
* @license For commercial or closed source, contact us at [email protected] or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - [email protected]
* @version 1.5.22
* @version 1.5.23
*
*/

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
"version": "1.5.22",
"version": "1.5.23",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
Expand Down
11 changes: 7 additions & 4 deletions public/css/Room.css
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ body {

#control button:hover {
transform: translateY(-3px);
background: var(--body-bg) !important;
}

#control button i {
Expand Down Expand Up @@ -236,14 +237,15 @@ body {
width: 48px;
font-size: 1.4rem;
padding: 10px;
background: var(--btns-bg-color);
border-radius: 10px;
background: var(--btns-bg-color);
border: none !important;
transition: all 0.3s ease-in-out;
}

#bottomButtons button:hover {
transform: var(--btns-hover-scale);
background: var(--body-bg) !important;
}

/*--------------------------------------------------------------
Expand Down Expand Up @@ -1086,7 +1088,8 @@ button {

button:hover {
color: grey;
transform: var(--btns-hover-scale);
/* background: var(--body-bg) !important; */
/* transform: var(--btns-hover-scale); */
}

.red {
Expand Down Expand Up @@ -1188,7 +1191,7 @@ button:hover {
#receiveAbortBtn:hover,
#receiveHideBtn:hover {
color: rgb(255, 0, 0);
transform: var(--btns-hover-scale);
transform: translateY(-3px);
transition: all 0.3s ease-in-out;
}

Expand Down Expand Up @@ -1300,7 +1303,7 @@ progress {
border: solid 0.5px #afadad38;
}
.whiteboardColorPicker:hover {
transform: var(--btns-hover-scale);
transform: translateY(-3px);
transition: all 0.3s ease-in-out;
cursor: pointer;
}
Expand Down
4 changes: 2 additions & 2 deletions public/js/Room.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
* @license For commercial or closed source, contact us at [email protected] or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - [email protected]
* @version 1.5.22
* @version 1.5.23
*
*/

Expand Down Expand Up @@ -4299,7 +4299,7 @@ function showAbout() {
imageUrl: image.about,
customClass: { image: 'img-about' },
position: 'center',
title: 'WebRTC SFU v1.5.22',
title: 'WebRTC SFU v1.5.23',
html: `
<br />
<div id="about">
Expand Down
2 changes: 1 addition & 1 deletion public/js/RoomClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @license For commercial or closed source, contact us at [email protected] or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - [email protected]
* @version 1.5.22
* @version 1.5.23
*
*/

Expand Down

0 comments on commit a94f1a2

Please sign in to comment.