style-editor.css 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. /**
  2. Colors:
  3. - Header: #333333
  4. - Subheader: #e8edf1
  5. - Subheader border: #a4acb9
  6. - Highlight buttons/text: #36a7c4
  7. - Text color: #1a1a1a
  8. - Filter color: #373e48
  9. - Dark highlight: #606b7d
  10. */
  11. .container-fluid {
  12. max-width: 1400px;
  13. min-width: 1000px;
  14. margin: 0 auto;
  15. }
  16. .subtle-select .glyphicon {
  17. visibility: hidden;
  18. padding-left: 5px;
  19. }
  20. a.subtle-select:hover .glyphicon {
  21. visibility: visible;
  22. }
  23. .full {
  24. padding: 0 15px;
  25. width: 100%;
  26. }
  27. .inline {
  28. display: inline;
  29. }
  30. .greyish {
  31. color: #afafaf;
  32. }
  33. .roweditor-canvas {
  34. margin-top: 50px;
  35. }
  36. .no-pad {
  37. margin: 0;
  38. max-width: 1300px;
  39. min-width: 1100px;
  40. }
  41. .content.no-pad {
  42. max-width: 100%;
  43. min-width: 100%;
  44. }
  45. .inset .col-sm-3 {
  46. margin-left: -15px;
  47. }
  48. .no-pad > div{
  49. padding: 0;
  50. }
  51. .dropdown-toggle .icon-caret-down {
  52. padding-left: 10px;
  53. font-size: 85%;
  54. }
  55. h1 {
  56. margin: 0 0 0 15px;
  57. padding: 0;
  58. font-size: 22px;
  59. line-height: 40px;
  60. border: none;
  61. color: #ffffff;
  62. font-family: 'Lato', sans-serif;
  63. }
  64. .truncate, .truncate > span {
  65. white-space: nowrap;
  66. width: 100%;
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. }
  70. .subheader .details .counter {
  71. top: -1px;
  72. line-height: 1;
  73. display: inline-block;
  74. padding: 2px 6px;
  75. min-width: 20px;
  76. background-color: #e8edf1;
  77. color: #333333;
  78. }
  79. .subheader .subtle-select {
  80. margin: -6px 0 0 -8px;
  81. }
  82. .btn .icon-and-label {
  83. padding-right: 5px;
  84. }
  85. .dropdown-menu .title {
  86. margin: 5px 10px 0px 10px;
  87. font-size: 17px;
  88. min-width: 250px;
  89. }
  90. .dropdown-menu ul {
  91. list-style: none;
  92. list-style-position: inside;
  93. padding: 5px 10px;
  94. }
  95. .input-group-addon {
  96. background-color: transparent;
  97. }
  98. /* List Filter */
  99. .filter-wrapper {
  100. min-height: 400px;
  101. margin-top: 10px;
  102. margin-left: -15px;
  103. }
  104. ul.filter-list {
  105. list-style: none;
  106. list-style-position: inside;
  107. padding-left: 0px;
  108. padding-top: 10px;
  109. }
  110. ul.filter-list li a {
  111. display: block;
  112. color: #373e48;
  113. font-size: 17px;
  114. margin: 10px 5px 10px 0px;
  115. padding-left: 10px;
  116. }
  117. ul.filter-list li.current a {
  118. color: #36a7c4;
  119. padding-left: 5px;
  120. border-left: 4px solid #36a7c4;
  121. }
  122. ul.filter-list li a:hover, ul.filter-list li a:focus {
  123. text-decoration: none;
  124. background-color: #e8edf1;
  125. }
  126. ul.filter-list li.current a:hover, ul.filter-list li.current a:focus {
  127. background-color: transparent;
  128. color: #36a7c4;
  129. cursor: default;
  130. text-decoration: none;
  131. }
  132. /* Result items */
  133. .item-wrapper {
  134. padding-left: 0;
  135. margin-top: 5px;
  136. }
  137. .item-wrapper .message {
  138. text-align: left;
  139. margin-left: 5px;
  140. line-height: 40px;
  141. color: #606b7d;
  142. }
  143. .item-wrapper .message span {
  144. font-size: 14px;
  145. }
  146. .item-wrapper .item {
  147. width: 25%;
  148. padding: 0;
  149. margin: 0;
  150. float: left;
  151. }
  152. .item-wrapper .item .btn-default.disabled,
  153. .item-wrapper .item .btn-default[disabled],
  154. .item-wrapper .item .btn-default[disabled]:active,
  155. .item-wrapper .item .btn-default[disabled]:hover {
  156. border-color: #ffffff;
  157. cursor: default;
  158. }
  159. .item-wrapper .item .item-box {
  160. margin: 5px;
  161. border: 1px solid #e8edf1;
  162. height: 250px;
  163. overflow: hidden;
  164. cursor: pointer;
  165. background-repeat: no-repeat;
  166. background-position: center 20px;
  167. background-size: auto;
  168. position: relative;
  169. }
  170. .item-box .details {
  171. position: relative;
  172. background-color: #e8edf1;
  173. height: 160px;
  174. margin-top: 120px;
  175. padding: 5px;
  176. color: #373e48;
  177. font-size: 13px;
  178. transition: margin-top .5s ease;
  179. -moz-transition: margin-top .5s ease;
  180. -webkit-transition: margin-top .5s ease;
  181. -o-transition: margin-top .5s ease;
  182. }
  183. .item-box:hover .details, .item-box.active .details {
  184. margin-top: 50px;
  185. }
  186. .item-box .actions {
  187. padding: 5px;
  188. height: 45px;
  189. }
  190. .item-box .actions .btn-group {
  191. visibility: hidden;
  192. }
  193. .item-box:hover .actions .btn-group, .item-box.active .actions .btn-group {
  194. visibility: inherit;
  195. }
  196. .item-box .details h3 {
  197. font-size: 14px;
  198. margin: 0;
  199. padding: 2px;
  200. color: #373e48;
  201. }
  202. .item-box .details span {
  203. display: block;
  204. margin-top: 5px;
  205. }
  206. .item-box .details span i {
  207. padding-right: 10px;
  208. padding-left: 5px;
  209. }
  210. .item-box .details .basic-details {
  211. min-height: 60px;
  212. }
  213. .item-box .details p {
  214. width: 100%;
  215. height: 70px;
  216. font-size: 12px;
  217. overflow: hidden;
  218. }
  219. .create-inline {
  220. padding: 100px 20px 80px 20px;
  221. border: 1px solid #e8edf1;
  222. }
  223. .create-inline span {
  224. display: block;
  225. font-size: 18px;
  226. color: #1a1a1a;
  227. text-align: center;
  228. margin-bottom: 20px;
  229. }
  230. .create-inline .glyphicon {
  231. margin-right: 10px;
  232. }
  233. .show-more {
  234. clear: both;
  235. height: 50px;
  236. text-align: center;
  237. padding-top: 5px;
  238. margin: 5px;
  239. }
  240. .show-more a {
  241. display: block;
  242. padding: 5px;
  243. font-size: 15px;
  244. text-decoration: none;
  245. cursor: pointer;
  246. color: #666666;
  247. }
  248. .show-more a:hover {
  249. color: #1a1a1a;
  250. background: #e8edf1;
  251. }
  252. .content-canvas-wrapper {
  253. -moz-box-shadow: inset 0 3px 3px -4px #ababab;
  254. -webkit-box-shadow: inset 0 3px 3px -4px #ababab;
  255. box-shadow: inset 0 3px 3px -4px #ababab;
  256. margin: 15px 7px 0 7px;
  257. z-index: 0;
  258. }
  259. .content-canvas {
  260. background-color: #f9f9f9;
  261. margin: 0 3px 0 3px;
  262. -moz-box-shadow: inset 0 3px 3px -4px #ababab;
  263. -webkit-box-shadow: inset 0 3px 3px -4px #ababab;
  264. box-shadow: inset 0 3px 3px -4px #ababab;
  265. padding: 20px;
  266. }
  267. .content-canvas h3 {
  268. margin-bottom: 5px;
  269. }
  270. .content-canvas .no-results{
  271. color: #999999;
  272. font-size: 16px;
  273. margin: 10px 0px;
  274. }
  275. .content-canvas .item-wrapper {
  276. margin: 5px 10px;
  277. }
  278. /* History */
  279. table.history {
  280. margin: 0;
  281. padding: 0;
  282. }
  283. .subheader table.history {
  284. min-width: 250px;
  285. }
  286. table.history td {
  287. vertical-align: middle;
  288. }
  289. table.history tr td:last-child {
  290. width: 90%;
  291. }
  292. table.history tr:hover {
  293. background-color: #f3f6f8;
  294. cursor: pointer;
  295. }
  296. table.history tr.current:hover {
  297. background-color: #e8edf1;
  298. cursor: inherit;
  299. }
  300. table.history a:hover {
  301. text-decoration: none;
  302. }
  303. table.history .version {
  304. font-size: 30px;
  305. display: inline-block;
  306. color: #36a7c4;
  307. padding: 5px 10px;
  308. vertical-align:middle;
  309. color: #36a7c4;
  310. }
  311. table.history .detail {
  312. padding: 5px 5px;
  313. font-size: 15px;
  314. color: #1a1a1a;
  315. display: inline-block;
  316. }
  317. table.history tr.current {
  318. font-weight: bold;
  319. background-color: #e8edf1;
  320. }
  321. table.history tr.current td {
  322. background-color: #e8edf1;
  323. }
  324. .comments {
  325. clear: both;
  326. width: 350px;
  327. border-top: 1px solid #eeeeee;
  328. margin-top: 5px;
  329. max-height: 350px;
  330. overflow: auto;
  331. }
  332. .comment {
  333. margin: 10px 0px 20px 0px;
  334. font-size: 12px;
  335. }
  336. .comment .date {
  337. color: #999999;
  338. font-size: 12px;
  339. }
  340. .comment .author {
  341. color: #36a7c4;
  342. font-size: 18px;
  343. }
  344. .comment p {
  345. word-wrap: break-word;
  346. }
  347. .modal.modal-wide .modal-dialog {
  348. width: 1000px;
  349. }
  350. .modal-dialog.modal-wide {
  351. width: 1000px;
  352. }
  353. .modal-body p {
  354. font-size: 15px;
  355. }
  356. .modal-body p.danger {
  357. color: #d35f5f;
  358. margin-top: 10px;
  359. }
  360. .form-group .inline-help {
  361. font-size: 11px;
  362. color: #666666;
  363. margin-top: 5px;
  364. }
  365. .form-group .message {
  366. color: #1a1a1a;
  367. font-size: 14px;
  368. }
  369. .people-select > .selection {
  370. width: 100%;
  371. text-align: left;
  372. }
  373. .popup-wrapper .people-select {
  374. max-height: 160px;
  375. }
  376. .people-select .nothing-to-see {
  377. padding: 5px 0;
  378. color: #999999;
  379. }
  380. .inline-people-select {
  381. max-height: 120px;
  382. overflow: auto;
  383. }
  384. /** Center tabbed pane */
  385. .center-pane {
  386. overflow: auto;
  387. padding-bottom: 20px;
  388. }
  389. .center-pane .content {
  390. overflow: hidden;
  391. }
  392. .center-pane .tab-actions {
  393. padding: 8px;
  394. }
  395. .center-pane .tabs-wrapper > .pull-right {
  396. margin-right: 5px;
  397. }
  398. .center-pane .content {
  399. padding: 10px;
  400. }
  401. .center-pane.content {
  402. padding: 0;
  403. }
  404. .center-pane .content .tabs, .center-pane.content .tabs {
  405. padding-left: 15px;
  406. }
  407. .center-pane .content .tabs > li a, .center-pane.content .tabs > li a {
  408. padding: 8px 30px;
  409. }
  410. .center-pane .header h1 {
  411. font-size: 30px;
  412. margin: 0;
  413. padding:0;
  414. }
  415. .center-pane .header h2 {
  416. font-size: 24px;
  417. margin: 0 0 5px 0;
  418. padding:0;
  419. }
  420. .center-pane .header {
  421. padding: 5px 10px 25px 10px;
  422. }
  423. .center-pane .header.compact {
  424. padding-bottom: 5px;
  425. }
  426. .center-pane .well {
  427. -moz-border-radius: 0px;
  428. -webkit-border-radius: px;
  429. border-radius: 0px;
  430. background-color: #f9f9f9;
  431. padding: 12px 10px;
  432. margin: 15px 0 0 0;
  433. border: 1px solid #eeeeee;
  434. }
  435. /** General button styling */
  436. .btn.btn-clean {
  437. border: none;
  438. background-color: transparent;
  439. font-size: 24px;
  440. padding: 2px 6px;
  441. color: #444444;
  442. -webkit-box-shadow: none;
  443. -moz-box-shadow: none;
  444. box-shadow: none;
  445. }
  446. .btn-clean:hover .icon-remove {
  447. color: #a02828;
  448. }
  449. .btn-clean:focus, .btn-clean:hover {
  450. color: #5f8dd3;
  451. -webkit-box-shadow: none;
  452. -moz-box-shadow: none;
  453. box-shadow: none;
  454. }
  455. .btn-clean:active {
  456. color: #2c5aa0;
  457. -webkit-box-shadow: none;
  458. -moz-box-shadow: none;
  459. box-shadow: none;
  460. }
  461. /* Show list in popup */
  462. ul.list {
  463. list-style: none inside;
  464. padding: 0px;
  465. margin-bottom: 3px;
  466. }
  467. ul.list>li {
  468. line-height: 30px;
  469. margin: 0;
  470. padding: 4px;
  471. cursor: pointer;
  472. }
  473. .popup-wrapper ul.list>li {
  474. border-top: 1px solid #eeeeee;
  475. }
  476. .popup-wrapper ul.list>li:last-child {
  477. border-bottom: 1px solid #eeeeee;
  478. }
  479. ul.list>li:hover, ul.list>li.active {
  480. background-color: #f2f2f2;
  481. }
  482. ul.list >li .actions {
  483. float:right;
  484. margin: 0px 0px 0px 5px;
  485. visibility: hidden;
  486. }
  487. ul.list>li:hover .actions {
  488. visibility: inherit;
  489. }
  490. /** Animations **/
  491. .fadein.ng-enter,
  492. .fadein.ng-move {
  493. -webkit-transition: 0.5s linear opacity;
  494. transition: 0.5s linear all;
  495. }
  496. .fadein.ng-enter {
  497. opacity:0;
  498. }
  499. .fadein.ng-enter.ng-enter-active {
  500. opacity:1;
  501. }
  502. .fadein.ng-move {
  503. opacity:0.5;
  504. }
  505. .fadein.ng-move.ng-move-active {
  506. opacity:1;
  507. }
  508. .popup-error {
  509. color: red;
  510. padding: 0 5px 8px 0;
  511. }
  512. /** Passwords */
  513. .password-field {
  514. width: 320px;
  515. }
  516. /** LOADING */
  517. .message .loading {
  518. line-height: 40px;
  519. margin-left: 0px;
  520. }