Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
chat_webview
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCommunication
chat_webview
Commits
ffde238f
Commit
ffde238f
authored
Jul 06, 2021
by
藤川諒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BizTaskyell UIUX改善
parent
b99412f9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
11 deletions
+19
-11
public_new/collaboration.html
+1
-1
public_new/css/chat.css
+4
-2
public_new/css/collaboration.css
+9
-6
public_new/css/common.css
+1
-0
public_new/footer_collabo.html
+2
-2
public_new/js/collaboration.js
+2
-0
No files found.
public_new/collaboration.html
View file @
ffde238f
...
...
@@ -33,7 +33,7 @@
<span
class=
"collabo-label collaboration_contents document_contents"
>
文書
</span>
<span
class=
"collabo-label collaboration_contents board_contents"
>
ボード
</span>
<span
class=
"mx-3 host_contents"
>
司会者
</span>
<span
class=
"mx-3
collaboration_contents voice_contents_user video_contents_user picture_contents_user document_contents_user board_contents_user
"
>
参加者
</span>
<span
class=
"mx-3
none
"
>
参加者
</span>
</div>
</div>
<div
class=
"collabo_nav_r"
>
...
...
public_new/css/chat.css
View file @
ffde238f
...
...
@@ -246,6 +246,8 @@ input[name="tab_item"] {
line-height
:
40px
;
background
:
#0070ca2
b
;
padding-left
:
10px
;
border-top
:
1px
solid
#0070ca21
;
border-bottom
:
1px
solid
#0070ca21
;
}
.category_name
{
white-space
:
nowrap
;
...
...
@@ -806,10 +808,10 @@ input[name="tab_item"] {
}
.menu_modal
.modal-body
ul
li
{
border-bottom
:
1px
solid
#c6c6c6
;
height
:
4
0px
;
height
:
5
0px
;
}
.menu_modal
.modal-body
ul
li
a
{
line-height
:
4
0px
;
line-height
:
5
0px
;
display
:
block
;
color
:
#323743
;
}
...
...
public_new/css/collaboration.css
View file @
ffde238f
...
...
@@ -53,6 +53,10 @@
margin-bottom
:
80px
;
margin-top
:
50px
;
}
#overlay_user_list
.user_list
{
background
:
#383838
!important
;
border
:
none
!important
;
}
#collabo_main
.user_list_wrap
,
#collabo_main
.document_wrap
,
#overlay_user_list
.user_list_wrap
{
...
...
@@ -197,8 +201,6 @@
position
:
absolute
;
top
:
60px
;
right
:
0
;
height
:
100vh
;
z-index
:
999
;
}
#overlay_menu
.item01
{
opacity
:
0
;
...
...
@@ -260,8 +262,12 @@
#overlay_menu
.menu_wrap
.menu
.item
{
width
:
70px
;
height
:
70px
;
background
:
#20304c
42
;
background
:
#20304c
78
;
position
:
relative
;
z-index
:
999
;
}
#overlay_menu
.menu_wrap
.menu
.item.hide
{
z-index
:
0
;
}
#overlay_menu
.menu_wrap
.menu
.item
:hover
{
background
:
#20304c4
a
;
...
...
@@ -286,9 +292,6 @@
width
:
40px
;
height
:
40px
;
}
#overlay_menu
.overlay_menu_wrap
{
height
:
calc
(
100vh
-
180px
);
}
.fas.fa-wrench
{
color
:
#fff
;
font-size
:
24px
;
...
...
public_new/css/common.css
View file @
ffde238f
...
...
@@ -32,6 +32,7 @@ main {
}
.nav-item
{
padding
:
0
10px
;
white-space
:
nowrap
;
}
.nav-ttl
{
text-align
:
center
;
...
...
public_new/footer_collabo.html
View file @
ffde238f
...
...
@@ -9,7 +9,7 @@
</div>
</a>
</div>
<div
class=
"footer_item mx-md-3"
>
<div
class=
"footer_item mx-md-3
collaboration_contents picture_contents video_contents document_contents board_contents
"
>
<a
href=
"javascript:penToggle();"
>
<div
class=
"d-flex flex-column justify-content-center"
id=
"penBtn"
>
<div
class=
"t-icon pen disable my-0"
></div>
...
...
@@ -17,7 +17,7 @@
</div>
</a>
</div>
<div
class=
"footer_item mx-md-3"
>
<div
class=
"footer_item mx-md-3
collaboration_contents picture_contents video_contents document_contents board_contents
"
>
<a
href=
"javascript:eraserToggle();"
>
<div
class=
"d-flex flex-column justify-content-center"
id=
"eraserBtn"
>
<div
class=
"t-icon delete my-0"
></div>
...
...
public_new/js/collaboration.js
View file @
ffde238f
...
...
@@ -43,6 +43,7 @@
// 閉じるイベント
$
(
".close_btn"
).
click
(
function
()
{
$
(
"#overlay_add_user_list"
).
addClass
(
"none"
);
no_scroll
();
});
// ユーザー追加イベント
...
...
@@ -52,6 +53,7 @@
// ユーザー招待メンバー検索
$
(
".add_user_btn"
).
click
(
function
()
{
return_scroll
();
CHAT_UI
.
showLoadingIndicator
();
CHAT
.
globalSelectedUserList
=
[];
CHAT_UI
.
refreshMyGroupForAddUserInCollaboration
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment