You are here

bueditor.edit.css in BUEditor 7

Same filename and directory in other branches
  1. 6.2 admin/bueditor.edit.css
.button-table {
  width: 100%;
  font-size: 0.9em;
}
.button-table * {
  font-size: 1em;
}

.button-table .th-title {
  width: 12em;
}
.button-table .input-title {
  width: 8.8em;
}
.button-table a.tabledrag-handle {
  padding-right: 0.8em;
}

.button-table .th-content {
}

.button-table .th-icon {
  width: 5em;
}
.button-table .input-icon {
  width: 3em;
}

.button-table .th-key {
  width: 3em;
}
.button-table .input-key {
  width: 2em;
}

.button-table th.select-all {
  width: 2em;
}

.button-table td {
  vertical-align: top;
}
.button-table tr.new-button {
  background-color: #feebed;
}

.button-table div.form-item {
  display: inline;
  margin: 0em;
  padding: 0em;
  white-space: normal;/*override system.css*/
}
.button-table div.resizable-textarea {
  width: 98%;
}
.js .button-table div.resizable-textarea textarea {
  height: 1.6em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.button-table div.grippie {
  height: 0.4em;
  background-position: 50% 0%;
}

.button-table img.icon-selector-opener {
  margin: 0.2em 0.5em 0 0 !important;
  cursor: pointer;
  border-bottom: 0.1em solid #000;
  vertical-align: top;
}
.button-table img.icon-selector-opener:hover {
  border-color: #f00;
}

.selector-table {
  position: absolute;
  margin: 0em;
  width: auto;
  z-index: 1;
}
.selector-table td {
  border: 0.1em solid #e1e1e1;
  background-color: #f1f1f1;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  padding: 0.4em 0.6em;
}
.selector-table td:hover {
  background-color: #fff;
}
.selector-table img {
  vertical-align: middle;
  max-width: 40px;
  max-height: 40px;
}
.selector-table input {
  width: 1em;
  cursor: pointer;
}
#key-selector td {
  padding: 0.3em 0.7em;
  color: #000;
}
#key-selector td.used {
  color: #f99;
  cursor: default;
}

#sel-action-wrapper {
  float: right;
  margin: 0.5em;
}
#sel-action-wrapper .form-item {
  float: left;
  margin: 0 0.2em;
  padding: 0 0.2em;
}
#sel-action-wrapper select, #sel-action-wrapper input {
  margin: 0em;
}

#edit-submit {
  margin: 0.5em;
}

File

admin/bueditor.edit.css
View source
  1. .button-table {
  2. width: 100%;
  3. font-size: 0.9em;
  4. }
  5. .button-table * {
  6. font-size: 1em;
  7. }
  8. .button-table .th-title {
  9. width: 12em;
  10. }
  11. .button-table .input-title {
  12. width: 8.8em;
  13. }
  14. .button-table a.tabledrag-handle {
  15. padding-right: 0.8em;
  16. }
  17. .button-table .th-content {
  18. }
  19. .button-table .th-icon {
  20. width: 5em;
  21. }
  22. .button-table .input-icon {
  23. width: 3em;
  24. }
  25. .button-table .th-key {
  26. width: 3em;
  27. }
  28. .button-table .input-key {
  29. width: 2em;
  30. }
  31. .button-table th.select-all {
  32. width: 2em;
  33. }
  34. .button-table td {
  35. vertical-align: top;
  36. }
  37. .button-table tr.new-button {
  38. background-color: #feebed;
  39. }
  40. .button-table div.form-item {
  41. display: inline;
  42. margin: 0em;
  43. padding: 0em;
  44. white-space: normal;/*override system.css*/
  45. }
  46. .button-table div.resizable-textarea {
  47. width: 98%;
  48. }
  49. .js .button-table div.resizable-textarea textarea {
  50. height: 1.6em;
  51. -webkit-box-sizing: content-box;
  52. -moz-box-sizing: content-box;
  53. box-sizing: content-box;
  54. }
  55. .button-table div.grippie {
  56. height: 0.4em;
  57. background-position: 50% 0%;
  58. }
  59. .button-table img.icon-selector-opener {
  60. margin: 0.2em 0.5em 0 0 !important;
  61. cursor: pointer;
  62. border-bottom: 0.1em solid #000;
  63. vertical-align: top;
  64. }
  65. .button-table img.icon-selector-opener:hover {
  66. border-color: #f00;
  67. }
  68. .selector-table {
  69. position: absolute;
  70. margin: 0em;
  71. width: auto;
  72. z-index: 1;
  73. }
  74. .selector-table td {
  75. border: 0.1em solid #e1e1e1;
  76. background-color: #f1f1f1;
  77. cursor: pointer;
  78. text-align: center;
  79. vertical-align: middle;
  80. padding: 0.4em 0.6em;
  81. }
  82. .selector-table td:hover {
  83. background-color: #fff;
  84. }
  85. .selector-table img {
  86. vertical-align: middle;
  87. max-width: 40px;
  88. max-height: 40px;
  89. }
  90. .selector-table input {
  91. width: 1em;
  92. cursor: pointer;
  93. }
  94. #key-selector td {
  95. padding: 0.3em 0.7em;
  96. color: #000;
  97. }
  98. #key-selector td.used {
  99. color: #f99;
  100. cursor: default;
  101. }
  102. #sel-action-wrapper {
  103. float: right;
  104. margin: 0.5em;
  105. }
  106. #sel-action-wrapper .form-item {
  107. float: left;
  108. margin: 0 0.2em;
  109. padding: 0 0.2em;
  110. }
  111. #sel-action-wrapper select, #sel-action-wrapper input {
  112. margin: 0em;
  113. }
  114. #edit-submit {
  115. margin: 0.5em;
  116. }