diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-08 17:36:10 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-08 17:44:22 +0200 |
commit | eacb25c4366bcc8fba20f98f93f004fabc6d5578 (patch) | |
tree | d006c6ef3358ec8c3e3deda643dc9b70068f2515 /client/src/app/shared/misc | |
parent | a6ce68673ace5b94a81eda3ba198f0a4170eb05e (diff) | |
download | PeerTube-eacb25c4366bcc8fba20f98f93f004fabc6d5578.tar.gz PeerTube-eacb25c4366bcc8fba20f98f93f004fabc6d5578.tar.zst PeerTube-eacb25c4366bcc8fba20f98f93f004fabc6d5578.zip |
Add reason when banning a user
Diffstat (limited to 'client/src/app/shared/misc')
5 files changed, 0 insertions, 73 deletions
diff --git a/client/src/app/shared/misc/button.component.scss b/client/src/app/shared/misc/button.component.scss deleted file mode 100644 index 343aea207..000000000 --- a/client/src/app/shared/misc/button.component.scss +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | .action-button { | ||
5 | @include peertube-button-link; | ||
6 | |||
7 | font-size: 15px; | ||
8 | font-weight: $font-semibold; | ||
9 | color: #585858; | ||
10 | background-color: #E5E5E5; | ||
11 | |||
12 | &:hover { | ||
13 | background-color: #EFEFEF; | ||
14 | } | ||
15 | |||
16 | .icon { | ||
17 | @include icon(21px); | ||
18 | |||
19 | position: relative; | ||
20 | top: -2px; | ||
21 | |||
22 | &.icon-edit { | ||
23 | background-image: url('../../../assets/images/global/edit-grey.svg'); | ||
24 | } | ||
25 | |||
26 | &.icon-delete-grey { | ||
27 | background-image: url('../../../assets/images/global/delete-grey.svg'); | ||
28 | } | ||
29 | } | ||
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 deleted file mode 100644 index 7387d0a88..000000000 --- a/client/src/app/shared/misc/delete-button.component.html +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | <span class="action-button action-button-delete" [title]="label"> | ||
2 | <span class="icon icon-delete-grey"></span> | ||
3 | <span class="button-label">{{ label }}</span> | ||
4 | </span> | ||
diff --git a/client/src/app/shared/misc/delete-button.component.ts b/client/src/app/shared/misc/delete-button.component.ts deleted file mode 100644 index 2ffd98212..000000000 --- a/client/src/app/shared/misc/delete-button.component.ts +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | import { Component, Input } from '@angular/core' | ||
2 | |||
3 | @Component({ | ||
4 | selector: 'my-delete-button', | ||
5 | styleUrls: [ './button.component.scss' ], | ||
6 | templateUrl: './delete-button.component.html' | ||
7 | }) | ||
8 | |||
9 | export class DeleteButtonComponent { | ||
10 | @Input() label = 'Delete' | ||
11 | } | ||
diff --git a/client/src/app/shared/misc/edit-button.component.html b/client/src/app/shared/misc/edit-button.component.html deleted file mode 100644 index 78fbc326e..000000000 --- a/client/src/app/shared/misc/edit-button.component.html +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | <a class="action-button action-button-edit" [routerLink]="routerLink" title="Edit"> | ||
2 | <span class="icon icon-edit"></span> | ||
3 | <span i18n class="button-label">Edit</span> | ||
4 | </a> | ||
diff --git a/client/src/app/shared/misc/edit-button.component.ts b/client/src/app/shared/misc/edit-button.component.ts deleted file mode 100644 index 201a618ec..000000000 --- a/client/src/app/shared/misc/edit-button.component.ts +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | import { Component, Input } from '@angular/core' | ||
2 | |||
3 | @Component({ | ||
4 | selector: 'my-edit-button', | ||
5 | styleUrls: [ './button.component.scss' ], | ||
6 | templateUrl: './edit-button.component.html' | ||
7 | }) | ||
8 | |||
9 | export class EditButtonComponent { | ||
10 | @Input() routerLink = [] | ||
11 | } | ||