25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.css 4.9 KiB

11 년 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. body {
  2. margin: 0px;
  3. padding-top: 36px;
  4. padding-bottom: 50px;
  5. }
  6. a {
  7. cursor: pointer;
  8. }
  9. a.disabled, a.disabled:hover {
  10. color: #888;
  11. cursor: default;
  12. text-decoration: none;
  13. }
  14. .layout-main {
  15. padding-bottom: 10px;
  16. }
  17. .text-small {
  18. font-size: 80%;
  19. }
  20. .text-ellipsis {
  21. display: inline-block;
  22. white-space: nowrap;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. }
  26. @media (max-width: 767px) {
  27. .layout-side-section {
  28. border-top: 1px solid #c7c7c7;
  29. }
  30. }
  31. /* freeze */
  32. div#freeze {
  33. position: fixed;
  34. display: none;
  35. top: 0px;
  36. left: 0px;
  37. bottom: 0px;
  38. right: 0px;
  39. background-color: #aaa;
  40. opacity: 0.6;
  41. z-index: 1;
  42. text-align: center;
  43. }
  44. /* listing */
  45. .show_filters {
  46. padding-top: 15px;
  47. padding-bottom: 15px;
  48. margin-bottom: 15px;
  49. border-bottom: 1px solid #c7c7c7;
  50. }
  51. .list-row {
  52. padding: 5px 15px;
  53. margin: 0px -15px;
  54. border-bottom: 1px solid #c7c7c7;
  55. }
  56. .side-panel {
  57. border-bottom: 1px solid #c7c7c7;
  58. margin: 0px -15px;
  59. padding: 5px 15px;
  60. }
  61. /* module */
  62. .alert-badge {
  63. margin: 4px 0px;
  64. padding: 10px;
  65. }
  66. .alert-badge a, .alert-badge a:hover {
  67. }
  68. .alert-badge .badge {
  69. margin-top: 3px;
  70. }
  71. .icon-in-circle {
  72. color: #b7b7b7;
  73. background-color: white;
  74. border-radius:50%;
  75. text-align: center;
  76. width: 20px;
  77. height: 20px;
  78. font-size: 20px;
  79. display: inline-block;
  80. }
  81. .form-layout {
  82. /*margin-top: -15px;*/
  83. }
  84. .form-headline {
  85. margin-bottom: 10px;
  86. font-size: 120%;
  87. }
  88. .form-dashboard {
  89. display: none;
  90. border-bottom: 1px solid #e7e7e7;
  91. }
  92. .help ol {
  93. padding-left: 19px;
  94. }
  95. .field_description_top {
  96. margin-bottom: 3px;
  97. }
  98. .link-field-btn a, .link-field-btn a:hover {
  99. color: #888;
  100. text-decoration: none;
  101. margin-left: 3px;
  102. }
  103. /* list */
  104. .doclist-row {
  105. position: relative;
  106. padding-top: 5px;
  107. padding-bottom: 3px;
  108. border-bottom: "1px solid #eee";
  109. }
  110. .doclist-row .col {
  111. padding-left: 7px;
  112. padding-right: 7px;
  113. }
  114. .list-timestamp {
  115. position: absolute;
  116. right: 5px;
  117. bottom: 2px;
  118. font-size: 70%;
  119. color: #888;
  120. }
  121. /* module */
  122. .module-item-progress {
  123. margin-bottom: 10px;
  124. height: 17px;
  125. }
  126. .module-item-progress-total {
  127. height: 7px;
  128. background-color: #999999;
  129. width: 0px;
  130. }
  131. .module-item-progress-open {
  132. height: 7px;
  133. background-color: red;
  134. width: 0px;
  135. }
  136. .badge-important {
  137. background-color: #e74c3c;
  138. }
  139. .comm-header {
  140. font-weight: bold;
  141. height: 20px;
  142. overflow: hidden;
  143. }
  144. .comm-header > div {
  145. text-overflow: ellipsis;
  146. white-space: nowrap;
  147. overflow: hidden;
  148. }
  149. /* alert */
  150. #alert-container {
  151. position: fixed;
  152. bottom: 8px;
  153. right: 8px;
  154. z-index: 10;
  155. }
  156. #alert-container .alert {
  157. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  158. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  159. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  160. overflow: hidden;
  161. max-width: 400px;
  162. text-overflow: ellipsis;
  163. white-space: nowrap;
  164. }
  165. .missing-image {
  166. background-color: #eee;
  167. display: table-cell;
  168. vertical-align: middle;
  169. text-align: center;
  170. width: 140px;
  171. height: 140px;
  172. font-size: 32px;
  173. color: #888;
  174. }
  175. /* form */
  176. .wn-editor {
  177. cursor: text;
  178. }
  179. .wn-editor img {
  180. max-width: 100%;
  181. }
  182. textarea.form-control {
  183. height: 120px;
  184. }
  185. ul.linked-with-list {
  186. list-style: none;
  187. margin: 0 0 20px 0;
  188. padding: 0 0 0 0;
  189. }
  190. ul.linked-with-list li {
  191. padding: 5px 0px;
  192. border-bottom: 1px solid #c7c7c7;
  193. }
  194. /* form grid */
  195. .grid-heading-row {
  196. padding: 8px;
  197. border-bottom: 1px solid #dddddd;
  198. }
  199. .rows .grid-row .divider {
  200. padding-bottom: 5px;
  201. margin-bottom: 5px;
  202. border-bottom: 1px solid #dddddd;
  203. }
  204. .rows .grid-row .data-row, .rows .grid-row .panel-heading {
  205. cursor: pointer;
  206. }
  207. .grid-row .panel {
  208. background-color: #fffff8;
  209. }
  210. /* form footer */
  211. .form-footer {
  212. padding-top: 15px;
  213. padding-bottom: 15px;
  214. color: #888;
  215. /*box-shadow: 0px -1px 6px rgba(0,0,0,0.3);*/
  216. }
  217. .like-disabled-input {
  218. background-color: #f8f8f8;
  219. padding: 6px;
  220. margin-bottom: 7px;
  221. border-radius: 3px;
  222. min-height: 30px;
  223. }
  224. /* jquery ui */
  225. .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  226. display: inline;
  227. }
  228. .hidden-xs-inline, .hidden-xs-inline-block {
  229. display: none;
  230. }
  231. .ui-autocomplete {
  232. max-height: 200px;
  233. overflow-y: auto;
  234. overflow-x: hidden;
  235. }
  236. @media (min-width: 768px) {
  237. .hidden-xs-inline {
  238. display: inline;
  239. }
  240. .hidden-xs-inline-block {
  241. display: inline-block;
  242. }
  243. }
  244. .modal-backdrop {
  245. opacity: 0.5;
  246. }
  247. /* buttons */
  248. .grid-overflow-no-ellipsis {
  249. word-wrap: break-word;
  250. overflow: hidden;
  251. padding-right: 0px;
  252. }
  253. .grid-overflow-ellipsis {
  254. overflow: hidden;
  255. text-overflow: ellipsis;
  256. white-space: nowrap;
  257. padding-right: 0px;
  258. }
  259. .toolbar-banner {
  260. text-align: center;
  261. background-color: #fcf8e3;
  262. padding: 7px;
  263. z-index: 1;
  264. }
  265. .form-group {
  266. margin-bottom: 7px;
  267. }
  268. /* hack */
  269. .ui-datepicker { z-index: 9999999 !important; }
  270. .ui-autocomplete {
  271. z-index: 9999999 !important;
  272. }
  273. .bold,
  274. .strong {
  275. font-weight: bold;
  276. }
  277. .tree-node-toolbar {
  278. padding: 2px 5px;
  279. margin-left: 15px;
  280. border-radius: 3px;
  281. background-color: #ddd;
  282. }
  283. .print-preview {
  284. padding: 50px 20px;
  285. margin: 0px -15px;
  286. box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  287. }