Skip to content

Commit 633aaa6

Browse files
committed
minor #1474 Misc minor fixes and updates in some styles (javiereguiluz)
This PR was merged into the main branch. Discussion ---------- Misc minor fixes and updates in some styles Commits ------- ca0bf8a Misc minor fixes and updates in some styles
2 parents 83dbfc9 + ca0bf8a commit 633aaa6

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

assets/styles/app.scss

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,10 @@ header nav.navbar .nav-item {
253253
margin: 1.5em 0 0
254254
}
255255

256+
.btn-secondary {
257+
color: #fff;
258+
}
259+
256260
footer {
257261
background: var(--secondary-color);
258262
margin-top: 2em;
@@ -321,9 +325,14 @@ footer #footer-resources i {
321325
/* Forms
322326
------------------------------------------------------------------------- */
323327
.form-control {
328+
color: var(--gray-700);
324329
height: 45px;
325330
}
326331

332+
.form-group .form-control:focus {
333+
color: var(--text-color);
334+
}
335+
327336
.form-group.has-error .form-control {
328337
border-color: var(--red);
329338
}
@@ -395,7 +404,7 @@ body#homepage .jumbotron .btn {
395404
body#homepage .jumbotron P {
396405
margin-bottom: 15px;
397406
font-size: 23px;
398-
font-weight: 200
407+
font-weight: 400
399408
}
400409

401410
/* Page: 'Login'

templates/admin/blog/_delete_form.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{{ include('blog/_delete_post_confirmation.html.twig') }}
22
<form action="{{ url('admin_post_delete', {id: post.id}) }}" method="post" data-confirmation="true" id="delete-form">
33
<input type="hidden" name="token" value="{{ csrf_token('delete') }}" />
4-
<button type="submit" class="btn btn-lg btn-block btn-danger">
4+
<button type="submit" class="btn btn-block btn-danger">
55
<i class="fa fa-trash" aria-hidden="true"></i>
66
{{ 'action.delete_post'|trans }}
77
</button>

0 commit comments

Comments
 (0)