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.

106 lines
2.4 KiB

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_excel {
  20. position: absolute;
  21. width: 100%;
  22. height: 100%;
  23. .excel-container {
  24. display: none;
  25. width: 100%;
  26. height: 100%;
  27. padding: 0 10px 0 10px;
  28. .tab-line {
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .tab-line > .nav-tabs {
  33. height: 42px;
  34. border: none;
  35. margin: 0px;
  36. }
  37. .tab-line > .nav-tabs > li {
  38. margin-right: 2px;
  39. }
  40. .tab-line > .nav-tabs > li > a {
  41. border: 0;
  42. margin-right: 0;
  43. color: @gray;
  44. }
  45. .tab-line > .nav-tabs > li > a > span {
  46. padding-left: 5px;
  47. }
  48. .tab-line > .nav-tabs > li > a > i {
  49. font-size: 15px;
  50. }
  51. .tab-line > .nav-tabs > li.open,
  52. .tab-line > .nav-tabs > li:hover {
  53. border-bottom: 4px solid lighten(@brand-primary, 20%);
  54. }
  55. .tab-line > .nav-tabs > li.open > a,
  56. .tab-line > .nav-tabs > li:hover > a {
  57. border: 0;
  58. color: @gray-light;
  59. background: none ! important;
  60. }
  61. .tab-line > .nav-tabs > li.open .dropdown-menu,
  62. .tab-line > .nav-tabs > li:hover .dropdown-menu {
  63. margin-top: 0px;
  64. }
  65. .tab-line > .nav-tabs > li.active {
  66. position: relative;
  67. border-bottom: 4px solid @brand-primary;
  68. }
  69. .tab-line > .nav-tabs > li.active > a {
  70. border: 0;
  71. color: @gray-dark;
  72. }
  73. .tab-line > .tab-content {
  74. position: absolute;
  75. top: 45px;
  76. border: 0;
  77. border-top: 1px solid #eee;
  78. margin-top: -3px;
  79. padding: 3px 0 0 0;
  80. height: calc(~'100% - 45px');
  81. width: calc(~'100% - 20px');
  82. }
  83. .table-container {
  84. position: relative;
  85. height: 100%;
  86. width: 100%;
  87. overflow: hidden;
  88. }
  89. }
  90. }