default.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. .cke_emoji {
  2. overflow-y: hidden;
  3. height: 100%;
  4. }
  5. .cke_emoji-suggestion_item {
  6. overflow: hidden;
  7. text-overflow: ellipsis;
  8. white-space: nowrap;
  9. font-family: sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  10. }
  11. .cke_emoji-panel {
  12. width: 310px;
  13. height: 300px;
  14. overflow: hidden;
  15. }
  16. .cke_emoji-inner_panel {
  17. width: 100%;
  18. }
  19. .cke_emoji-panel_block a {
  20. display: inline-block;
  21. width: 100%;
  22. }
  23. .cke_emoji-inner_panel > h2 {
  24. font-size: 2em;
  25. }
  26. /* TOP NAVIGATION */
  27. .cke_emoji-inner_panel > nav {
  28. width: 100%;
  29. height: 24px;
  30. margin-top: 10px;
  31. margin-bottom: 10px;
  32. padding-bottom: 2px;
  33. border-bottom: 1px solid #d1d1d1;
  34. }
  35. .cke_emoji-inner_panel > nav > ul {
  36. margin-left: 10px;
  37. margin-right: 10px;
  38. padding: 0;
  39. list-style-type: none;
  40. height: 24px;
  41. }
  42. .cke_emoji-inner_panel > nav li {
  43. display: inline-block;
  44. width: 24px;
  45. height: auto;
  46. margin: 0 6px;
  47. text-align: center;
  48. cursor: pointer;
  49. }
  50. .cke_browser_ie .cke_emoji-inner_panel > nav li {
  51. height: 22px;
  52. }
  53. .cke_emoji-inner_panel li svg {
  54. opacity: 0.4;
  55. width: 80%;
  56. }
  57. .cke_emoji-inner_panel li span {
  58. opacity: 0.4;
  59. }
  60. .cke_emoji-inner_panel li:hover svg, .cke_emoji-inner_panel li:hover span{
  61. opacity: 1;
  62. }
  63. .cke_emoji-inner_panel .active {
  64. border-bottom: 5px solid rgba(44, 195, 255, 1);
  65. }
  66. .cke_emoji-navigation_item span {
  67. width: 21px;
  68. height: 21px;
  69. display: inline-block;
  70. }
  71. /* SEARCHBOX */
  72. .cke_emoji-search {
  73. position: relative;
  74. height: 25px;
  75. display: block;
  76. border: 1px solid #d1d1d1;
  77. margin-left: 10px;
  78. margin-right: 10px;
  79. }
  80. .cke_emoji-search .cke_emoji-search_loupe {
  81. position: absolute;
  82. top: 6px;
  83. left: 6px;
  84. display: inline-block;
  85. width: 14px;
  86. height: 14px;
  87. opacity: 0.4;
  88. }
  89. .cke_rtl .cke_emoji-search .cke_emoji-search_loupe {
  90. left: auto;
  91. right: 6px;
  92. }
  93. .cke_emoji-search span {
  94. background-repeat: no-repeat;
  95. background-position: -60px -15px;
  96. background-size: 75px 30px;
  97. }
  98. .cke_emoji-search input {
  99. -webkit-appearance: none;
  100. border: none;
  101. width: 100%;
  102. height: 100%;
  103. padding-left: 25px;
  104. padding-right: 10px;
  105. margin-left: 0
  106. }
  107. .cke_rtl .cke_emoji-search input {
  108. padding-left: 10px;
  109. padding-right: 25px;
  110. margin-right: 0;
  111. }
  112. /* EMOJI */
  113. .cke_emoji-outer_emoji_block {
  114. height: 180px;
  115. overflow-x: hidden;
  116. overflow-y: auto;
  117. margin-top: 5px;
  118. margin-left: 10px;
  119. margin-right: 10px;
  120. padding-left: 2px;
  121. padding-right: 2px;
  122. }
  123. .cke_emoji-outer_emoji_block h2 {
  124. font-size: 1.3em;
  125. font-weight: 600;
  126. margin: 5px 0 3px 0;
  127. }
  128. .cke_emoji-outer_emoji_block ul {
  129. margin: 0 0 15px 0;
  130. padding: 0;
  131. list-style-type: none;
  132. }
  133. .cke_emoji-item {
  134. font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  135. list-style-type: none;
  136. display: inline-table;
  137. cursor: pointer;
  138. width: 36px;
  139. height: 36px;
  140. font-size: 1.8em;
  141. text-align: center;
  142. }
  143. .cke_emoji-item:hover {
  144. border-radius: 10%;
  145. background-color: rgba(44, 195, 255, 0.2);
  146. }
  147. .cke_emoji-item > a {
  148. text-decoration: none;
  149. display: table-cell;
  150. vertical-align: middle;
  151. }
  152. .cke_emoji-outer_emoji_block .hidden {
  153. display: none
  154. }
  155. /* STATUS BAR */
  156. .cke_emoji-status_bar {
  157. height: 34px;
  158. padding-left: 10px;
  159. padding-right: 10px;
  160. padding-top: 3px;
  161. margin-top: 5px;
  162. border-top: 1px solid #d1d1d1;
  163. line-height: 1;
  164. }
  165. .cke_emoji-status_bar p {
  166. margin-top: 3px;
  167. }
  168. .cke_emoji-status_bar > div {
  169. display: inline-block;
  170. }
  171. .cke_emoji-status_icon {
  172. font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  173. font-size: 2.2em;
  174. float: left;
  175. margin-right: 10px;
  176. }
  177. .cke_rtl .cke_emoji-status_icon {
  178. float: right;
  179. margin-right: 0px;
  180. margin-left: 10px;
  181. }
  182. .cke_emoji-panel_block p {
  183. margin-bottom: 0;
  184. }
  185. p.cke_emoji-status_description {
  186. font-weight: 600;
  187. }
  188. p.cke_emoji-status_full_name {
  189. font-size: 0.8em;
  190. color: #d1d1d1;
  191. }
  192. .cke_emoji-inner_panel a:focus, .cke_emoji-inner_panel input:focus {
  193. outline: 2px solid #139FF7;
  194. }