Skip to content

Commit

Permalink
Fixed some select2 css for invoice and bill
Browse files Browse the repository at this point in the history
  • Loading branch information
Batuhan Baş committed Jan 14, 2019
1 parent 3b41b90 commit 34f1523
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
10 changes: 2 additions & 8 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -918,14 +918,8 @@ input[type="number"] {
}
/* App Detail Page Sliders Finish */

.select2-results__option {
color: lightslategray;
}

.select2-results__option:hover {
color: white;
background: #6da252;
cursor: pointer;
.select2-container .select2-selection--multiple{
min-height: 34px;
}

.box-body .app-price-suffix {
Expand Down
10 changes: 10 additions & 0 deletions resources/views/expenses/bills/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/colorpicker/bootstrap-colorpicker.css') }}">
@endpush

@push('stylesheet')
<style type="text/css">
.select2-results__option.select2-results__message:hover {
color: white;
background: #6da252;
cursor: pointer;
}
</style>
@endpush

@push('scripts')
<script type="text/javascript">
var focus = false;
Expand Down
10 changes: 10 additions & 0 deletions resources/views/incomes/invoices/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/colorpicker/bootstrap-colorpicker.css') }}">
@endpush

@push('stylesheet')
<style type="text/css">
.select2-results__option.select2-results__message:hover {
color: white;
background: #6da252;
cursor: pointer;
}
</style>
@endpush

@push('scripts')
<script type="text/javascript">
var focus = false;
Expand Down

0 comments on commit 34f1523

Please sign in to comment.