apparatus-entry-detail.component.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @import "../../../../assets/scss/themes";
  2. .app-detail-container {
  3. top: -0.063rem;
  4. z-index: 0;
  5. border-radius: 0;
  6. cursor: auto;
  7. @include themify($themes) {
  8. background-color: themed("appEntryBoxBackground");
  9. }
  10. }
  11. .app-detail-content,
  12. .app-detail-tabs {
  13. background-color: transparent;
  14. font-size: 1.063rem;
  15. }
  16. .app-detail-content {
  17. display: flex;
  18. justify-content: space-between;
  19. padding: 0.313rem;
  20. }
  21. .app-detail-readings {
  22. display: block;
  23. }
  24. .app-detail-nested-readings {
  25. display: block;
  26. margin-left: 0.938rem;
  27. font-size: 1rem;
  28. }
  29. .app-detail-tabs {
  30. font-size: 1rem;
  31. margin: 0 0.313rem 0 0.313rem;
  32. padding: 0.313rem 0 0 0;
  33. .nav-link {
  34. background-color: transparent;
  35. color: #000000;
  36. line-height: 1;
  37. padding: 0.25rem 0.375rem;
  38. cursor: pointer;
  39. border-radius: 0;
  40. &.active {
  41. color: #000000;
  42. }
  43. }
  44. .nav-pills,
  45. .tab-content {
  46. margin-right: -0.313rem;
  47. margin-left: -0.313rem;
  48. }
  49. .nav-link.active,
  50. .tab-content {
  51. @include themify($themes) {
  52. background-color: themed("appEntryBoxActiveTabBg");
  53. }
  54. }
  55. .tab-content {
  56. padding: 0.625rem 0.813rem;
  57. max-height: 12.5rem;
  58. overflow: auto;
  59. .info-lemma-wrapper {
  60. @include themify($themes) {
  61. border-bottom: 1px solid themed("baseBorder");
  62. }
  63. padding-bottom: 0.438rem;
  64. margin-bottom: 0.625rem;
  65. }
  66. .info-rdg {
  67. font-style: italic;
  68. font-weight: 600;
  69. font-size: 1.063rem;
  70. }
  71. .info-label {
  72. font-size: 0.813rem;
  73. text-transform: uppercase;
  74. font-weight: 600;
  75. }
  76. .more-info-label {
  77. display: block;
  78. font-size: 0.813rem;
  79. font-weight: 600;
  80. text-transform: uppercase;
  81. margin-bottom: 0.25rem;
  82. }
  83. pre {
  84. white-space: pre-wrap;
  85. font-size: 75%;
  86. margin-bottom: 0;
  87. margin-top: -1rem;
  88. }
  89. }
  90. }