You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
2.8 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. /**********************************************************************************
  2. *
  3. * Copyright (C) 2017 MuK IT GmbH
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. **********************************************************************************/
  19. .o_preview_mail {
  20. position: absolute;
  21. width: 100%;
  22. height: 100%;
  23. .mail-container {
  24. display: none;
  25. height: 100%;
  26. .meta-panel {
  27. height: 175px;
  28. padding: 5px 25px 0 25px;
  29. .meta-table {
  30. margin-bottom: 10px ! important;
  31. .meta-tag {
  32. width: 25px;
  33. }
  34. }
  35. .meta-table > tbody > tr {
  36. border-top: 1px solid @gray-light;
  37. }
  38. .meta-table > tbody > tr:first-child {
  39. border-top: 0;
  40. }
  41. .meta-table > tbody > tr > td {
  42. border-top: 0;
  43. padding: 3px 8px 3px 8px;
  44. }
  45. }
  46. .content-panel {
  47. height: calc(~'100% - 180px');
  48. padding: 0 10px 10px 10px;
  49. .tab-line {
  50. height: 100%;
  51. }
  52. .tab-line > .nav-tabs {
  53. border: none;
  54. margin: 0px;
  55. }
  56. .tab-line > .nav-tabs > li {
  57. margin-right: 2px;
  58. }
  59. .tab-line > .nav-tabs > li > a {
  60. border: 0;
  61. margin-right: 0;
  62. color: @gray;
  63. }
  64. .tab-line > .nav-tabs > li > a > span {
  65. padding-left: 5px;
  66. }
  67. .tab-line > .nav-tabs > li > a > i {
  68. font-size: 15px;
  69. }
  70. .tab-line > .nav-tabs > li.open,
  71. .tab-line > .nav-tabs > li:hover {
  72. border-bottom: 4px solid lighten(@brand-primary, 20%);
  73. }
  74. .tab-line > .nav-tabs > li.open > a,
  75. .tab-line > .nav-tabs > li:hover > a {
  76. border: 0;
  77. color: @gray-light;
  78. background: none ! important;
  79. }
  80. .tab-line > .nav-tabs > li.open .dropdown-menu,
  81. .tab-line > .nav-tabs > li:hover .dropdown-menu {
  82. margin-top: 0px;
  83. }
  84. .tab-line > .nav-tabs > li.active {
  85. position: relative;
  86. border-bottom: 4px solid @brand-primary;
  87. }
  88. .tab-line > .nav-tabs > li.active > a {
  89. border: 0;
  90. background: none ! important;
  91. color: @gray-dark;
  92. }
  93. .tab-line > .tab-content {
  94. border: 0;
  95. border-top: 1px solid #eee;
  96. margin-top: -3px;
  97. padding: 15px 0;
  98. }
  99. .tab-content {
  100. height: 100%;
  101. position: relative;
  102. }
  103. .tab-pane {
  104. height: 100%;
  105. overflow-y: auto;
  106. }
  107. }
  108. }
  109. }