@@ -37,12 +37,12 @@ The size of the CSS variable ``--clickable-area`` variable has shrunk from ``44p
37
37
This will result in several regressions and paper-cuts in your app that will need to be manually fixed.
38
38
It's recommended to:
39
39
40
- 1) Link the @nextcloud/vue current master to your app (pull often cause fixes are getting in there too);
40
+ 1) Link the `` @nextcloud/vue `` current master to your app (pull often cause fixes are getting in there too);
41
41
2) Do a codebase-wide search of `44px ` and replace with the variable `--default-clickable-area ` if appropriate;
42
42
3) Check for regressions and visual bugs;
43
43
4) Report the regression of your app in this issue (you can create a heading with the name of your own app);
44
- 5) Also report @nextlcoud/vue library regressions if they're not reported already in their list;
45
- 6) Fix regression in your app (only the ones that are unrelated to the @nextcloud/vue components);
44
+ 5) Also report `` @nextlcoud/vue `` library regressions if they're not reported already in their list;
45
+ 6) Fix regression in your app (only the ones that are unrelated to the `` @nextcloud/vue `` components);
46
46
47
47
Line height
48
48
^^^^^^^^^^^
@@ -58,6 +58,25 @@ Nextcloud now provides meaningful default styles for heading elements.
58
58
This can cause visual regressions if your code does not explicitly set font size and weight.
59
59
If you need to use heading elements outside of text content, you might need to adjust their styles.
60
60
61
+ Border radius
62
+ ^^^^^^^^^^^^^
63
+
64
+ The border radius CSS variables have been refactored:
65
+
66
+ - Added
67
+
68
+ - ``--border-radius-small `` was added for smaller elements like chips.
69
+ - ``--border-radius-container `` was added for smaller containers like action menus.
70
+ - ``--border-radius-container-large `` was added for larger containers like body or modals.
71
+ - ``--border-radius-element `` was added for interactive elements such as buttons, input, navigation and list items.
72
+
73
+ - Deprecated
74
+
75
+ - ``--border-radius `` is deprecated now in favor of ``--border-radius-small ``.
76
+ - ``--border-radius-large `` is deprecated now in favor of ``--border-radius-element ``.
77
+ - ``--border-radius-pill `` is deprecated now in favor of ``--border-radius-element ``.
78
+ - ``--border-radius-rounded `` is deprecated now in favor of ``--border-radius-container ``.
79
+
61
80
Added APIs
62
81
^^^^^^^^^^
63
82
0 commit comments