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
ba3d604d
Commit
ba3d604d
authored
Apr 02, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Plain Diff
Merge commit '
45f74721
' into…
Merge commit '
45f74721
' into bugFix/#433group_screen_corporate_topButton_
parents
cade5986
45f74721
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
2 deletions
+12
-2
public_new/chat.html
+1
-1
public_new/css/collaboration.css
+1
-0
public_new/css/common.css
+7
-0
public_new/js/common.js
+2
-0
public_new/template/template_user_name_card.html
+1
-1
No files found.
public_new/chat.html
View file @
ba3d604d
...
...
@@ -31,7 +31,7 @@
</div>
</div>
<div
class=
"col-4 pl-0"
>
<div
class=
"nav-item text-right"
>
<div
class=
"nav-item text-right
craeteRoomButton
"
>
<a
href=
"chat_make_room.html"
>
<img
src=
"icon/icon_make_room.png"
alt=
"ルーム開設"
>
</a>
...
...
public_new/css/collaboration.css
View file @
ba3d604d
...
...
@@ -274,6 +274,7 @@
font-weight
:
bold
;
font-size
:
20px
;
}
#captyaModal
.modal-body
,
#changeHostModal
.modal-body
,
#hostRequestModal
.modal-body
{
...
...
public_new/css/common.css
View file @
ba3d604d
...
...
@@ -119,6 +119,13 @@ main{ margin-top: 60px; }
height
:
60px
;
border-radius
:
50%
;
}
.profile_modal
#userNameCard-scroll
{
height
:
200px
;
overflow
:
auto
;
padding-top
:
0rem
;
padding-right
:
0rem
;
margin-top
:
1rem
;
}
.profile_modal
.modal-header
,
.profile_modal
.modal-body
{
padding-bottom
:
0
;
}
.profile_modal
.modal-footer
button
{
width
:
33%
;
padding
:
5px
;}
.profile_modal.w_50
.modal-footer
button
{
width
:
50%
;
padding
:
5px
;}
...
...
public_new/js/common.js
View file @
ba3d604d
...
...
@@ -39,6 +39,7 @@ $(function() {
$
(
'.cancel'
).
removeClass
(
'none'
);
$
(
'.search_form form'
).
addClass
(
'd-flex flex-row h-100 align-items-center'
);
$
(
'.content'
).
addClass
(
'none'
);
$
(
'.craeteRoomButton'
).
addClass
(
'none'
);
});
// 共通検索フォーム キャンセルボタン押下イベント
$
(
'.search_form .cancel'
).
click
(
function
(){
...
...
@@ -48,6 +49,7 @@ $(function() {
$
(
'.search_form form'
).
removeClass
();
$
(
'.content'
).
removeClass
(
'none'
);
$
(
'.overlay_src_msg'
).
empty
();
$
(
'.craeteRoomButton'
).
removeClass
(
'none'
);
});
$
(
'.message_input_form'
).
click
(
function
(){
...
...
public_new/template/template_user_name_card.html
View file @
ba3d604d
...
...
@@ -10,7 +10,7 @@
<span
aria-hidden=
"true"
>
×
</span>
</button>
</div>
<div
class=
"modal-body"
>
<div
class=
"modal-body"
id=
"userNameCard-scroll"
>
{{#groupPathList}}
<li
onclick=
"CHAT_UI.refreshAllGroupSearch({{groupId}});"
><b>
{{groupPath}}
</b></li>
{{/groupPathList}}
...
...
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