style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .user-panel {
  2. background: white;
  3. /*border: 1px solid gray;*/
  4. }
  5. section.sidebar {
  6. height: 1500px;
  7. background: #c1cbd0;
  8. }
  9. nav.navbar.navbar-static-top {
  10. background: #3c8dbc;
  11. }
  12. .main-header .logo {
  13. background: #367fa9;
  14. }
  15. a.sidebar-toggle {
  16. color: white;
  17. }
  18. ul.treeview-menu {
  19. background: #4c5857;
  20. border-radius: 0em;
  21. margin-left: 12px;
  22. margin-right: 10px;
  23. }
  24. a.collapse-item {
  25. color: #2ebfaa;
  26. }
  27. .treeview-menu>li {
  28. margin: 0;
  29. height: 32px;
  30. width: 194px;
  31. /*background: white;*/
  32. margin-top: 3px;
  33. border-radius: 7.5;
  34. margin-left: 2px;
  35. }
  36. .treeview-menu>li:hover,.treeview-menu>li>a:hover{
  37. background: #009688;
  38. border-radius: 0.5em;
  39. color:white;
  40. }
  41. /*.active{
  42. color: white;
  43. }*/
  44. .treeview>a:hover{
  45. background-color: #009688;
  46. color:white;
  47. }
  48. nav.main_menu>ul>li.active > a > span,
  49. .treeview-menu>ul>li.active > a > i,
  50. nav.main_menu > ul > li:hover > a > span,
  51. nav.main_menu > ul > li:hover > a > i {
  52. color: red;
  53. }
  54. a {
  55. color: #1d969e;
  56. }
  57. .navbar-custom-menu>.navbar-nav>li {
  58. position: relative;
  59. text-align: center;
  60. margin-left: 251px;
  61. }
  62. a.active,#mainNavMenu li a:link.changeColor {
  63. background-color:rgb(0, 150, 136);
  64. color: white;
  65. }
  66. /*start ST*/
  67. td.details-control {
  68. background: url('resources/details_open.png') no-repeat center center;
  69. cursor: pointer;
  70. }
  71. tr.shown td.details-control {
  72. background: url('resources/details_close.png') no-repeat center center;
  73. }
  74. #example tbody tr:hover {
  75. background-color: cadetblue;
  76. cursor: pointer;
  77. }
  78. #example tr:hover td.sorting_1 {
  79. background-color: cadetblue;
  80. cursor: pointer;
  81. }
  82. #example th {
  83. background-color: #009688;
  84. }
  85. #vehicle tbody tr:hover {
  86. background-color: cadetblue;
  87. cursor: pointer;
  88. }
  89. #vehicle tr:hover td.sorting_1 {
  90. background-color: cadetblue;
  91. cursor: pointer;
  92. }
  93. #vehicle th {
  94. background-color: #009688;
  95. }
  96. /*end ST*/