2013-11-20 11:38:21 +08:00
|
|
|
body img.emoji {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2014-12-05 14:19:17 +08:00
|
|
|
|
2015-07-14 22:53:54 +08:00
|
|
|
.wmd-emoji-button:before {
|
2014-12-05 14:19:17 +08:00
|
|
|
content: "\f118";
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal {
|
|
|
|
z-index: 10000;
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
2015-11-04 03:22:24 +08:00
|
|
|
width: 445px;
|
2015-11-12 10:19:33 +08:00
|
|
|
min-height: 264px;
|
2015-11-04 03:22:24 +08:00
|
|
|
margin-top: -132px;
|
|
|
|
margin-left: -222px;
|
2015-08-22 02:35:19 +08:00
|
|
|
background-color: dark-light-choose(#dadada, blend-primary-secondary(5%));
|
2014-12-05 14:19:17 +08:00
|
|
|
}
|
|
|
|
|
2015-09-29 02:01:16 +08:00
|
|
|
table.emoji-page td {
|
2015-02-03 06:43:10 +08:00
|
|
|
border: 1px solid transparent;
|
2015-08-22 02:35:19 +08:00
|
|
|
background-color: dark-light-choose(white, $secondary);
|
2015-09-29 02:01:16 +08:00
|
|
|
padding: 0 !important;
|
2014-12-05 14:19:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-page a {
|
|
|
|
padding: 8px;
|
|
|
|
display: block;
|
2015-02-06 08:36:48 +08:00
|
|
|
border-radius: 20px;
|
2014-12-05 14:19:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-page a:hover {
|
2015-08-22 02:35:19 +08:00
|
|
|
background-color: dark-light-choose(rgb(210, 236, 252), rgb(45, 19, 3));
|
2014-12-05 14:19:17 +08:00
|
|
|
}
|
|
|
|
|
2014-12-09 14:22:54 +08:00
|
|
|
.emoji-table-wrapper {
|
2015-02-03 06:43:10 +08:00
|
|
|
min-width: 442px;
|
2014-12-09 14:22:54 +08:00
|
|
|
min-height: 185px;
|
2015-08-22 02:35:19 +08:00
|
|
|
background-color: $secondary;
|
2014-12-05 14:19:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal-wrapper {
|
|
|
|
z-index: 9999;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2015-08-22 02:35:19 +08:00
|
|
|
opacity: dark-light-choose(0.8, 0.5);
|
2014-12-05 14:19:17 +08:00
|
|
|
background-color: black;
|
|
|
|
}
|
2014-12-08 13:45:24 +08:00
|
|
|
|
|
|
|
.emoji-modal .toolbar {
|
2015-08-19 13:02:01 +08:00
|
|
|
margin: 8px 0 5px;
|
2014-12-08 13:45:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal .toolbar li {
|
|
|
|
display: inline;
|
2015-02-03 07:41:49 +08:00
|
|
|
padding-right: 1px;
|
2014-12-08 13:45:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal .toolbar li a {
|
|
|
|
padding: 8px;
|
2015-08-22 02:35:19 +08:00
|
|
|
background-color: dark-light-choose(#dadada, blend-primary-secondary(5%));
|
2014-12-08 13:45:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal .toolbar li a.selected {
|
2015-08-22 02:35:19 +08:00
|
|
|
background-color: $secondary;
|
2014-12-08 13:45:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal .info {
|
|
|
|
height: 30px;
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal .info span {
|
|
|
|
margin-left: 5px;
|
|
|
|
font-weight: bold;
|
2015-08-22 02:35:19 +08:00
|
|
|
color: $primary;
|
2014-12-08 13:45:24 +08:00
|
|
|
}
|
2014-12-09 14:22:54 +08:00
|
|
|
|
|
|
|
.emoji-modal .info {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.emoji-modal .nav {
|
|
|
|
float: right;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal .nav span {
|
2015-08-22 02:35:19 +08:00
|
|
|
color: dark-light-choose(#aaa, #555);
|
2014-12-09 14:22:54 +08:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-modal .nav a {
|
2015-08-22 02:35:19 +08:00
|
|
|
color: dark-light-choose(#333, #ccc);
|
2014-12-09 14:22:54 +08:00
|
|
|
}
|
2016-03-23 03:10:15 +08:00
|
|
|
|
|
|
|
.emoji-shortname {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 200px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|