Skip to content

Commit

Permalink
Merge pull request #1023 from didoda/refactor/styles
Browse files Browse the repository at this point in the history
Refactor styles
  • Loading branch information
didoda committed Jul 6, 2023
2 parents 94b21ff + a2e9362 commit 24525a7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions resources/styles/_elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ nav.pagination {
input {
min-width: 2.5em;
text-align: center;
border-radius: 0.25rem;
}

.pages-delimiter {
Expand Down
1 change: 1 addition & 0 deletions resources/styles/_utility_classes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
.my-2 { margin-top: $gutter * 2; margin-bottom: $gutter * 2; }

.mt-0 { margin-top: 0 !important; }
.mt-025 { margin-top: $gutter * .25; }
.mt-05 { margin-top: $gutter * .5; }
.mt-1 { margin-top: $gutter; }
.mt-15 { margin-top: $gutter * 1.5; }
Expand Down
1 change: 1 addition & 0 deletions templates/Element/FilterBox/filter_box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: 0 !important;

> * {
margin-bottom: $gutter;
Expand Down
2 changes: 1 addition & 1 deletion templates/Element/FilterBox/filter_box_common.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@keydown.enter.prevent="applyFilter"
/>

<label v-if="showAdvanced">
<label class="mt-025" v-if="showAdvanced">
<input type="checkbox" form="_filters" v-model="queryFilter.filter['history_editor']" :initvalue="initHistoryEditor">{{ __('Only my contents') }}</input>
</label>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/Pages/Login/login.twig
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<span class="ml-05">{{ __('Sign in') }}</span>
</button>

<p class="help">{{ Html.link(__('Forgot your password?'), {'_name': 'password:reset'})|raw }}</p>
<p class="mt-025">{{ Html.link(__('Forgot your password?'), {'_name': 'password:reset'})|raw }}</p>


{# Temp hidden to check session id #}
Expand Down

0 comments on commit 24525a7

Please sign in to comment.