Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
4d67bd4f
Commit
4d67bd4f
authored
Jul 12, 2017
by
Benoît
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix navbar & modal transaction details
parent
d42348f4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
5560 additions
and
3852 deletions
+5560
-3852
package.json
Breeze.UI/package.json
+5
-5
login.component.html
Breeze.UI/src/app/login/login.component.html
+2
-3
transaction-details.component.html
...et/transaction-details/transaction-details.component.html
+6
-6
_custom.scss
Breeze.UI/src/scss/_custom.scss
+2
-1
_jumbotron.scss
Breeze.UI/src/scss/_jumbotron.scss
+0
-2
_navbar.scss
Breeze.UI/src/scss/_navbar.scss
+3
-2
_variables.scss
Breeze.UI/src/scss/_variables.scss
+1
-1
styles.css
Breeze.UI/src/styles.css
+5540
-3831
styles.css.map
Breeze.UI/src/styles.css.map
+1
-1
No files found.
Breeze.UI/package.json
View file @
4d67bd4f
...
...
@@ -69,7 +69,7 @@
"cross-env"
:
"5.0.1"
,
"css-loader"
:
"^0.28.4"
,
"cssnano"
:
"^3.10.0"
,
"electron"
:
"^1.
6.11
"
,
"electron"
:
"^1.
7.4
"
,
"electron-packager"
:
"^8.7.2"
,
"electron-reload"
:
"1.2.1"
,
"exports-loader"
:
"^0.6.4"
,
...
...
@@ -102,12 +102,12 @@
"source-map-loader"
:
"^0.2.1"
,
"style-loader"
:
"^0.18.2"
,
"stylus-loader"
:
"^3.0.1"
,
"ts-node"
:
"~3.
1
.0"
,
"tslint"
:
"~5.
4.3
"
,
"ts-node"
:
"~3.
2
.0"
,
"tslint"
:
"~5.
5.0
"
,
"typescript"
:
"2.3.4"
,
"url-loader"
:
"^0.5.9"
,
"webdriver-manager"
:
"12.0.6"
,
"webpack"
:
"^3.
0
.0"
,
"webpack-dev-server"
:
"~2.5.
0
"
"webpack"
:
"^3.
1
.0"
,
"webpack-dev-server"
:
"~2.5.
1
"
}
}
Breeze.UI/src/app/login/login.component.html
View file @
4d67bd4f
...
...
@@ -5,7 +5,7 @@
<div
*
ngIf=
"hasWallet"
>
<p
class=
"lead"
>
Please choose the wallet you would like to open
</p>
<div
class=
"row d-flex justify-content-center"
>
<form
class=
"col-md-
8
col-xs-12 text-left"
[
formGroup
]="
openWalletForm
"
>
<form
class=
"col-md-
6
col-xs-12 text-left"
[
formGroup
]="
openWalletForm
"
>
<div
class=
"form-group"
>
<label
class=
"col-12 row"
for=
"Select"
>
Wallet
</label>
<select
class=
"form-control custom-select col-12"
formControlName=
"selectWallet"
>
...
...
@@ -32,7 +32,7 @@
<p
class=
"lead"
>
Looks like you're new here.
<br
/>
Please create or restore a wallet.
</p>
</ng-template>
<div
class=
"row d-flex justify-content-center"
>
<button
type=
"button"
class=
"btn btn-
dar
kgray btn-lg"
(
click
)="
onCreateClicked
()"
>
Create or restore a wallet
</button>
<button
type=
"button"
class=
"btn btn-
lin
kgray btn-lg"
(
click
)="
onCreateClicked
()"
>
Create or restore a wallet
</button>
</div>
</div>
<!-- /container-->
...
...
@@ -40,4 +40,3 @@
<!-- /login-->
</section>
<!-- /breeze-->
Breeze.UI/src/app/wallet/transaction-details/transaction-details.component.html
View file @
4d67bd4f
...
...
@@ -8,11 +8,11 @@
<h5
class=
"modal-title text-uppercase"
id=
"modalDetail"
>
Transaction Details
</h5>
<ul
class=
"list-inline row"
>
<li
class=
"list-inline-item col blockLabel"
>
Type
</li>
<li
class=
"list-inline-item col-9 blockText"
>
{{ transaction.type }}
</li>
<li
class=
"list-inline-item col-9 blockText
text-capitalize
"
>
{{ transaction.type }}
</li>
</ul>
<ul
class=
"list-inline row"
>
<li
class=
"list-inline-item col blockLabel"
>
Amount
</li>
<li
class=
"list-inline-item col-9 blockText
"
><strong
class=
"text-success"
>
{{transaction.amount | coinNotation }}
</strong>
</li>
<li
class=
"list-inline-item col-9 blockText
text-success"
>
{{transaction.amount | coinNotation }}
</li>
</ul>
<!--<ul class="list-inline row">
<li class="list-inline-item col blockLabel">From</li>
...
...
@@ -20,17 +20,17 @@
</ul>-->
<ul
class=
"list-inline row"
>
<li
class=
"list-inline-item col blockLabel"
>
Date
</li>
<li
class=
"list-inline-item col-9 blockText"
>
<small>
{{ transaction.timestamp * 1000 | date:'medium' }}
</small>
</li>
<li
class=
"list-inline-item col-9 blockText"
>
{{ transaction.timestamp * 1000 | date:'medium' }}
</li>
</ul>
<ul
class=
"list-inline row"
>
<li
class=
"list-inline-item col blockLabel"
>
Block
</li>
<li
class=
"list-inline-item col-9 blockText"
>
#{{ transaction.confirmedInBlock }}
</li>
</ul>
<ul
class=
"list-inline row"
>
<li
class=
"list-inline-item col blockLabel"
>
Transaction ID
</li>
<li
class=
"list-inline-item col-
9 blockText
blockID"
><code>
{{ transaction.id }}
</code></li>
<li
class=
"list-inline-item col blockLabel
my-3
"
>
Transaction ID
</li>
<li
class=
"list-inline-item col-
10
blockID"
><code>
{{ transaction.id }}
</code></li>
<span
class=
"float-right"
><a
ngxClipboard
[
cbContent
]="
transaction
.
id
"
(
click
)="
onCopiedClick
()"
>
copy
</a></span>
<span
class=
"badge badge-success list-inline-item col
blockLabel
"
*
ngIf=
"copied"
>
The transaction ID has been copied to your clipboard.
</span>
<span
class=
"badge badge-success list-inline-item col"
*
ngIf=
"copied"
>
The transaction ID has been copied to your clipboard.
</span>
</ul>
</div>
<div
class=
"modal-footer"
>
...
...
Breeze.UI/src/scss/_custom.scss
View file @
4d67bd4f
...
...
@@ -34,7 +34,7 @@ code {color: $spacegray !important;}
#content
{
width
:
100%
;
position
:
relative
;
padding
:
63px
0
70px
70px
;
padding
:
0
0
70px
70px
;
}
// sidebar
...
...
@@ -120,6 +120,7 @@ code {color: $spacegray !important;}
// transactions
#transaction
{
padding-top
:
2em
;
h5
{
font-size
:
.85em
;
color
:
$gray-dark
;
...
...
Breeze.UI/src/scss/_jumbotron.scss
View file @
4d67bd4f
.jumbotron
{
padding
:
$jumbotron-padding
;
margin-bottom
:
$jumbotron-padding
;
background-color
:
$jumbotron-bg
;
border-top
:
1px
solid
$gray-light
;
border-bottom
:
1px
solid
$gray-light
;
@include
border-radius
(
$border-radius-lg
);
...
...
Breeze.UI/src/scss/_navbar.scss
View file @
4d67bd4f
...
...
@@ -19,10 +19,11 @@
position
:
relative
;
display
:
flex
;
flex-direction
:
column
;
padding
:
$navbar-padding-y
$navbar-padding-x
0
70px
;
padding
:
0
$navbar-padding-x
0
70px
;
box-shadow
:
inset
0
1px
4px
0
rgba
(
0
,
0
,
0
,
0
.08
);
background
:
$white
;
border-bottom
:
1px
solid
$gray-light
;
height
:
auto
;
}
...
...
@@ -62,7 +63,7 @@
font-size
:
.96rem
;
letter-spacing
:
0
.53px
;
font-weight
:
500
;
padding
-bottom
:
1
.25rem
;
padding
:
1
.5rem
0
1
.25rem
;
}
}
...
...
Breeze.UI/src/scss/_variables.scss
View file @
4d67bd4f
...
...
@@ -223,7 +223,7 @@ $container-max-widths: (
sm
:
540px
,
md
:
720px
,
lg
:
960px
,
xl
:
1
14
0px
xl
:
1
08
0px
)
!
default
;
@include
_assert-ascending
(
$container-max-widths
,
"$container-max-widths"
);
...
...
Breeze.UI/src/styles.css
View file @
4d67bd4f
This diff is collapsed.
Click to expand it.
Breeze.UI/src/styles.css.map
View file @
4d67bd4f
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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