_calendar.scss 591 B

123456789101112131415161718192021222324252627282930
  1. .b-calendar {
  2. // reason: calendar bottom help text color
  3. .b-calendar-grid-help {
  4. color: $body-color !important;
  5. }
  6. .b-calendar-header {
  7. .form-control {
  8. line-height: 1.85;
  9. }
  10. }
  11. // reason: calendar navigation button outline remove
  12. .b-calendar-inner {
  13. .b-calendar-nav {
  14. button {
  15. border: 0 !important;
  16. }
  17. }
  18. }
  19. .btn-outline-light {
  20. &:hover {
  21. background-color: $gray-200;
  22. border-color: $gray-200;
  23. }
  24. }
  25. .table-primary,
  26. .table-primary > th,
  27. .table-primary > td {
  28. background-color: rgba($primary, 0.2);
  29. }
  30. }