bulma_overrides.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .has {
  2. &-text-overflow-ellipsis {
  3. flex: 1;
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. white-space: nowrap;
  7. }
  8. &-text-nowrap {
  9. white-space: nowrap;
  10. }
  11. &-content-overflow-ellipsis {
  12. max-height: 73px;
  13. overflow: hidden;
  14. text-overflow: ellipsis;
  15. background: -webkit-linear-gradient(
  16. 90deg,
  17. rgba(0, 0, 0, 0.1) 0%,
  18. rgba(0, 0, 0, 1) 40%
  19. );
  20. background-clip: text;
  21. -webkit-background-clip: text;
  22. -webkit-text-fill-color: transparent;
  23. }
  24. }
  25. .breadcrumb li {
  26. &.is-active > span {
  27. padding: 0 0.75em;
  28. }
  29. &:first-child > span {
  30. padding-left: 0;
  31. }
  32. }
  33. .section {
  34. animation: fadein 0.5s;
  35. }
  36. .select.is-block select {
  37. width: 100%;
  38. }
  39. .notification {
  40. &.is-light {
  41. &.is-primary {
  42. background-color: #ebfffc;
  43. color: #00947e;
  44. }
  45. &.is-danger {
  46. background-color: #feecf0;
  47. color: #cc0f35;
  48. }
  49. }
  50. }
  51. .is-family-code {
  52. font-size: 0.9rem;
  53. line-height: 1.5em;
  54. }
  55. @keyframes fadein {
  56. from {
  57. opacity: 0;
  58. }
  59. to {
  60. opacity: 1;
  61. }
  62. }
  63. .level.level-multiline {
  64. flex-wrap: wrap;
  65. .level-item.is-one-third {
  66. flex-basis: 26%;
  67. }
  68. .level-item.is-one-third:nth-child(n + 4) {
  69. margin-top: 10px;
  70. }
  71. }
  72. .is-size-8 {
  73. font-size: $size-8;
  74. }