diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/shared/misc/button.component.scss | 13 | ||||
-rw-r--r-- | client/src/app/shared/misc/delete-button.component.html | 4 | ||||
-rw-r--r-- | client/src/app/shared/misc/edit-button.component.html | 4 |
3 files changed, 17 insertions, 4 deletions
diff --git a/client/src/app/shared/misc/button.component.scss b/client/src/app/shared/misc/button.component.scss index 145a3474a..343aea207 100644 --- a/client/src/app/shared/misc/button.component.scss +++ b/client/src/app/shared/misc/button.component.scss | |||
@@ -28,3 +28,16 @@ | |||
28 | } | 28 | } |
29 | } | 29 | } |
30 | } | 30 | } |
31 | |||
32 | // In a table, try to minimize the space taken by this button | ||
33 | @media screen and (max-width: 1400px) { | ||
34 | :host-context(td) { | ||
35 | .action-button { | ||
36 | padding: 0 13px; | ||
37 | } | ||
38 | |||
39 | .button-label { | ||
40 | display: none; | ||
41 | } | ||
42 | } | ||
43 | } | ||
diff --git a/client/src/app/shared/misc/delete-button.component.html b/client/src/app/shared/misc/delete-button.component.html index d49de294a..7387d0a88 100644 --- a/client/src/app/shared/misc/delete-button.component.html +++ b/client/src/app/shared/misc/delete-button.component.html | |||
@@ -1,4 +1,4 @@ | |||
1 | <span class="action-button action-button-delete" > | 1 | <span class="action-button action-button-delete" [title]="label"> |
2 | <span class="icon icon-delete-grey"></span> | 2 | <span class="icon icon-delete-grey"></span> |
3 | {{ label }} | 3 | <span class="button-label">{{ label }}</span> |
4 | </span> | 4 | </span> |
diff --git a/client/src/app/shared/misc/edit-button.component.html b/client/src/app/shared/misc/edit-button.component.html index 58012a8b8..632d6bba2 100644 --- a/client/src/app/shared/misc/edit-button.component.html +++ b/client/src/app/shared/misc/edit-button.component.html | |||
@@ -1,4 +1,4 @@ | |||
1 | <a class="action-button action-button-edit" [routerLink]="routerLink"> | 1 | <a class="action-button action-button-edit" [routerLink]="routerLink" title="Edit"> |
2 | <span class="icon icon-edit"></span> | 2 | <span class="icon icon-edit"></span> |
3 | Edit | 3 | <span class="button-label">Edit</span> |
4 | </a> | 4 | </a> |