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.
 
 
 
 
 
 

171 lines
3.0 KiB

  1. body {
  2. margin: 0px;
  3. padding-top: 70px;
  4. padding-bottom: 50px;
  5. }
  6. a {
  7. cursor: pointer;
  8. }
  9. .content {
  10. background-color: #fff;
  11. -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
  12. -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
  13. box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
  14. }
  15. .navbar-icon-home {
  16. vertical-align: middle;
  17. opacity: 0.4;
  18. Filter:alpha(opacity=40); /* For IE8 and earlier */
  19. }
  20. .navbar-icon-home:hover,
  21. .navbar-icon-home:focus,
  22. .navbar-icon-home:active,
  23. .navbar-icon-home-hover{
  24. opacity:1;
  25. Filter:alpha(opacity=100); /* For IE8 and earlier */
  26. }
  27. .navbar .brand {
  28. max-height: 15px;
  29. }
  30. .navbar #spinner {
  31. display: block;
  32. float: right;
  33. width: 20px;
  34. margin-bottom: -5px;
  35. margin-top: 10px;
  36. visibility: hidden;
  37. }
  38. .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] {
  39. display: inline-block;
  40. }
  41. /* alert */
  42. #alert-container {
  43. position: fixed;
  44. bottom: 8px;
  45. right: 8px;
  46. z-index: 10;
  47. }
  48. #alert-container .alert {
  49. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  50. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  51. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  52. overflow: hidden;
  53. max-width: 400px;
  54. text-overflow: ellipsis;
  55. white-space: nowrap;
  56. }
  57. /* avatar */
  58. .avatar {
  59. display: inline-block;
  60. vertical-align: middle;
  61. overflow: hidden;
  62. background-color: #ddd;
  63. border: 1px solid #eee;
  64. }
  65. .avatar-small {
  66. margin-right: 5px;
  67. width: 30px;
  68. height: 30px;
  69. border-radius: 30px;
  70. -moz-border-radius: 30px;
  71. -webkit-border-radius: 30px;
  72. }
  73. .avatar-small img {
  74. width: 30px;
  75. }
  76. .avatar-large {
  77. margin-right: 10px;
  78. width: 72px;
  79. height: 72px;
  80. border-radius: 72px;
  81. -moz-border-radius: 72px;
  82. -webkit-border-radius: 72px;
  83. }
  84. .avatar-large img {
  85. width: 72px;
  86. }
  87. /* slickgrid */
  88. ..slick-cell {
  89. font-size: 12px;
  90. }
  91. .slick-header * {
  92. -webkit-box-sizing: content-box;
  93. -moz-box-sizing: content-box;
  94. box-sizing: content-box;
  95. }
  96. .slick-headerrow-column {
  97. background: #87ceeb;
  98. text-overflow: clip;
  99. -moz-box-sizing: border-box;
  100. box-sizing: border-box;
  101. }
  102. .slick-headerrow-column input {
  103. margin: 0;
  104. padding: 0;
  105. width: 100%;
  106. height: 100%;
  107. -moz-box-sizing: border-box;
  108. box-sizing: border-box;
  109. }
  110. .missing-image {
  111. background-color: #eee;
  112. padding: 40px;
  113. width: 32px;
  114. font-size: 32px;
  115. color: #888;
  116. }
  117. .wysiwyg-editor {
  118. height: 400px;
  119. background-color: white;
  120. border-collapse: separate;
  121. border: 1px solid rgb(204, 204, 204);
  122. padding: 4px;
  123. box-sizing: content-box;
  124. -webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
  125. box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
  126. border-top-right-radius: 3px; border-bottom-right-radius: 3px;
  127. border-bottom-left-radius: 3px; border-top-left-radius: 3px;
  128. overflow: scroll;
  129. outline: none;
  130. }
  131. .rows .grid-row .divider {
  132. padding-bottom: 8px;
  133. margin-bottom: 8px;
  134. border-bottom: 1px solid #dddddd;
  135. }
  136. /*.rows .grid-row:last-child .divider {
  137. border-bottom: 0px;
  138. margin-bottom: 0px;
  139. padding-bottom: 0px;
  140. }
  141. */
  142. .rows .grid-row .data-row, .rows .grid-row .panel-heading {
  143. cursor: pointer;
  144. }