aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/static/css/main.css
AgeCommit message (Collapse)AuthorFilesLines
2020-07-18Changed @media max-width for .home .card to 450px to make it more responsivekanta1-1/+1
2020-05-30Rename see to show (#638)Glandos1-6/+6
2020-05-07Integrate illustrations as a showcase (#544)Jojo1441-7/+29
Integrate some custom graphics, and a whole comics explanation, only in French for now. Fix #363
2020-04-20Add Project History Page (#553)Andrew Dickinson1-1/+43
Co-Authored-By: Glandos <bugs-github@antipoul.fr> All project activity can be tracked, using SQLAlchemy-continuum. IP addresses can optionally be recorded.
2020-04-08merge settings and import to avoid clutter (#550)eMerzh1-1/+11
2020-04-05fix(Home): correct responsive width of cards (#549)eMerzh1-2/+9
2020-03-06Bmatticus/feature/112 dashboard sorting (#538)bmatt1-1/+6
* Added DataTables for table sorting, pagination, and searching of bill_table for dashboard. Issue #112 * Moved datatables CSS/JS to dashboard to reduce loaded data throughout * Moved link back to proper place, in head tab, but added if to prevent loading CSS/JS for datatables outside of the dashboard. Also added eye icon to drill into list_billa API to be more consistent with the look and feel of the overall site. Co-authored-by: bmatt <bmatt@nuc01.attlocal.net>
2020-02-20Align tables in statistics (#535)Glandos1-0/+8
* Align tables in statistics The table in sidebar is now aligned with the one in content, to avoid redundant informations. All tables are back to normal on small devices. * fix test * run black on tests
2020-02-20Paginate the list of bills (#480)zorun1-0/+9
We display 100 bills on each page. We only show previous/next buttons (at the top of the view) and the list of pages (at the bottom) if there are more than one pages. This uses built-in pagination support from Flask-SQLAlchemy: https://flask-sqlalchemy.palletsprojects.com/en/2.x/api/#flask_sqlalchemy.BaseQuery.paginate https://flask-sqlalchemy.palletsprojects.com/en/2.x/api/#flask_sqlalchemy.Pagination
2020-02-09Initial montly expenses (#526)Edwin Smulders1-1/+8
2019-10-19Remove jQuery datepicker.Alexis M1-1/+0
We don't need this anymore because all major browser now have implemented that feature on the browser itself. Closes #221.
2019-10-17Added support to split messages #133José Antonio de la Torre1-0/+1
2019-10-03feat: Optional field 'external link' in bill form.Leo Mouyna1-8/+11
An optional field has been added to the bill form to add a link to a real bill. A new action button allow user to see this bill. Breaking change with Bill model update for database, a migration is needed. See issue #429.
2019-09-06bill list: add placeholder and disable add bill when no membersBrice Maron1-1/+18
2019-08-26Rework invite people to projectBrice Maron1-8/+22
2019-08-26Move export form to linksBrice Maron1-0/+5
2019-08-18add homepage designBrice Maron1-6/+19
2019-08-18fix flash messages positionBrice Maron1-1/+1
2019-08-18Add project switcher on login page if already loggedBrice Maron1-0/+12
2019-08-18Add footer with linksBrice Maron1-14/+96
2019-08-18Arrange navbar items by functionsBrice Maron1-0/+13
2019-07-25prettier the css fileBrice Maron1-145/+194
2019-07-25Improve usability specially for small screenBrice Maron1-4/+6
- add buttons class to fix alignments - add responsive info to big tables - use visibility instead of display to avoid jumping rows - reorganize menu in responsive
2019-07-25Cleanup some unused css rulesBrice Maron1-13/+1
2018-09-03Underline actions links on hover. (#377)Alexis Metaireau1-0/+4
Fix #260
2018-01-26Display sidebar scroll-bar only if requiredJocelyn Delalande1-1/+2
This fix a regression from #316 (scrollbar was displayed all the time). Note that the padding-bottom value is totally empiric, but proved OK on my Fx and Chrome instances + some responsive tests. There might be finer solutions, feel free :-).
2018-01-25Make sidebar scrollable (#316)Richard Coates1-0/+1
* Make sidebar scrollable Make sidebar scrollable. * Update CHANGELOG.rst Fixes #318
2017-12-27Position flash messages with CSS rather than JS (#292)JocelynDelalande1-1/+6
Visual result is exactly the same, but less black magic :-).
2017-12-21Replace some CSS by some JS (#288)JocelynDelalande1-1/+3
2017-09-04Enhance the dashboard. (#262)0livd1-0/+24
* Update to a more flexible admin authentication * Admin can now access any project * Add delete and edit options in the dashboard * Add a link to the dashboard in the nav bar This is a rework of the changes proposed by @Olivd, so they can apply on top of the latest master without trouble. All credit goes to him for the code.
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau1-0/+254
* Use absolute imports and rename package to ihatemoney * Add a ihatemoney command * Factorize application creation logic * Refactor the tests * Update the wsgi.py module with the new create_app() function * Fix some styling thanks to Flake8. * Automate Flake8 check in the CI.