UX: Remove duplicate title from watched words page (#12321)
This commit is contained in:
parent
1106aee152
commit
08f169ddd4
|
@ -1,26 +1,22 @@
|
||||||
<div class="watched-word-container">
|
<div class="watched-word-controls">
|
||||||
<h2>{{model.name}}</h2>
|
{{d-button
|
||||||
|
class="btn-default download-link"
|
||||||
|
href=downloadLink
|
||||||
|
icon="download"
|
||||||
|
label="admin.watched_words.download"}}
|
||||||
|
|
||||||
<div class="watched-word-controls">
|
{{watched-word-uploader uploading=uploading actionKey=actionNameKey done=(action "uploadComplete")}}
|
||||||
{{d-button
|
|
||||||
class="btn-default download-link"
|
|
||||||
href=downloadLink
|
|
||||||
icon="download"
|
|
||||||
label="admin.watched_words.download"}}
|
|
||||||
|
|
||||||
{{watched-word-uploader uploading=uploading actionKey=actionNameKey done=(action "uploadComplete")}}
|
{{d-button
|
||||||
|
label="admin.watched_words.test.button_label"
|
||||||
|
icon="far-eye"
|
||||||
|
action=(action "test")}}
|
||||||
|
|
||||||
{{d-button
|
{{d-button
|
||||||
label="admin.watched_words.test.button_label"
|
class="btn-danger clear-all"
|
||||||
icon="far-eye"
|
label="admin.watched_words.clear_all"
|
||||||
action=(action "test")}}
|
icon="trash-alt"
|
||||||
|
action=(action "clearAll")}}
|
||||||
{{d-button
|
|
||||||
class="btn-danger clear-all"
|
|
||||||
label="admin.watched_words.clear_all"
|
|
||||||
icon="trash-alt"
|
|
||||||
action=(action "clearAll")}}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="about">{{actionDescription}}</p>
|
<p class="about">{{actionDescription}}</p>
|
||||||
|
|
|
@ -329,11 +329,6 @@ table.screened-ip-addresses {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
.watched-word-container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
.watched-words-uploader {
|
.watched-words-uploader {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
@ -363,9 +358,12 @@ table.screened-ip-addresses {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.watched-words-detail .about,
|
.watched-words-detail {
|
||||||
.watched-word-form {
|
.watched-word-controls,
|
||||||
margin: 0.5em 0 1em 0;
|
.about,
|
||||||
|
.watched-word-form {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.watched-words-test-modal p {
|
.watched-words-test-modal p {
|
||||||
|
|
Loading…
Reference in New Issue