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
890a1a7b
Commit
890a1a7b
authored
Nov 10, 2021
by
Kim Eunchul
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/1.4.0_kim-ec' into 'feature/1.4.0'
Feature/1.4.0 kim ec See merge request
!21
parents
2d464956
c47e3aa7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
app/css/app.css
+10
-0
app/script/check.js
+9
-2
No files found.
app/css/app.css
View file @
890a1a7b
...
...
@@ -12904,6 +12904,16 @@ a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover {
display: inline-flex!important
}
.update {
background: #fffaf7 !important;
}
tr.update a:before {
content: '
\
f2f9
'
;
font-family
:
"Font Awesome 5 Free"
;
color
:
#0053f0
;
font-weight
:
600
;
margin-right
:
5px
;
}
@media
(
max-width
:
500px
)
{
.operationStartDate
{
display
:
none
!important
...
...
app/script/check.js
View file @
890a1a7b
...
...
@@ -443,7 +443,9 @@ CHK.initReportApp = function (callback) {
$
(
window
).
resize
(
function
()
{
CHK
.
setCategoryHeight
();
});
$
(
window
).
onorientationchange
(
function
()
{
CHK
.
setCategoryHeight
();
});
CHK
.
isSearched
=
false
;
CHK
.
operationGroupMasterId
=
0
;
// 作業一覧JSONデータ
...
...
@@ -2989,7 +2991,12 @@ CHK.createOperationList = function(operationList, isSearched = false) {
}
}
for
(
var
i
=
0
;
i
<
operationList
.
length
;
i
++
)
{
var
operationTR
=
$
(
"<tr/>"
);
var
operationTR
;
if
(
operationList
[
i
].
needSyncFlg
==
1
){
operationTR
=
$
(
"<tr class= 'update'/>"
);
}
else
{
operationTR
=
$
(
"<tr/>"
);
}
//TODO aタグlist.html 転移処理
var
operationNameTd
;
if
(
operationList
[
i
].
permitCodeRequiredFlg
==
1
)
{
...
...
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