editor.css 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. body { margin: 0; }
  2. #banner { background: transparent url(images/banner.png); width: 33px; height: 30px; position: absolute; left: 3px; top: 3px; }
  3. .wicked-menu { font-family: 'Noto Sans', sans-serif; margin: 2px 0 2px 40px; }
  4. .wicked-menu a.link { margin-left: 10px; }
  5. .ui-widget { font-size:13px; }
  6. /* color dialog */
  7. #dialog-colors { }
  8. #dialog-colors label { width: 85px; display: inline-block; font-weight: bold; padding: 5px; }
  9. #dialog-colors input[type=text] { width: 70px; border: 1px solid #444; float:right; }
  10. #dialog-colors fieldset { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; border: 1px solid #ccc; width: 222px; padding-right: 15px; }
  11. /* import dialog */
  12. #dialog-upload label { font-weight: bold; display: inline-block; width: 80px; line-height: 1.5em; }
  13. .no-title .ui-dialog-titlebar { display:none; }
  14. .no-title .ui-dialog-content { padding: 0; }
  15. #file-lhs-progress,
  16. #file-rhs-progress { height: 22px; width: 240px; vertical-align: middle; line-height: 1.5em; display: none; }
  17. .progress-label { float: left; width: 100%; color: #fff; font-weight: bold; font-size: .8em; padding-left: 10px; }
  18. /* icons */
  19. .icon-undo { background-image: url(images/undo.png); }
  20. .icon-redo { background-image: url(images/redo.png); }
  21. .icon-save { background-image: url(images/download.png); }
  22. .icon-check { background-image: url(images/check.png); }
  23. .icon-import { background-image: url(images/upload.png); }
  24. .icon-swap { background-image: url(images/swap.png); }
  25. .icon-arrow-right { background-image: url(images/arrow-right.png); }
  26. .icon-arrow-right-v { background-image: url(images/arrow-right-v.png); }
  27. .icon-arrow-right-vv { background-image: url(images/arrow-right-vv.png); }
  28. .icon-arrow-left-v { background-image: url(images/arrow-left-v.png); }
  29. .icon-arrow-left-vv { background-image: url(images/arrow-left-vv.png); }
  30. .icon-arrow-up { background-image: url(images/arrow-up-v.png); }
  31. .icon-arrow-down { background-image: url(images/arrow-down-v.png); }
  32. .icon-x-mark { background-image: url(images/x-mark.png); }
  33. .icon-share { background-image: url(images/share.png); }
  34. .tipsy-inner {
  35. padding: 8px;
  36. text-align: center;
  37. max-width: 250px;
  38. font-family: arial, sans-serif;
  39. font-weight: bold;
  40. font-size: 1.2em;
  41. }
  42. .find {
  43. position: absolute;
  44. top: 0px;
  45. right: 0px;
  46. z-index: 4;
  47. padding: 10px 20px 10px 10px;
  48. background-color: #f5f5f5;
  49. float: right;
  50. border-left: 1px solid #ccc;
  51. border-bottom: 1px solid #ccc;
  52. border-bottom-left-radius: 10px;
  53. max-height: 26px;
  54. -webkit-box-shadow: rgba(0, 0, 0, .2) 0 2px 4px 0;
  55. -moz-box-shadow: rgba(0, 0, 0, .2) 0 2px 4px 0;
  56. box-shadow: rgba(0, 0, 0, .2) 0 2px 4px 0;
  57. display: none;
  58. }
  59. .find > button {
  60. padding: 3px 0px;
  61. border: 1px solid #ccc;
  62. border-radius: 3px;
  63. height: 25px;
  64. width: 26px;
  65. vertical-align: top;
  66. cursor: pointer;
  67. }
  68. .find > button:hover {
  69. background-color: #f5f5f5;
  70. border: 1px solid #aaa;
  71. }
  72. .find > button > span.icon {
  73. width: 16px;
  74. height: 16px;
  75. display: inline-block;
  76. text-align: center;
  77. background-position: center center;
  78. }