Skip to content

Commit

Permalink
v0.8.6:bookmark:
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1ny committed Jun 6, 2022
1 parent a4aa831 commit c4b0e97
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 10 deletions.
2 changes: 1 addition & 1 deletion SduMeeting.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SduMeeting"
#define MyAppVersion "0.8.5"
#define MyAppVersion "0.8.6"
#define MyAppPublisher "Shandong University, AioliaRegulus"
#define MyAppURL "https://gitee.com/sdumeeting/front-end"
#define MyAppExeName "SduMeeting.exe"
Expand Down
2 changes: 1 addition & 1 deletion builtPackage.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sdu-meeting",
"version": "0.8.5",
"version": "0.8.6",
"main": "main.js",
"author": "德布罗煜",
"license": "MIT"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sdu-meeting",
"version": "0.8.5",
"version": "0.8.6",
"main": "main.js",
"author": "德布罗煜",
"license": "MIT",
Expand Down
21 changes: 16 additions & 5 deletions src/Components/Meeting/MeetingRoom/ToolBar/ToolButton/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
background-color: #cccccc;
}

&.mettingRoom_toolButton_disabled {
cursor: not-allowed;
color: #cccccc;
&:hover {
background-color: #ffffff;
}
}

&_icon {
font-size: 2.5vmin;
}
Expand All @@ -33,6 +41,14 @@
background-color: rgba($color: #fff, $alpha: 0.3);
}

&.mettingRoom_toolButton_disabled {
cursor: not-allowed;
color: #6c6c6c;
&:hover {
background-color: rgba($color: #fff, $alpha: 0);
}
}

&_icon {
font-size: 2rem;
}
Expand All @@ -41,8 +57,3 @@
display: none;
}
}

.mettingRoom_toolButton_disabled {
cursor: not-allowed;
color: #cccccc;
}

0 comments on commit c4b0e97

Please sign in to comment.