_buttons.scss 1001 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // home
  2. %buttonwithborder {
  3. text-transform: uppercase;
  4. padding: 1rem;
  5. border: solid black 1px;
  6. margin-bottom: 1rem;
  7. background-color: $white-button;
  8. }
  9. // %hoveryellow{
  10. // :hover{
  11. // background-color: $yellow-puca;
  12. // }
  13. // }
  14. .field--type-link {
  15. @extend %buttonwithborder;
  16. width: fit-content;
  17. }
  18. .bouton{
  19. background-color: $white-button !important;
  20. border: none !important;
  21. cursor: pointer;
  22. }
  23. .field--type-file{
  24. @extend %buttonwithborder;
  25. }
  26. .links{
  27. @extend %buttonwithborder;
  28. }
  29. .views-field-edit-node{
  30. @extend %buttonwithborder;
  31. width: fit-content;
  32. margin-top: 1rem;
  33. }
  34. .views-field-edit-user{
  35. @extend %buttonwithborder;
  36. width: fit-content;
  37. margin-top: 1rem;
  38. }
  39. .views-field-edit-user:hover{
  40. background-color: $yellow-puca;
  41. }
  42. #edit-unlock{
  43. display: none;
  44. }
  45. #edit-submit:hover{
  46. background-color: $yellow-puca;
  47. }
  48. .views-field-edit-node:hover{
  49. background-color: $yellow-puca;
  50. }