diff --git a/app/fonts/taiga.eot b/app/fonts/taiga.eot
index e9a8445f..7f837d60 100644
Binary files a/app/fonts/taiga.eot and b/app/fonts/taiga.eot differ
diff --git a/app/fonts/taiga.svg b/app/fonts/taiga.svg
index 567e0833..7ba40fbc 100644
--- a/app/fonts/taiga.svg
+++ b/app/fonts/taiga.svg
@@ -22,4 +22,6 @@
+
+
diff --git a/app/fonts/taiga.ttf b/app/fonts/taiga.ttf
index 61b06ce1..ac83d548 100644
Binary files a/app/fonts/taiga.ttf and b/app/fonts/taiga.ttf differ
diff --git a/app/fonts/taiga.woff b/app/fonts/taiga.woff
index ae234b32..539ee37b 100644
Binary files a/app/fonts/taiga.woff and b/app/fonts/taiga.woff differ
diff --git a/app/styles/dependencies/typography.scss b/app/styles/dependencies/typography.scss
index d03e092b..a7a6382e 100755
--- a/app/styles/dependencies/typography.scss
+++ b/app/styles/dependencies/typography.scss
@@ -135,3 +135,9 @@ a, a:visited {
.icon-arrow-bottom:before {
content: "o";
}
+.icon-edit:before {
+ content: "p";
+}
+.icon-delete:before {
+ content: "q";
+}
diff --git a/app/styles/modules/backlog-table.scss b/app/styles/modules/backlog-table.scss
index 6006ff98..571b23c5 100644
--- a/app/styles/modules/backlog-table.scss
+++ b/app/styles/modules/backlog-table.scss
@@ -27,6 +27,10 @@
background: lighten( $greenTaiga, 60% );
@include transition (background .2s ease-in);
cursor: move;
+ .us-settings {
+ opacity: 1;
+ @include transition (opacity .2s ease-in);
+ }
}
}
.row-selected {
@@ -45,6 +49,14 @@
white-space: nowrap;
display: inline-block;
}
+ .icon {
+ color: $grayLight;
+ @extend .medium;
+ &:hover {
+ color: $grayer;
+ @include transition (color .3s linear);
+ }
+ }
}
.user-story-tags {
margin-top: .3rem;
@@ -87,6 +99,12 @@
color: $white;
}
}
+ .icon {
+ color: $white;
+ &:hover {
+ color: $white;
+ }
+ }
}
.doom-line {
width: 100%;
@@ -117,4 +135,10 @@
}
}
}
+ .us-settings {
+ float: right;
+ margin-right: 2rem;
+ opacity: 0;
+ @include transition (opacity .2s ease-in);
+ }
}
diff --git a/app/views/modules/backlog-table.jade b/app/views/modules/backlog-table.jade
index f68440d7..791c6ac3 100644
--- a/app/views/modules/backlog-table.jade
+++ b/app/views/modules/backlog-table.jade
@@ -14,8 +14,9 @@ section.backlog-table
div.user-story-name
input(type="checkbox", name="")
a(href="") Crear el perfil de usuario Senior en el admin
- a.icon.icon-edit(href="", title="Edit")
- a.icon.icon-delete(href="", title="Delete")
+ span.us-settings
+ a.icon.icon-edit(href="", title="Edit")
+ a.icon.icon-delete(href="", title="Delete")
div.user-story-tags
- for(var y = 0; y < 3; y++)
include ../components/tag
@@ -71,8 +72,9 @@ section.backlog-table
div.user-story-name
input(type="checkbox", name="")
a(href="") Crear el perfil de usuario Senior en el admin
- a.icon.icon-edit(href="", title="Edit")
- a.icon.icon-delete(href="", title="Delete")
+ span.us-settings
+ a.icon.icon-edit(href="", title="Edit")
+ a.icon.icon-delete(href="", title="Delete")
div.user-story-tags
- for(var y = 0; y < 3; y++)
include ../components/tag
diff --git a/csslintrc.json b/csslintrc.json
index ebd2d647..b57469b1 100644
--- a/csslintrc.json
+++ b/csslintrc.json
@@ -16,5 +16,6 @@
"bulletproof-font-face": false,
"important": false,
"unqualified-attributes": false,
- "regex-selectors": false
+ "regex-selectors": false,
+ "floats": false
}