Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
ulakbus-ui
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
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ulakbus
ulakbus-ui
Commits
3091f14c
Commit
3091f14c
authored
Apr 29, 2016
by
bahadircyildiz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FIX rfix #5297. Button margin gap increased
parent
c247db93
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
5 deletions
+20
-5
diagram-js.css
app/admin/css/diagram-js.css
+1
-1
app.css
app/app.css
+5
-0
form_service_pg.html
app/components/uitemplates/form_service_pg.html
+7
-2
uitemplates.js
app/components/uitemplates/uitemplates.js
+6
-1
form_service.js
app/zetalib/form_service.js
+1
-1
No files found.
app/admin/css/diagram-js.css
View file @
3091f14c
...
...
@@ -263,7 +263,7 @@ svg.new-parent {
margin
:
3px
5px
5px
5px
;
border
:
none
;
border-top
:
solid
1px
#DDD
;
}
;
}
.djs-palette
.entry
:before
{
vertical-align
:
middle
;
...
...
app/app.css
View file @
3091f14c
...
...
@@ -2381,4 +2381,9 @@ table.dataTable thead .sorting:after {
position
:
absolute
;
top
:
0
;
left
:
0
;
z-index
:
1099
;
}
/* for overflowing buttons not collapsing each other */
.bottom-margined
{
margin-bottom
:
0.75em
;
}
\ No newline at end of file
app/components/uitemplates/form_service_pg.html
View file @
3091f14c
<div>
<select
ng-model=
"selection"
ng-options=
"forms.indexOf(form) as form.name for form in forms"
ng-change=
"selectform(selection)"
>
</select>
<form
sf-schema=
"schema"
sf-form=
"form"
sf-model=
"model"
></form>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-xs-6 center"
>
<form
sf-schema=
"schema"
sf-form=
"form"
sf-model=
"model"
></form>
</div>
</div>
</div>
</div>
\ No newline at end of file
app/components/uitemplates/uitemplates.js
View file @
3091f14c
...
...
@@ -36,7 +36,12 @@ angular.module('ulakbus.uitemplates', ['ngRoute', 'schemaForm', 'ulakbus.formSer
},
{
name
:
'Deneme Form 2'
,
form
:
[
'email'
,
'id'
,
'name'
],
form
:
[
'email'
,
'id'
,
'name'
,
{
type
:
'button'
,
title
:
'DickButt1DickButt1DickButt1'
},
{
type
:
'button'
,
title
:
'DickButt2DickButt2DickButt2'
},
{
type
:
'button'
,
title
:
'DickButt3DickButt3DickButt3'
},
],
schema
:
{
properties
:
{
email
:
{
title
:
'email'
,
type
:
'string'
},
...
...
app/zetalib/form_service.js
View file @
3091f14c
...
...
@@ -314,7 +314,7 @@ angular.module('ulakbus.formService', ['ui.bootstrap'])
scope
.
form
[
scope
.
form
.
indexOf
(
k
)]
=
{
type
:
v
.
type
,
title
:
v
.
title
,
style
:
(
v
.
style
||
"btn-danger"
)
+
" hide "
+
buttonClass
,
style
:
(
v
.
style
||
"btn-danger"
)
+
" hide
bottom-margined
"
+
buttonClass
,
onClick
:
function
()
{
delete
scope
.
form_params
.
cmd
;
delete
scope
.
form_params
.
flow
;
...
...
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