Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
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
abookCheck
design
Commits
49cc7d88
Commit
49cc7d88
authored
Jun 25, 2021
by
Lee Munkyeong
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
アンドロイド対応
parent
50c41e05
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
17 deletions
+20
-17
app/css/app.css
+16
-2
app/script/check.js
+4
-15
No files found.
app/css/app.css
View file @
49cc7d88
...
...
@@ -6092,8 +6092,8 @@
font-style
:
normal
;
font-weight
:
900
;
font-display
:
block
;
src
:
url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot?6606667d9800a27eb8b5f61ccb66d510)
;
src
:
url(
/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot?6606667d9800a27eb8b5f61ccb66d510?#iefix)
format
(
"embedded-opentype"
),
url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2?3eb06c702e27fb110194f5a16c45cb8e)
format
(
"woff2"
),
url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff?f4f93856730733912b1e06ad64c0baf7)
format
(
"woff"
),
url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf?915a0b79c22a1c1f64da9e0a90a12f02)
format
(
"truetype"
),
url(
/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.svg?0454203f26b33fc02e2b686b317aab3d#fontawesome)
format
(
"svg"
)
src
:
url(
.
/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot?6606667d9800a27eb8b5f61ccb66d510)
;
src
:
url(
./fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot?6606667d9800a27eb8b5f61ccb66d510?#iefix)
format
(
"embedded-opentype"
),
url(./fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2?3eb06c702e27fb110194f5a16c45cb8e)
format
(
"woff2"
),
url(./fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff?f4f93856730733912b1e06ad64c0baf7)
format
(
"woff"
),
url(./fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf?915a0b79c22a1c1f64da9e0a90a12f02)
format
(
"truetype"
),
url(.
/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.svg?0454203f26b33fc02e2b686b317aab3d#fontawesome)
format
(
"svg"
)
}
.fa
,
.far
,
.fas
{
...
...
@@ -12894,6 +12894,16 @@ a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover {
display: inline-flex!important
}
@media (max-width: 500px) {
.operationStartDate {
display: none!important
}
.operationEndDate {
display: none!important
}
}
@media (min-width: 576px) {
.d-sm-none {
display:none!important
...
...
@@ -12968,6 +12978,10 @@ a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover {
.d-md-inline-flex {
display: inline-flex!important
}
.mobile_operation_date {
display: none!important
}
}
@media (min-width: 992px) {
...
...
app/script/check.js
View file @
49cc7d88
...
...
@@ -2738,22 +2738,13 @@ CHK.createOperationList = function(operationList) {
for
(
var
i
=
0
;
i
<
operationList
.
length
;
i
++
)
{
var
operationTR
=
$
(
"<tr/>"
);
//TODO aタグlist.html 転移処理
var
operationNameTd
if
(
CHK
.
isMobile
)
{
operationNameTd
=
$
(
"<td class='operationId_"
+
operationList
[
i
].
operationId
var
operationNameTd
=
$
(
"<td class='operationId_"
+
operationList
[
i
].
operationId
+
"'><a href=
\"
javascript:CHK_L.sendAppCommand('goOperation', '"
+
operationList
[
i
].
operationId
+
"', '"
+
operationList
[
i
].
contentId
+
"');
\"
class='d-block text-black text-decoration-none mb-1'>"
+
operationList
[
i
].
operationName
+
"</a><div class='fa-sm'><i class='far fa-clock fa-blue' style='color:blue;margin-right:10px'></i>"
+
"</a><div class='fa-sm
mobile_operation_date
'><i class='far fa-clock fa-blue' style='color:blue;margin-right:10px'></i>"
+
setOperationDate
(
operationList
[
i
].
operationStartDate
)
+
" ~ "
+
setOperationDate
(
operationList
[
i
].
operationEndDate
)
+
"</div></td>"
);
}
else
{
operationNameTd
=
$
(
"<td class='operationId_"
+
operationList
[
i
].
operationId
+
"'><a href=
\"
javascript:CHK_L.sendAppCommand('goOperation', '"
+
operationList
[
i
].
operationId
+
"', '"
+
operationList
[
i
].
contentId
+
"');
\"
class='d-block text-black text-decoration-none mb-1'>"
+
operationList
[
i
].
operationName
+
"</a></td>"
);
}
var
operationStartDateTd
=
$
(
"<td/>"
,
{
class
:
"operationStartDate"
}).
text
(
setOperationDate
(
operationList
[
i
].
operationStartDate
));
var
operationEndDateTd
=
$
(
"<td/>"
,
{
class
:
"operationEndDate"
}).
text
(
setOperationDate
(
operationList
[
i
].
operationEndDate
));
...
...
@@ -2761,10 +2752,8 @@ CHK.createOperationList = function(operationList) {
var
iconTd
=
operationList
[
i
].
operationType
==
CHK
.
OPERATION_TYPE
.
VTOUR
?
$
(
"<td class='p-2'> <button class='btn btn-outline-primary fs-8 py-2' onclick=
\"
javascript:CHK_L.sendAppCommand('goPanoramaEdit', '"
+
operationList
[
i
].
operationId
+
"', '"
+
operationList
[
i
].
contentId
+
"');
\"
>VR</button> </td>"
)
:
$
(
"<td class='p-2' />"
);
operationTR
.
append
(
operationNameTd
);
if
(
!
CHK
.
isMobile
)
{
operationTR
.
append
(
operationStartDateTd
);
operationTR
.
append
(
operationEndDateTd
);
}
operationTR
.
append
(
operationStartDateTd
);
operationTR
.
append
(
operationEndDateTd
);
operationTR
.
append
(
iconTd
);
$
(
".table tbody"
).
append
(
operationTR
);
...
...
Takatoshi Miura
@miura-t
mentioned in commit
58e6e236
Jun 28, 2021
mentioned in commit
58e6e236
mentioned in commit 58e6e236f37f9c4f4070dfcb36424a2498b2558d
Toggle commit list
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