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.

123 lines
2.8 KiB

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. .meta-panel {
  26. height: 175px;
  27. padding: 5px 25px 0 25px;
  28. .meta-table {
  29. margin-bottom: 10px ! important;
  30. .meta-tag {
  31. width: 25px;
  32. }
  33. }
  34. .meta-table > tbody > tr {
  35. border-top: 1px solid @gray-light;
  36. }
  37. .meta-table > tbody > tr:first-child {
  38. border-top: 0;
  39. }
  40. .meta-table > tbody > tr > td {
  41. border-top: 0;
  42. padding: 3px 8px 3px 8px;
  43. }
  44. }
  45. /* Based on Bootstrap Line Tabs by @keenthemes, Licensed under MIT */
  46. .content-panel {
  47. padding: 0 10px 10px 10px;
  48. .tab-line > .nav-tabs {
  49. border: none;
  50. margin: 0px;
  51. }
  52. .tab-line > .nav-tabs > li {
  53. margin-right: 2px;
  54. }
  55. .tab-line > .nav-tabs > li > a {
  56. border: 0;
  57. margin-right: 0;
  58. color: @gray;
  59. }
  60. .tab-line > .nav-tabs > li > a > span {
  61. padding-left: 5px;
  62. }
  63. .tab-line > .nav-tabs > li > a > i {
  64. font-size: 15px;
  65. }
  66. .tab-line > .nav-tabs > li.open,
  67. .tab-line > .nav-tabs > li:hover {
  68. border-bottom: 4px solid lighten(@brand-primary, 20%);
  69. }
  70. .tab-line > .nav-tabs > li.open > a,
  71. .tab-line > .nav-tabs > li:hover > a {
  72. border: 0;
  73. color: @gray-light;
  74. background: none ! important;
  75. }
  76. .tab-line > .nav-tabs > li.open .dropdown-menu,
  77. .tab-line > .nav-tabs > li:hover .dropdown-menu {
  78. margin-top: 0px;
  79. }
  80. .tab-line > .nav-tabs > li.active {
  81. position: relative;
  82. border-bottom: 4px solid @brand-primary;
  83. }
  84. .tab-line > .nav-tabs > li.active > a {
  85. border: 0;
  86. color: @gray-dark;
  87. }
  88. .tab-line > .tab-content {
  89. border: 0;
  90. border-top: 1px solid #eee;
  91. margin-top: -3px;
  92. padding: 15px 0;
  93. }
  94. .attachment-container {
  95. position: absolute;
  96. width: calc(~'100% - 20px');
  97. height: calc(~'100% - 230px');
  98. }
  99. }
  100. }
  101. }