default.css 3.9 KB

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