Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inherit dataset value #322

Merged
merged 29 commits into from
Apr 26, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7fba699
use dcc tabs
tilen1976 Apr 23, 2024
f97e9a1
Target css selectors for Tabs
tilen1976 Apr 23, 2024
6f21dc1
override dash default styling selected tab @media
tilen1976 Apr 23, 2024
f96716e
remove bundle css - add ssb-styling tabs
tilen1976 Apr 24, 2024
a31a24b
return tab content conditionally
tilen1976 Apr 24, 2024
1dc0f13
remove unnecessary input in callback
tilen1976 Apr 24, 2024
311ed33
remove buil ssb tab
tilen1976 Apr 24, 2024
673d986
remove hover effect on selected tab
tilen1976 Apr 24, 2024
2ecc40c
update css
tilen1976 Apr 24, 2024
6aff56e
Move method to utils - add test
tilen1976 Apr 24, 2024
733c93e
add test for build method
tilen1976 Apr 24, 2024
71b29b9
Merge branch 'master' into chore/test-dcc-tabs
tilen1976 Apr 24, 2024
2ad115b
correct merge error
tilen1976 Apr 24, 2024
91c7560
method for set temporality value on variables based on dataset value
tilen1976 Apr 24, 2024
35bafbe
method for population - datasource and temporality
tilen1976 Apr 24, 2024
712e2ce
remove deleted method
tilen1976 Apr 24, 2024
f0ce59d
Merge branch 'master' into feat/update-values-on-tab-change
tilen1976 Apr 25, 2024
547485d
update name
tilen1976 Apr 25, 2024
be4d6ea
Log period value
tilen1976 Apr 25, 2024
6a31b7e
Merge branch 'master' into feat/update-values-on-tab-change
tilen1976 Apr 25, 2024
b1cc9cf
Add test for set variables values inherited from dataset
tilen1976 Apr 25, 2024
c71d2f6
add test for possible to change variables value after inherit from da…
tilen1976 Apr 25, 2024
fd06789
update tests and refactor code
tilen1976 Apr 25, 2024
329c772
method for only updating the dataset value that is changed
tilen1976 Apr 25, 2024
504f4f1
method ok for data source and temporality type - not ok population de…
tilen1976 Apr 26, 2024
4f96076
update test
tilen1976 Apr 26, 2024
358448a
remove multilanguage from test - method not ready for this case yet
tilen1976 Apr 26, 2024
5e262b0
update docstring
tilen1976 Apr 26, 2024
3a2e843
remove population description
tilen1976 Apr 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove bundle css - add ssb-styling tabs
tilen1976 committed Apr 24, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit f96716e5d6fcd39de70162df2e8a62132b04a40e
2,779 changes: 0 additions & 2,779 deletions src/datadoc/assets/bundle.css

This file was deleted.

45 changes: 35 additions & 10 deletions src/datadoc/assets/controlbar_style.css
Original file line number Diff line number Diff line change
@@ -24,24 +24,22 @@
.jsx-4017309047.tab-container.ssb-tabs{
display: flex;
flex-direction: row;
border-bottom: 2px solid #274247;
}

.jsx-3468109796.tab.workspace-tab{
font-size: 1.2rem;
font-size: 1rem;
font-weight: bold;
/*background-color: transparent;
text-align: left;
outline: none;
align-items: center;
background-color: transparent;
border: none;
color: inherit;
cursor: pointer;
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: 0;
text-align: left;
font-family: "Roboto", sans-serif !important;
font-stretch: normal;
font-weight: normal;
align-items: center;
cursor: pointer;
display: flex;
justify-content: center;
@@ -51,10 +49,37 @@
position: relative;
text-align: center;
text-decoration: none;
transition: background 0.2s;*/
transition: background 0.2s;
width: fit-content;
}

.jsx-3468109796.tab.workspace-tab:not(:last-of-type){
margin-right: 40px;
border: unset;
}

.jsx-4017309047.tab-container.ssb-tabs >.tab.jsx-3468109796:last-of-type{
border: unset;
}
.jsx-3468109796.tab.workspace-tab::before{
background: #274247;
bottom: 0;
content: "";
display: block;
height: 0;
left: 0;
position: absolute;
transition: all 0.2s;
width: 100%;
}

.jsx-3468109796.tab.workspace-tab.tab--selected {
.jsx-3468109796.tab.workspace-tab:hover::before{
height: 4px;
}
.jsx-3468109796.tab.workspace-tab:focus::before{
height: 4px;
}
.jsx-4017309047.tab-container.ssb-tabs > .jsx-3468109796.tab.workspace-tab.tab--selected {
border: none;
border-bottom: 4px solid #1a9d49;
}