_tripal-entity.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .entity-tripalentity {
  2. @extend .d-flex;
  3. @extend .flex-sm-nowrap;
  4. @extend .align-content-stretch;
  5. @include media-breakpoint-down(md) {
  6. @include flex-direction(column);
  7. .ds-right {
  8. width: 100%;
  9. }
  10. }
  11. .ds-right {
  12. @include flex(1);
  13. }
  14. .ds-left,
  15. .ds-right {
  16. float: none !important;
  17. }
  18. .ds-left {
  19. margin-top: 10px;
  20. margin-right: $spacer;
  21. width: auto;
  22. min-width: 200px;
  23. @include media-breakpoint-down(md) {
  24. margin-right: 0;
  25. }
  26. > .field {
  27. border-radius: $border-radius;
  28. border: 1px solid rgba(#000, .1);
  29. }
  30. }
  31. .tripal_pane-toc-list-item-link {
  32. position: relative;
  33. padding: .75rem 40px .75rem .75rem;
  34. display: block;
  35. color: $gray-600;
  36. border-left: 3px transparent solid;
  37. border-bottom: 1px solid rgba(#000, .1);
  38. &:hover,
  39. &:active,
  40. &.active {
  41. text-decoration: none;
  42. color: theme-color(primary);
  43. border-left-color: theme-color();
  44. }
  45. &.active {
  46. &:before {
  47. font-family: FontAwesome;
  48. display: block;
  49. position: absolute;
  50. right: 10px;
  51. top: 50%;
  52. margin-top: -11px;
  53. content: '\f054';
  54. }
  55. }
  56. }
  57. .tripal_pane {
  58. position: relative;
  59. padding: 0;
  60. box-shadow: 0 0 1px rgba(#000, .25), 0 2px 4px rgba(#000, .125);
  61. border: 0;
  62. margin: 0 0 $spacer 0;
  63. border-radius: $border-radius;
  64. color: #444;
  65. table {
  66. tr:first-of-type,
  67. tbody > tr:first-of-type,
  68. thead > tr:first-of-type {
  69. > td,
  70. > th {
  71. border-top: 0;
  72. }
  73. }
  74. }
  75. }
  76. .field-group-format-title {
  77. text-shadow: none;
  78. border: 0;
  79. padding: .5rem;
  80. margin: 0;
  81. border-bottom: 1px solid rgba(#000, .05);
  82. color: #000;
  83. font-weight: bold;
  84. text-transform: uppercase;
  85. background-color: $gray-100;
  86. font-size: .9rem;
  87. + div > .field {
  88. padding: .5rem;
  89. }
  90. }
  91. .tripal_pane-fieldset-buttons {
  92. display: none;
  93. }
  94. }