diff --git a/public/img/tab-icons/ico-home-selected.svg b/public/img/tab-icons/ico-home-selected.svg new file mode 100644 index 000000000..efe5ef4ef --- /dev/null +++ b/public/img/tab-icons/ico-home-selected.svg @@ -0,0 +1,12 @@ + + + + Shape + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-home.svg b/public/img/tab-icons/ico-home.svg new file mode 100644 index 000000000..b966fa509 --- /dev/null +++ b/public/img/tab-icons/ico-home.svg @@ -0,0 +1,12 @@ + + + + Shape + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-receive-selected.svg b/public/img/tab-icons/ico-receive-selected.svg new file mode 100644 index 000000000..e4ac8d9bb --- /dev/null +++ b/public/img/tab-icons/ico-receive-selected.svg @@ -0,0 +1,23 @@ + + + + shopping-24px-outline_bardcode-qr + Created with Sketch. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-receive.svg b/public/img/tab-icons/ico-receive.svg new file mode 100644 index 000000000..ce473bec7 --- /dev/null +++ b/public/img/tab-icons/ico-receive.svg @@ -0,0 +1,23 @@ + + + + shopping-24px-outline_bardcode-qr + Created with Sketch. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-scan-selected.svg b/public/img/tab-icons/ico-scan-selected.svg new file mode 100644 index 000000000..4738582d9 --- /dev/null +++ b/public/img/tab-icons/ico-scan-selected.svg @@ -0,0 +1,20 @@ + + + + scan + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-scan.svg b/public/img/tab-icons/ico-scan.svg new file mode 100644 index 000000000..738e4f9bb --- /dev/null +++ b/public/img/tab-icons/ico-scan.svg @@ -0,0 +1,20 @@ + + + + scan + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-send-selected.svg b/public/img/tab-icons/ico-send-selected.svg new file mode 100644 index 000000000..cab77c545 --- /dev/null +++ b/public/img/tab-icons/ico-send-selected.svg @@ -0,0 +1,17 @@ + + + + ui-24px-outline-1_send + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-send.svg b/public/img/tab-icons/ico-send.svg new file mode 100644 index 000000000..fdf6c8a87 --- /dev/null +++ b/public/img/tab-icons/ico-send.svg @@ -0,0 +1,17 @@ + + + + ui-24px-outline-1_send + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-settings-selected.svg b/public/img/tab-icons/ico-settings-selected.svg new file mode 100644 index 000000000..fdf37cce3 --- /dev/null +++ b/public/img/tab-icons/ico-settings-selected.svg @@ -0,0 +1,12 @@ + + + + settings + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/public/img/tab-icons/ico-settings.svg b/public/img/tab-icons/ico-settings.svg new file mode 100644 index 000000000..aaf5af40c --- /dev/null +++ b/public/img/tab-icons/ico-settings.svg @@ -0,0 +1,12 @@ + + + + settings + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/public/views/tabs.html b/public/views/tabs.html index d6a5c5ff9..ec8ece6bc 100644 --- a/public/views/tabs.html +++ b/public/views/tabs.html @@ -5,11 +5,11 @@ navigation history that also transitions its views in and out. --> - + - + @@ -18,14 +18,14 @@ navigation history that also transitions its views in and out. - + - + - + diff --git a/src/sass/main.scss b/src/sass/main.scss index 9adc77ae0..28823794d 100644 --- a/src/sass/main.scss +++ b/src/sass/main.scss @@ -980,6 +980,7 @@ input[type=number] { @import "common"; @import "forms"; @import 'mixins/mixins'; +@import 'views/tabs'; @import "views/add"; @import "views/amount"; @import "views/confirm"; diff --git a/src/sass/views/tabs.scss b/src/sass/views/tabs.scss new file mode 100644 index 000000000..30ec095cd --- /dev/null +++ b/src/sass/views/tabs.scss @@ -0,0 +1,36 @@ +.tabs .tab-item { + .icon { + background-repeat: no-repeat; + background-position: center; + &.ico-home{ + background-image: url('../img/tab-icons/ico-home.svg'); + } + &.ico-home-selected{ + background-image: url('../img/tab-icons/ico-home-selected.svg'); + } + &.ico-receive{ + background-image: url('../img/tab-icons/ico-receive.svg'); + } + &.ico-receive-selected{ + background-image: url('../img/tab-icons/ico-receive-selected.svg'); + } + &.ico-settings{ + background-image: url('../img/tab-icons/ico-settings.svg'); + } + &.ico-settings-selected{ + background-image: url('../img/tab-icons/ico-settings-selected.svg'); + } + &.ico-scan{ + background-image: url('../img/tab-icons/ico-scan.svg'); + } + &.ico-scan-selected{ + background-image: url('../img/tab-icons/ico-scan-selected.svg'); + } + &.ico-send{ + background-image: url('../img/tab-icons/ico-send.svg'); + } + &.ico-send-selected{ + background-image: url('../img/tab-icons/ico-send-selected.svg'); + } + } +}