mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
hover color on datepicker ripples
This commit is contained in:
parent
e1ad358a78
commit
d2ce9ecac1
@ -88,12 +88,12 @@
|
||||
<p>Souhaitez-vous vraiment quitter le sondage ? Toutes les informations seront effacées.</p>
|
||||
<ng-template pTemplate="footer">
|
||||
<div class="columns">
|
||||
<div class="column">
|
||||
<div class="column is-half-mobile">
|
||||
<button class="button is-warning is-fullwidth cancel-button-confirm" (click)="goToHome()">
|
||||
Quitter
|
||||
</button>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="column is-half-mobile">
|
||||
<button
|
||||
class="button is-primary is-fullwidth cancel-button-reject"
|
||||
(click)="display_cancel_dialog = false"
|
||||
|
@ -2,6 +2,7 @@
|
||||
.calendar {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.p-datepicker {
|
||||
padding: 0.5em;
|
||||
margin: 1em auto;
|
||||
@ -22,6 +23,7 @@
|
||||
|
||||
.p-datepicker-buttonbar {
|
||||
margin-top: 0.5em;
|
||||
|
||||
button {
|
||||
min-width: 15em;
|
||||
}
|
||||
@ -41,18 +43,21 @@
|
||||
background: $white;
|
||||
}
|
||||
|
||||
.p-datepicker-calendar td span {
|
||||
padding: 1.5em 0.5em;
|
||||
width: 3.5em;
|
||||
transition: all ease 0.5s;
|
||||
background: $white;
|
||||
border: solid 1px $secondary_color;
|
||||
color: $secondary_color;
|
||||
.p-datepicker-calendar {
|
||||
td span,
|
||||
.p-ripple {
|
||||
padding: 1.5em 0.5em;
|
||||
width: 3.5em;
|
||||
transition: all ease 0.5s;
|
||||
background: $white;
|
||||
border: solid 1px $secondary_color;
|
||||
color: $secondary_color;
|
||||
|
||||
&:hover {
|
||||
background: mix($white, $secondary_color);
|
||||
color: $white;
|
||||
transition: all ease 0.2s;
|
||||
&:hover {
|
||||
background: $secondary_color !important;
|
||||
color: $white;
|
||||
transition: all ease 0.2s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user