[Frontend] Styling Export button

fixes #973
- In progress:
- Added new download symbol to symbols font;
- Added export symbol to export button;
- Layout/markup/SASS for historical tabular
view modified;
This commit is contained in:
Charles Hacskaylo
2016-05-31 09:50:12 -07:00
parent d15d27af73
commit 661b3d5889
9 changed files with 2722 additions and 1877 deletions

View File

@@ -109,6 +109,14 @@ $pad: $interiorMargin * $baseRatio;
content: "\000039";
}
}
&.t-export {
&:before {
@extend .ui-symbol;
@extend .icon;
content:'\e623';
}
}
}
.s-icon-btn {

View File

@@ -162,4 +162,14 @@ table {
min-width: 150px;
}
}
}
/********************************************************** SPECIFIC TABULAR VIEWS */
.t-tabular {
&.t-historical {
$btnExportH: 25px;
.l-view-section {
top: $btnExportH + $interiorMargin;
}
}
}