Skip to content

Commit a809396

Browse files
committed
CSS tweaks.
1 parent f457eb5 commit a809396

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

TODO.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- Plug UI library - thinking mantine...
1212
- search
1313
- filters
14-
- Add "conform" models (saved filters, handpicked sets, dashboards...)
14+
- Add "confort" models & views (saved filters, handpicked sets, dashboards...)
1515
- WIP: Add Activity feature + View
1616
- WIP: Add Summary view
1717
- Every field type can also be an array of values of that type
@@ -20,30 +20,30 @@
2020
- Add Groups (handpicked lists)
2121
- Choice of UX pattern: Drawer / navigation / dual pane
2222
- translate in other languages (/src/i18n/XX.js)
23-
- In code, use functions rather than classes for components
23+
- In code, use functions rather then classes for components (in views)
2424
- Add checkboxes for selection to the List and Cards views
2525
- Add "Compare" view for side-by-side comparaison and averages
2626
- Add "Kanban" view w/ drag & drop
27-
- Add Kaggle style table view
2827
- Dependent fields
2928
- Integrate Designer inside each views
3029
- plug RTKQuery or TanStack Query (=> caching)
3130
- Add checkboxes for selection to the List and Cards views
3231
- Add filtering for List and Card views (and later for Groups)
3332
- Add "Clone" action
33+
- CSS for print
34+
- Theme Dark/Light, Comfortable/Compact
3435
- Better 404 page
3536
- Option for Drawer rather than navigation
3637
- Drawer for editing metadata
3738
- Add User settings & preferences (move most of config.js there)
3839
- a pluggin system for new Field Types or Views
3940
- upgrade components to use functions rather than classes
4041
- Add sorting for Cards
41-
- CSS for print
42-
- Theme Dark/Light, Comfortable/Compact
4342
- Tooltip style Confirmation on delete.
4443
- Warning when leaving page w/ unsaved changes.
4544
- pluggins for FieldTypes
4645
- pluggins for views
46+
- Add Kaggle style table view
4747
- routes overriding mechanism for custom build views
4848
- json-schema to Evolutility models script
4949
- CI/CD pipelines on GitHub

src/components/shell/TopBar.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
position: absolute;
1515
right: 10px;
1616
top: 10px;
17+
@media (max-width: 600px) {
18+
display: none;
19+
}
1720
}
1821
> .views {
1922
top: 2px;

src/components/views/charts/Charts.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
&.size-large {
2222
width: 100%;
2323
.i-chart {
24-
height: 600px;
24+
height: 500px;
2525
}
2626
/*
2727
@media only screen and (max-width: 700px) {
Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
.evol-activity {
2-
> div > div {
3-
display: inline-block;
4-
margin-left: 10px;
5-
color: silver;
6-
}
7-
.visits{
8-
color: grey;
2+
> div {
3+
display: flex;
4+
> a {
5+
min-width: 220px;
6+
}
7+
> div {
8+
display: inline-block;
9+
margin-left: 20px;
10+
color: silver;
11+
&.visits{
12+
color: grey;
13+
min-width: 70px;
14+
}
15+
}
916
}
1017
}

0 commit comments

Comments
 (0)