multitabs.min.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .mt-wrapper{
  2. position: relative;
  3. z-index: 1;
  4. }
  5. .mt-nav-bar {
  6. width : 100%;
  7. z-index: 200;
  8. position: absolute;
  9. }
  10. .mt-nav-bar .mt-nav{
  11. display: inline-block;
  12. background-color: #fff;
  13. vertical-align: top; /* remove vertical gap from display:inline */
  14. margin-left: -1px; /* remove 1px horizontal gap from display:inline */
  15. margin-right : -4px; /* remove 1px horizontal gap from display:inline and 3px ext padding-right, border-right from bootstrap nav*/
  16. }
  17. .mt-nav-panel{
  18. overflow: hidden;
  19. }
  20. .mt-nav-panel ul{
  21. width: 10000px;
  22. }
  23. .mt-tab-content{
  24. height: 100%;
  25. }
  26. .mt-close-tab {
  27. position: absolute;
  28. font-size: 10px;
  29. top: 2px;
  30. right: 0px;
  31. color: #94A6B0;
  32. cursor: pointer;
  33. display: none;
  34. }
  35. li:hover .mt-close-tab {
  36. display: inline;
  37. }
  38. .mt-hidden-list .mt-close-tab {
  39. display: none !important;
  40. }
  41. .mt-nav-bar a {
  42. cursor: pointer !important;
  43. line-height: 1.95!important;
  44. }
  45. @media (max-width: 767px){
  46. .mt-tab-content{
  47. padding-top: 0 !important;
  48. }
  49. }
  50. .mt-tab-content{
  51. -webkit-overflow-scrolling:touch;
  52. overflow:auto;
  53. }
  54. .mt-dragging-tab{
  55. left: auto;
  56. position: absolute !important;
  57. z-index: 9999 !important;
  58. }
  59. .mt-dragging-tab > a{
  60. background: #FBFDFD !important;
  61. }
  62. /*新增*/
  63. .mt-nav-bar .mt-nav .nav-tabs {
  64. margin-bottom: 0px;
  65. border-color: #eceeef;
  66. }
  67. .mt-close-tab:hover {
  68. color: #f96868;
  69. }
  70. .mt-dropdown .caret {
  71. position: absolute;
  72. top: 22px;
  73. }
  74. .mt-dropdown .dropdown-menu {
  75. margin-top: 0px;
  76. }
  77. #contextify-menu {
  78. min-width: 80px!important;
  79. }