File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 7
7
### Fixed
8
8
- Prevent slow loading of recipes due to iteration over all files
9
9
[ #1072 ] ( https://github.com./nextcloud/cookbook/pull/1072 ) @christianlupus
10
+ - Fix keyword ordering buttons being clipped by top bar
11
+ [ #1103 ] ( https://github.com./nextcloud/cookbook/pull/1103 ) @MarcelRobitaille
10
12
11
13
### Maintenance
12
14
- Add composer.json to version control to have unique installed dependency versions
Original file line number Diff line number Diff line change 39
39
/>
40
40
</transition-group >
41
41
</div >
42
- <div class =" settings-buttons" >
42
+ <div v-if = " uniqKeywords.length > 0 " class =" settings-buttons" >
43
43
<button
44
- class =" ordering-button"
44
+ class =" settings-button ordering-button"
45
45
:title =" orderButtonTitle"
46
46
@click =" toggleOrderCriterium"
47
47
>
48
48
{{ orderButtonText }}
49
49
</button >
50
50
<button
51
+ class =" settings-button"
51
52
:class =" toggleSizeIcon"
52
53
:title =" t('cookbook', 'Toggle keyword area size')"
53
54
@click =" toggleCloudSize"
@@ -222,6 +223,7 @@ export default {
222
223
<style lang="scss" scoped>
223
224
.kw-container {
224
225
position : relative ;
226
+ display : flex ;
225
227
}
226
228
227
229
.kw {
@@ -249,11 +251,11 @@ export default {
249
251
}
250
252
251
253
.settings-buttons {
252
- position : absolute ;
253
- right : 10 px ;
254
- bottom : -8 px ;
254
+ display : flex ;
255
+ align-items : flex-start ;
256
+ padding : 0.5 rem ;
255
257
256
- button {
258
+ .settings- button {
257
259
min-height : 8px ;
258
260
font-size : 8px ;
259
261
vertical-align : bottom ;
You can’t perform that action at this time.
0 commit comments