diff --git a/client/item/src/descriptor/item-descriptor.html b/client/item/src/descriptor/item-descriptor.html
index 535efbca7..e9a225502 100644
--- a/client/item/src/descriptor/item-descriptor.html
+++ b/client/item/src/descriptor/item-descriptor.html
@@ -12,17 +12,21 @@
-
+ zoom-image="http://verdnatura.es/vn-image-data/catalog/900x900/{{::$ctrl.item.image}}"
+ on-error-src/>
+
+
+
{{$ctrl.item.name}}
Id {{$ctrl.item.id}}
-
{{$ctrl.tags[itemTag.tagFk].name}}: {{itemTag.value}}
+
{{$ctrl.tags[itemTag.tagFk].name}} {{itemTag.value}}
diff --git a/client/salix/src/components/left-menu/actions.html b/client/salix/src/components/left-menu/actions.html
index 9c10185fe..35fa96d32 100644
--- a/client/salix/src/components/left-menu/actions.html
+++ b/client/salix/src/components/left-menu/actions.html
@@ -1,5 +1,5 @@
-
diff --git a/client/salix/src/components/left-menu/left-menu.js b/client/salix/src/components/left-menu/left-menu.js
index 586752a1b..0426b74c9 100644
--- a/client/salix/src/components/left-menu/left-menu.js
+++ b/client/salix/src/components/left-menu/left-menu.js
@@ -1,5 +1,5 @@
import ngModule from '../../module';
-import './style.css';
+import './style.scss';
export default class LeftMenu {
constructor(aclService, $state) {
diff --git a/client/salix/src/components/left-menu/menu-item.html b/client/salix/src/components/left-menu/menu-item.html
index 4f9541055..43a6f68b0 100644
--- a/client/salix/src/components/left-menu/menu-item.html
+++ b/client/salix/src/components/left-menu/menu-item.html
@@ -1,7 +1,9 @@
-
- keyboard_arrow_right
- {{::$ctrl.item.icon}}
+
+
+
{{::$ctrl.item.description}}
\ No newline at end of file
diff --git a/client/salix/src/components/left-menu/style.css b/client/salix/src/components/left-menu/style.css
deleted file mode 100644
index 8d44e4a70..000000000
--- a/client/salix/src/components/left-menu/style.css
+++ /dev/null
@@ -1,7 +0,0 @@
-vn-menu-item a:hover {
- color: white !important;
- background-color: #424242;
-}
-vn-menu-item li.active{
- background-color: #E6E6E6;
-}
diff --git a/client/salix/src/components/left-menu/style.scss b/client/salix/src/components/left-menu/style.scss
new file mode 100644
index 000000000..c14fd797e
--- /dev/null
+++ b/client/salix/src/components/left-menu/style.scss
@@ -0,0 +1,7 @@
+
+vn-menu-item {
+ & > li.active {
+ background-color: #424242;
+ color: white;
+ }
+}
diff --git a/client/salix/src/styles/background.scss b/client/salix/src/styles/background.scss
index 478181070..b3a7ec7f2 100644
--- a/client/salix/src/styles/background.scss
+++ b/client/salix/src/styles/background.scss
@@ -26,11 +26,11 @@ html [bg-dark-menu], .bg-dark-menu {
background-color: darken($bg-dark-menu, 35%);
}
/* Color para items seleccionados */
-.bg-dark-item{
+.bg-dark-item {
background-color: $bg-dark-bar;
color: $color-white;
}
/* Color para items inactivos */
-.bg-opacity-item{
+.bg-opacity-item {
opacity: 0.6;
}
diff --git a/client/salix/src/styles/misc.scss b/client/salix/src/styles/misc.scss
index 13dcd6bdf..ecebb90e9 100644
--- a/client/salix/src/styles/misc.scss
+++ b/client/salix/src/styles/misc.scss
@@ -24,15 +24,6 @@ html [fixed-bottom-right] {
bottom: 2em;
right: 2em;
}
-
-vn-label {
- font-size: .9em;
- color: #666;
-}
-vn-button-bar {
- display: block;
- margin-top: $margin-small;
-}
html [text-center], .text-center {
text-align: center;
}
@@ -105,6 +96,33 @@ html [noDrop], .noDrop{
cursor: no-drop;
}
+a {
+ color: inherit;
+}
+
+.vn-clickable {
+ cursor: pointer;
+ transition: background-color 250ms ease-out;
+
+ &:hover {
+ background-color: rgba(0, 0, 0, .1);
+ }
+}
+
+button {
+ @extend .vn-clickable;
+}
+
+vn-label {
+ font-size: .9em;
+ color: #666;
+}
+
+vn-button-bar {
+ display: block;
+ margin-top: $margin-small;
+}
+
vn-main-block {
display:block;
max-width: 1920px;
@@ -118,6 +136,7 @@ vn-main-block {
padding-bottom: 1em;
}
}
+
.vn-descriptor {
& .header {
background: #ffa410;
@@ -130,15 +149,15 @@ vn-main-block {
font-size: 2.5em;
}
& > a {
+ @extend .vn-clickable;
+
display: flex;
align-items: center;
padding: .5em;
color: white;
text-decoration: none;
+ transition: background-color 250ms ease-out;
- &:hover {
- background-color: rgba(1, 1, 1, 0.1);
- }
& > vn-icon {
font-size: 1.8em;
}
@@ -154,19 +173,12 @@ vn-main-block {
.vn-list-item {
@extend .pad-medium;
@extend .border-solid-bottom;
+ @extend .vn-clickable;
display: block;
text-decoration: none;
color: inherit;
- &:hover {
- color: white;
- background-color: #424242;
-
- vn-label {
- color: #aaa;
- }
- }
& > vn-horizontal > .buttons {
align-items: center;
@@ -174,6 +186,7 @@ vn-main-block {
opacity: .4;
color: #ffa410;
margin-left: .5em;
+ transition: opacity 250ms ease-out;
&:hover {
opacity: 1;