Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RLG Maker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Romain DELEAU
RLG Maker
Commits
18a8a1d0
Commit
18a8a1d0
authored
Apr 20, 2023
by
Romain DELEAU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add supplementary-role select in supplementary-role sider-piece
parent
02968b0e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
supplementary-task.component.html
...eces/supplementary-task/supplementary-task.component.html
+7
-1
supplementary-task.component.scss
...eces/supplementary-task/supplementary-task.component.scss
+15
-0
supplementary-task.component.ts
...pieces/supplementary-task/supplementary-task.component.ts
+2
-0
No files found.
src/app/sider-pieces/supplementary-task/supplementary-task.component.html
View file @
18a8a1d0
...
...
@@ -2,8 +2,14 @@
<div
class=
"piece-form"
>
<div
class=
"piece-title"
>
Tâche liée au rôle supplémentaire
</div>
<div
class=
"piece-form-checkbox"
>
<input
type=
"checkbox"
/>
<input
type=
"checkbox"
[(
ngModel
)]="
checkbox
"
/>
<label>
Oui
</label>
</div>
<div
class=
"piece-form-select"
*
ngIf=
"checkbox"
>
<label>
Rôle
</label>
<select>
<option>
Rôle 1
</option>
</select>
</div>
</div>
</div>
\ No newline at end of file
src/app/sider-pieces/supplementary-task/supplementary-task.component.scss
View file @
18a8a1d0
...
...
@@ -21,5 +21,20 @@
border
:
none
;
border-radius
:
10px
;
}
&
-select
{
margin-top
:
5px
;
margin-left
:
10px
;
width
:
100%
;
select
{
border-radius
:
10px
;
border
:
none
;
background-color
:
white
;
height
:
25px
;
margin-left
:
10px
;
width
:
200px
;
}
}
}
}
\ No newline at end of file
src/app/sider-pieces/supplementary-task/supplementary-task.component.ts
View file @
18a8a1d0
...
...
@@ -12,4 +12,6 @@ export class SupplementaryTaskComponent implements OnInit {
ngOnInit
():
void
{
}
checkbox
:
boolean
=
false
;
}
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