admin.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. table.footable>tbody>tr.footable-empty>td {
  2. font-size:15px !important;
  3. font-style:italic;
  4. }
  5. .pagination a {
  6. text-decoration: none !important;
  7. }
  8. .panel.panel-default {
  9. overflow: visible !important;
  10. }
  11. .table-responsive {
  12. overflow: visible !important;
  13. }
  14. @media screen and (max-width: 767px) {
  15. .table-responsive {
  16. overflow-x: scroll !important;
  17. }
  18. }
  19. body {
  20. overflow-y:scroll;
  21. }
  22. /* Fix modal moving content left */
  23. body.modal-open {
  24. overflow-y:scroll;
  25. padding-right: inherit !important;
  26. }
  27. @media (min-width: 992px) {
  28. .container {
  29. width: 80%;
  30. }
  31. }
  32. .mass-actions-admin {
  33. user-select: none;
  34. padding:10px 0 10px 0;
  35. }
  36. .inputMissingAttr {
  37. border-color: #FF4136;
  38. }
  39. .rotate {
  40. -moz-transition: all 0.3s linear;
  41. -webkit-transition: all 0.3s linear;
  42. transition: all 0.3s linear;
  43. }
  44. .rotate.animation {
  45. -ms-transform:rotateX(180deg);
  46. -moz-transform:rotateX(180deg);
  47. -webkit-transform:rotateX(180deg);
  48. transform:rotateX(180deg);
  49. }
  50. .anchor {
  51. display: block;
  52. height: 65px;
  53. margin-top: -65px;
  54. visibility: hidden;
  55. }
  56. .thumbnail img {
  57. min-height:100px;
  58. height:100px;
  59. }
  60. .nav-tabs>li>a {
  61. z-index: 1;
  62. }
  63. .table-condensed .input-sm {
  64. width: 100%!important;
  65. }
  66. .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
  67. padding: 3px;
  68. }
  69. table tbody tr {
  70. cursor: pointer;
  71. }
  72. table tbody tr td input[type="checkbox"] {
  73. cursor: pointer;
  74. }