Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

333 Zeilen
5.4 KiB

  1. body {
  2. margin: 0px;
  3. padding-top: 70px;
  4. padding-bottom: 50px;
  5. }
  6. h1, h2, h3, h4, h5 {
  7. font-weight: 500;
  8. }
  9. a {
  10. cursor: pointer;
  11. }
  12. .content {
  13. background-color: #fff;
  14. -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
  15. -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
  16. box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
  17. }
  18. .splash {
  19. position: absolute;
  20. top: 0px;
  21. left: 0px;
  22. right: 0px;
  23. bottom: 0px;
  24. background-color: #eee;
  25. color: #888;
  26. text-align: center;
  27. padding-top: 250px;
  28. }
  29. /* listing */
  30. .list-row {
  31. padding: 5px;
  32. border-bottom: 1px solid #eee;
  33. }
  34. /* appframe header */
  35. .appframe-header {
  36. margin-bottom: 20px;
  37. }
  38. .appframe-title {
  39. background-color: #fff;
  40. padding-bottom: 10px;
  41. border-bottom: 1px solid #ddd;
  42. }
  43. .appframe-header .status-bar {
  44. text-align: right;
  45. }
  46. /* fixed navbar in appframe */
  47. .appframe .navbar {
  48. margin-left: -15px;
  49. margin-right: -15px;
  50. margin-bottom: 0px;
  51. border-radius: 0px;
  52. border-bottom: 1px solid #ddd;
  53. }
  54. .appframe .navbar-form select,
  55. .appframe .navbar-form input,
  56. .appframe .navbar-form button,
  57. .appframe .navbar-form label {
  58. margin-bottom: 5px;
  59. }
  60. .appframe .navbar-form {
  61. margin-bottom: 2px;
  62. width: 100%;
  63. }
  64. .appframe .info-bar {
  65. padding: 7px;
  66. border-bottom: 1px solid #ddd;
  67. margin-left: -15px;
  68. margin-right: -15px;
  69. }
  70. .appframe .info-bar {
  71. padding: 7px;
  72. height: 35px;
  73. }
  74. .appframe .info-bar .form-icon {
  75. margin-top: 4px;
  76. margin-right: 4px;
  77. color: #888;
  78. cursor: pointer;
  79. }
  80. .appframe .info-bar .form-icon:hover {
  81. color: #444;
  82. }
  83. .appframe .info-bar .form-icon:active {
  84. color: #5bc0de;
  85. }
  86. .appframe .info-bar ul {
  87. width: 80%;
  88. list-style: none;
  89. margin: 0 0 0 0;
  90. padding: 0 0 0 0;
  91. }
  92. .appframe .info-bar li {
  93. display: inline-block;
  94. padding-left: 15px;
  95. padding-right: 15px;
  96. }
  97. .appframe .info-bar li.bold a {
  98. font-weight: bold;
  99. }
  100. .appframe .title-icon {
  101. cursor: pointer;
  102. display: inline-block;
  103. padding: 14px;
  104. width: 55px;
  105. color: white;
  106. text-align: center;
  107. margin-right: 10px;
  108. border-radius: 5px;
  109. margin-top: -10px;
  110. font-size: 24px;
  111. }
  112. .appframe .title-icon:active {
  113. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  114. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  115. }
  116. /* home icon in main nav */
  117. .navbar-icon-home {
  118. vertical-align: middle;
  119. opacity: 0.4;
  120. Filter:alpha(opacity=40); /* For IE8 and earlier */
  121. }
  122. .navbar-icon-home:hover,
  123. .navbar-icon-home:focus,
  124. .navbar-icon-home:active,
  125. .navbar-icon-home-hover{
  126. opacity:1;
  127. Filter:alpha(opacity=100); /* For IE8 and earlier */
  128. }
  129. .navbar .brand {
  130. max-height: 15px;
  131. }
  132. .navbar #spinner {
  133. display: block;
  134. float: right;
  135. width: 20px;
  136. margin-bottom: -5px;
  137. margin-top: 10px;
  138. visibility: hidden;
  139. }
  140. .btn [class^="icon-"], .nav [class^="icon-"], .btn [class*=" icon-"], .nav [class*=" icon-"] {
  141. display: inline-block;
  142. }
  143. /* alert */
  144. #alert-container {
  145. position: fixed;
  146. bottom: 8px;
  147. right: 8px;
  148. z-index: 10;
  149. }
  150. #alert-container .alert {
  151. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  152. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  153. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  154. overflow: hidden;
  155. max-width: 400px;
  156. text-overflow: ellipsis;
  157. white-space: nowrap;
  158. }
  159. /* avatar */
  160. .avatar {
  161. display: inline-block;
  162. vertical-align: middle;
  163. overflow: hidden;
  164. background-color: #ddd;
  165. border: 1px solid #eee;
  166. }
  167. .avatar-small {
  168. margin-right: 5px;
  169. width: 30px;
  170. height: 30px;
  171. border-radius: 30px;
  172. -moz-border-radius: 30px;
  173. -webkit-border-radius: 30px;
  174. }
  175. .avatar-small img {
  176. width: 30px;
  177. }
  178. .avatar-large {
  179. margin-right: 10px;
  180. width: 72px;
  181. height: 72px;
  182. border-radius: 72px;
  183. -moz-border-radius: 72px;
  184. -webkit-border-radius: 72px;
  185. }
  186. .avatar-large img {
  187. width: 72px;
  188. }
  189. /* slickgrid */
  190. ..slick-cell {
  191. font-size: 12px;
  192. }
  193. .slick-header * {
  194. -webkit-box-sizing: content-box;
  195. -moz-box-sizing: content-box;
  196. box-sizing: content-box;
  197. }
  198. .slick-headerrow-column {
  199. background: #87ceeb;
  200. text-overflow: clip;
  201. -moz-box-sizing: border-box;
  202. box-sizing: border-box;
  203. }
  204. .slick-headerrow-column input {
  205. margin: 0;
  206. padding: 0;
  207. width: 100%;
  208. min-height: 20px;
  209. -moz-box-sizing: border-box;
  210. box-sizing: border-box;
  211. }
  212. .missing-image {
  213. background-color: #eee;
  214. padding: 40px;
  215. width: 112px;
  216. font-size: 32px;
  217. color: #888;
  218. }
  219. .wysiwyg-editor {
  220. height: 400px;
  221. background-color: white;
  222. border-collapse: separate;
  223. border: 1px solid rgb(204, 204, 204);
  224. padding: 4px;
  225. box-sizing: content-box;
  226. -webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
  227. box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
  228. border-top-right-radius: 3px; border-bottom-right-radius: 3px;
  229. border-bottom-left-radius: 3px; border-top-left-radius: 3px;
  230. overflow: scroll;
  231. outline: none;
  232. }
  233. /* form */
  234. textarea[data-fieldtype="Small Text"] {
  235. height: 60px;
  236. }
  237. /* form grid */
  238. .rows .grid-row .divider {
  239. padding-bottom: 8px;
  240. margin-bottom: 8px;
  241. border-bottom: 1px solid #dddddd;
  242. }
  243. .rows .grid-row .data-row, .rows .grid-row .panel-heading {
  244. cursor: pointer;
  245. }
  246. /* form footer */
  247. .form-footer {
  248. background-color: #f8f8f8;
  249. margin-top: 15px;
  250. padding-top: 15px;
  251. padding-bottom: 15px;
  252. border-top: 1px dashed #ddd;
  253. color: #888;
  254. }
  255. .like-disabled-input {
  256. background-color: #f8f8f8;
  257. padding: 6px;
  258. margin-bottom: 7px;
  259. border-radius: 3px;
  260. min-height: 30px;
  261. }
  262. /* jquery ui */
  263. .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  264. display: inline;
  265. }
  266. .hidden-sm-inline {
  267. display: none;
  268. }
  269. @media (min-width: 768px) {
  270. .hidden-sm-inline {
  271. display: inline;
  272. }
  273. }