main.css 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. body{
  2. font-family: 'Muli';
  3. background:url('footer-pattern.png') repeat-x 0 bottom #3e4750!important;
  4. color:#cecece;
  5. }
  6. h1,h2,h3,h4,h5{
  7. font-family: 'Muli';
  8. font-weight: 200;
  9. }
  10. .input-group-text{
  11. background: #2e363e;
  12. color:#fefefe;
  13. border-color:#2e363e;
  14. }
  15. #mainMenu .navbar-brand {
  16. padding-left: 99px;
  17. }
  18. .footer{
  19. display: none;
  20. }
  21. ul, li{
  22. margin:0;
  23. padding:0;
  24. list-style-type: none;
  25. }
  26. input:-webkit-autofill,
  27. input:-webkit-autofill:hover,
  28. input:-webkit-autofill:focus,
  29. textarea:-webkit-autofill,
  30. textarea:-webkit-autofill:hover,
  31. textarea:-webkit-autofill:focus,
  32. select:-webkit-autofill,
  33. select:-webkit-autofill:hover,
  34. select:-webkit-autofill:focus {
  35. background-color: #343940!important;
  36. border-color: #343940!important;
  37. color:#fefefe!important;
  38. }
  39. div.form-control,
  40. input.form-control,
  41. input.form-control:active,
  42. input.form-control:focus,
  43. select.form-control,
  44. select.form-control:active,
  45. select.form-control:focus,
  46. textarea.form-control,
  47. textarea.form-control:active,
  48. textarea.form-control:focus
  49. {
  50. background-color: #343940;
  51. border-color: #343940;
  52. color:#fefefe;
  53. }
  54. .alert-danger {
  55. color: #ffd7da;
  56. background-color: #841721;
  57. border: 0;
  58. }
  59. .alert-success {
  60. color: #ceead5;
  61. background-color: #28a745;
  62. border-color: #28a745;
  63. }
  64. code {
  65. font-size: 80%;
  66. color: #ffffff;
  67. background-color: #5a6673;
  68. padding: 3px;
  69. }
  70. pre {
  71. display: block;
  72. font-size: 87.5%;
  73. color: #cfd7de;
  74. }
  75. .close {
  76. float: right;
  77. font-size: 1.5rem;
  78. font-weight: 700;
  79. line-height: 1;
  80. color: #fff;
  81. text-shadow: 0 1px 0 #fff;
  82. opacity: .5;
  83. }
  84. .list-group-item {
  85. background-color: #25292d;
  86. }
  87. a {
  88. color: #728ead;
  89. }
  90. a:hover {
  91. color: #8fbcec;
  92. }
  93. label.check-component{
  94. border:0;
  95. }
  96. label.check-component .box{
  97. background-color: #25292d;
  98. }
  99. label.check-component input:checked + .box {
  100. background-color: #353535;
  101. }
  102. .table-striped tbody tr:nth-of-type(odd) {
  103. background-color: #343940;
  104. }
  105. .table {
  106. color: #ebebeb;
  107. border-left: 1px solid #343940;
  108. border-bottom: 1px solid #343940;
  109. border-right: 1px solid #343940;
  110. }
  111. .table td, .table th {
  112. padding: .75rem;
  113. vertical-align: top;
  114. border-top: 1px solid #343940;
  115. }
  116. .table > thead th {
  117. border-bottom: 1px solid #343940;
  118. }
  119. .table tr > th:first-of-type, .table tr > td:first-of-type {
  120. border-right: 1px solid #343940;
  121. }
  122. .table > thead {
  123. border-bottom: 1px solid #343940;
  124. }
  125. .table-bordered td, .table-bordered th {
  126. border: 1px solid #343940;
  127. }
  128. .table-hover tbody tr:hover {
  129. color: #ffffff;
  130. background-color: rgba(0,0,0,.075);
  131. }
  132. .trumbowyg-box svg {
  133. fill: #e8e8e8;
  134. }
  135. .trumbowyg-button-pane {
  136. background: #343940;
  137. }
  138. .trumbowyg-box, .trumbowyg-editor {
  139. border: 1px solid #343940;
  140. }
  141. .trumbowyg-button-pane .trumbowyg-button-group+.trumbowyg-button-group::before {
  142. background: #212223;
  143. }
  144. .card {
  145. background-color: #343a40;
  146. }
  147. .filter-box .btn-info{
  148. color: #fff;
  149. background-color: #272b2f;
  150. border-color: #343a40
  151. }
  152. .btn-success {
  153. color: #fff;
  154. background-color: #ff314f;
  155. border-color: #b7172e;
  156. }
  157. .page-item.active .page-link {
  158. z-index: 1;
  159. color: #bfbfbf;
  160. background-color: #272b2f;
  161. border-color: #343a40;
  162. }
  163. .btn-success:hover,.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle {
  164. color: #fff;
  165. background-color: #d8132f;
  166. border-color: #ff314f;
  167. }
  168. .dropdown-item.login-item {
  169. color: #e8f0fe;
  170. background-color: #1d2124;
  171. }
  172. .dropdown-menu {
  173. background-color: #1d2124;
  174. }
  175. .dropdown-item {
  176. color: #a4abb3;
  177. }
  178. .dropdown-item:focus, .dropdown-item:hover {
  179. color: #9098a5;
  180. text-decoration: none;
  181. background-color: #30373c;
  182. }
  183. .dropdown-menu .dropdown-item:focus,.dropdown-menu .dropdown-item:hover{
  184. background-color: transparent;
  185. color: #e8f0fe;
  186. }
  187. .debugFrame{
  188. box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  189. border-right: 2px solid #ff314f!important;
  190. background: rgb(52, 58, 64)!important;
  191. }
  192. div[data-type="dropzone"] > ul > li {
  193. position: relative;
  194. padding: 3px;
  195. border-bottom: 1px solid #2f2f2f;
  196. background: #343a40;
  197. }
  198. .list-group-item-action{
  199. color: #fff;
  200. }
  201. .list-group-item-action.text-primary,.list-group-item-action.text-primary:hover,.list-group-item-action.text-primary:focus{
  202. color: #fff!important;
  203. }
  204. .list-group-item-action:focus, .list-group-item-action:hover {
  205. z-index: 1;
  206. color: #fff;
  207. text-decoration: none;
  208. background-color: #000;
  209. }
  210. .list-group-item.active {
  211. z-index: 2;
  212. color: #fff;
  213. background-color: #0a0a0a;
  214. border-color: #000000;
  215. }
  216. .modal-content {
  217. background-color: #1f2428;
  218. }
  219. .modal-footer {
  220. border-top: 0;
  221. }
  222. .modal-header {
  223. border-bottom: 0;
  224. }
  225. /* navigation */
  226. .navigation-tree {
  227. color: #f8f8f8!important;
  228. background-color: #333333!important;
  229. }
  230. .navigation-tree .navigation-item {
  231. background: #414141!important;
  232. }
  233. .navigation-item-label {
  234. color: #ffffff!important;
  235. }
  236. .navigation-item-icon {
  237. color: #a5a5a5!important;
  238. }
  239. .navigation-tree .btn-light {
  240. color: #ffffff!important;
  241. background-color: #000!important;
  242. border-color: #000!important;
  243. }
  244. /* wysiwyg*/
  245. .trumbowyg-button-pane{
  246. border-bottom: 0px;
  247. }
  248. /* document */
  249. .hackpoint .document-container .tree-panel {
  250. width: 15%;
  251. order: 1;
  252. padding: 15px;
  253. color: #d2d2d2;
  254. background-color: #343940;
  255. /* background-color: #ddedff; */
  256. font-size: 15px;
  257. border-right: 1px solid #30353c;
  258. height: calc(100vh - 100px);
  259. overflow-y: auto;
  260. resize: horizontal;
  261. }
  262. .hackpoint .file-module > table tbody tr {
  263. border-bottom: 1px solid #333a42;
  264. color: #dedede;
  265. }
  266. .hackpoint .file-module > table thead tr {
  267. border-bottom: 1px solid #333a42;
  268. }
  269. .hackpoint .file-module {
  270. border-top: 1px solid #333a42;
  271. }
  272. .hackpoint .document-container .file-elements-list tbody tr:hover {
  273. background-color: #343940;
  274. }
  275. .hackpoint .document-container .file-elements-list .element-focused {
  276. font-weight: bold;
  277. background-color: #343940;
  278. }
  279. .hackpoint .detail-panel .detail-thumbnail {
  280. background-color: #343940;
  281. }
  282. .hackpoint .detail-panel .detail-thumbnail .thumbnail-preloader {
  283. background-color: #343940;
  284. color: #cecece;
  285. }
  286. .hackpoint .document-container .detail-panel {
  287. border-right: 1px solid #333a42;
  288. }
  289. .hackpoint .file-panel .breadcrumb-module {
  290. padding: 0 15px 0 15px;
  291. margin: 5px 0;
  292. color: #c5c5c5;
  293. }
  294. .hackpoint .document-container .file-panel {
  295. border-right: 1px solid #333a42;
  296. }
  297. .filter-box .advanced-search{
  298. border:0px;
  299. background: #343940;
  300. }
  301. .form-control:disabled, .form-control[readonly] {
  302. background-color: #343940;
  303. opacity: 1;
  304. }
  305. .text-primary {
  306. color: #527fbf!important;
  307. }
  308. .text-danger {
  309. color: #ff314f!important;
  310. }
  311. .document-container .tree-panel{
  312. color: #687d92!important;
  313. background-color: #252a31!important;
  314. border-right: 1px solid #292d33!important;
  315. }
  316. .detail-panel .detail-thumbnail .thumbnail-preloader,.detail-panel .detail-thumbnail{
  317. background-color: #252a31!important;
  318. }
  319. .document-container .detail-panel{
  320. border-right: 1px solid #292d33!important;
  321. }
  322. .file-module{
  323. border-top: 1px solid #292d33!important;
  324. }
  325. .document-container .file-panel{
  326. border-right: 1px solid #292d33!important;
  327. }
  328. .file-module > table tbody tr {
  329. border-bottom: 1px solid #292d33!important;
  330. color: #7c95af!important;
  331. }
  332. .document-container .file-elements-list tbody tr:hover {
  333. background-color: #252a31!important;
  334. }
  335. .file-module > table thead th:hover {
  336. background-color: #252a31!important;
  337. }
  338. .file-module > table thead tr {
  339. border-bottom: 1px solid #252a31!important;
  340. }
  341. .detail-panel h1 {
  342. color: #6989a9!important;
  343. }
  344. .btn-light {
  345. color: #adbfd2;
  346. background-color: #586573;
  347. border-color: #586573;
  348. }
  349. .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle,.btn-light:hover {
  350. color: #cbe0f7;
  351. background-color: #748698;
  352. border-color: #748698;
  353. }
  354. .advanced-search-box ul.group {
  355. padding: 3px;
  356. background-color: #3e4750;
  357. }
  358. .advanced-search-box.advanced .simple-search .filter-keyword {
  359. background: #2b2f35;
  360. color: #83b3ff;
  361. border: 0;
  362. }
  363. .advanced-search-box.advanced .simple-search .data-search-label {
  364. border-radius: 3px 0 0 0;
  365. background: #2e363e;
  366. border: 0;
  367. }
  368. .advanced-search-box li.condition.hover {
  369. background-color: rgb(41, 47, 53);
  370. }
  371. .advanced-search-box.advanced .advanced-button-search i {
  372. text-shadow: 0 0 5px #f0f7ff;
  373. color: #f8fcff;
  374. }
  375. .advanced-search-box li.condition {
  376. background: #343c44;
  377. transition: background 0.2s ease-in-out;
  378. }
  379. .advanced-search-box li.condition {
  380. background: #343c44;
  381. transition: background 0.2s ease-in-out;
  382. }
  383. .advanced-search-box .filter-join {
  384. border: 1px solid #2b2f35;
  385. background: #2b2f35;
  386. color: #9bf3af;
  387. }
  388. .advanced-search-box ul.group ul.group ,
  389. .advanced-search-box ul.group ul.group ul.group,
  390. .advanced-search-box ul.group ul.group ul.group ul.group,
  391. .advanced-search-box ul.group ul.group ul.group ul.group ul.group{
  392. background-color: rgb(49, 53, 60);
  393. }
  394. @font-face {
  395. font-family: 'Muli';
  396. src: url('fonts/Muli-ExtraLight.woff2') format('woff2'),
  397. url('fonts/Muli-ExtraLight.woff') format('woff');
  398. font-weight: 200;
  399. font-style: normal;
  400. }
  401. @font-face {
  402. font-family: 'Muli';
  403. src: url('fonts/Muli-Bold.woff2') format('woff2'),
  404. url('fonts/Muli-Bold.woff') format('woff');
  405. font-weight: bold;
  406. font-style: normal;
  407. }
  408. @font-face {
  409. font-family: 'Muli';
  410. src: url('fonts/Muli-Medium.woff2') format('woff2'),
  411. url('fonts/Muli-Medium.woff') format('woff');
  412. font-weight: 500;
  413. font-style: normal;
  414. }