34 lines
1.3 KiB
CSS
34 lines
1.3 KiB
CSS
|
|
|
||
|
|
|
||
|
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||
|
|
color: #495057; /* Mengubah warna teks */
|
||
|
|
line-height: 36px; /* Menyesuaikan ketinggian teks */
|
||
|
|
}
|
||
|
|
|
||
|
|
.select2-container--default .select2-selection--multiple {
|
||
|
|
background-color: white; /* Mengubah warna background untuk multiple select */
|
||
|
|
border: 1px solid #ced4da; /* Mengubah warna border */
|
||
|
|
border-radius: 0.375rem; /* Membuatnya lebih sesuai dengan Bootstrap */
|
||
|
|
}
|
||
|
|
|
||
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||
|
|
background-color: #154978; /* Mengubah warna pilihan yang dipilih */
|
||
|
|
color: white; /* Mengubah warna teks di pilihan yang dipilih */
|
||
|
|
border: 1px solid black; /* Warna border untuk pilihan yang dipilih */
|
||
|
|
border-radius: 0.2rem;
|
||
|
|
}
|
||
|
|
.select2-container--default .select2-selection--single {
|
||
|
|
background-color: white;
|
||
|
|
border: 1px solid #ced4da; /* Mengubah warna border */
|
||
|
|
border-radius: 0.375rem; /* Membuatnya lebih sesuai dengan Bootstrap */
|
||
|
|
height: 38px; /* Menyesuaikan tinggi */
|
||
|
|
}
|
||
|
|
|
||
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
||
|
|
color: white;
|
||
|
|
cursor: pointer;
|
||
|
|
display: inline-block;
|
||
|
|
font-weight: bold;
|
||
|
|
margin-right: 2px;
|
||
|
|
}
|