Files
directus/src/components
Ben Haynes 7aa4911caa Various style tweaks (#555)
* icon width

* updated pagination style

* file preview zoom

WIP — shouldn’t show up on MODAL preview

* overlay/modal close button styling

* duplicate key

* bookmark styling

* card fade

also adds an rgb value for the page background variable

* style per page dropdown

* cards per page dropdown color

* inset non-dense notifications within sidebar

* reduce border radius for xs avatars

* hide non-expanded prepend/append

* reduce sidebar padding

this gives content a bit more room

* WIP: split and update comments and revisions

work in progress

* fix collections module name

* fix file library title

* consistent border on disabled

* fix title/breadcrumb positioning

* breadcrumb fixes

* add “open” button to image interface

WIP — this needs the actual logic, and we might want to remove a button

* hide presets delete until selection

* image shadow and subtext color

* Remove breadcrumb calculation

* increase contrast for image subtitle

* fix textarea hover style

* Update src/modules/collections/index.ts

* Fix typing of translateresult to format

* Add undefined check to collection name

* Put v-if on dialog instead of button

* Remove breadcrumb logic

* Remove breadcrumb calculation

* Rename shadow to collapsed in header bar

* fix rating star display going over table header

* show collection breadcrumb for bookmarks

WIP — needs the formatted collection title

* shorter error to avoid wrapping

* remove periods

* Fix standard font-size of divider label, use large in interface

* Add extra date format strings

* Structure comments, support date headers

* Add ability to delete comments

* Add edited on status badge

Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
2020-05-12 20:10:48 -04:00
..
2020-05-12 20:10:48 -04:00
2020-05-08 15:33:54 -04:00
2020-05-04 12:31:11 -04:00
2020-04-24 18:52:27 -04:00
2020-05-01 16:01:22 -04:00
2020-05-12 20:10:48 -04:00
2020-05-12 20:10:48 -04:00
2020-04-24 20:12:51 -04:00
2020-05-12 20:10:48 -04:00
2020-05-08 15:33:54 -04:00
2020-05-12 20:10:48 -04:00
2020-05-12 20:10:48 -04:00
2020-05-12 20:10:48 -04:00
2020-04-24 18:52:27 -04:00
2020-05-12 20:10:48 -04:00
2020-04-24 18:52:27 -04:00
2020-05-12 20:10:48 -04:00
2020-05-12 20:10:48 -04:00
2020-04-30 17:01:14 -04:00
2020-02-05 15:07:20 -05:00
2020-04-30 17:01:14 -04:00

Components

Components are custom elements that can reused in various other places.

Storybook / Tests

Every component should have an entry in Storybook, and should have unit tests where appropriate.

Naming

Components must always have a - in the name. This makes sure we don't run into any conflicts with HTML element names.

Base Components

The core-most base-components are prefixed with v- (for example v-icon and v-button). These components can not rely on any global store.

Private Components

Every now and again, it makes sense to split up a bigger component in smaller sub-parts for code maintainability and organization reasons. These "internal private components" are prefixed with a _ and should never be used standalone.