Feat/table part1 (#197)

* feat(csv): export data as csv file
* feat(table): toggle fullscreen
* ux: coordinate tooltip open delay
* feat(excelDates): update tests
* refactor: folder structure
This commit is contained in:
Carlos Valente
2022-09-04 22:44:03 +02:00
committed by GitHub
parent 0651777055
commit 0e450cb6cb
43 changed files with 628 additions and 126 deletions
+23 -2
View File
@@ -222,6 +222,12 @@ $text-theme-dark: white;
background-color: $cell-theme-light;
border: 1px solid $bg-theme-light;
}
.actionText:hover,
.actionIcon:hover,
.actionDisabled:hover {
color: black;
transition: 300ms;
}
}
.tableWrapper__dark {
@@ -237,6 +243,12 @@ $text-theme-dark: white;
background-color: $cell-theme-dark;
border: 1px solid $bg-theme-dark;
}
.actionText:hover,
.actionIcon:hover,
.actionDisabled:hover {
color: white;
transition: 300ms;
}
}
.timer {
@@ -257,12 +269,21 @@ svg {
background-color: inherit !important;
}
.actionIcon {
@mixin action-element() {
cursor: pointer;
}
.actionIcon {
@include action-element();
}
.actionText {
@include action-element();
font-size: 0.65em;
}
.actionDisabled {
cursor: pointer;
@include action-element();
opacity: 0.6;
}