move emoji font collection to own font definition
This commit is contained in:
parent
695bcb2da3
commit
211abd9269
3 changed files with 17 additions and 3 deletions
15
src/ui/web/css/font.css
Normal file
15
src/ui/web/css/font.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
/** from https://gist.github.com/mfornos/9991865 */
|
||||
|
||||
@font-face {
|
||||
font-family: 'emoji';
|
||||
src: local('Apple Color Emoji'),
|
||||
local('Segoe UI Emoji'),
|
||||
local('Segoe UI Symbol'),
|
||||
local('Noto Color Emoji'),
|
||||
local('Android Emoji'),
|
||||
local('EmojiSymbols'),
|
||||
local('Symbola');
|
||||
|
||||
/* Emoji unicode blocks */
|
||||
unicode-range: U+1F300-1F5FF, U+1F600-1F64F, U+1F680-1F6FF, U+2600-26FF;
|
||||
}
|
|
@ -14,7 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
@import url('font.css');
|
||||
@import url('layout.css');
|
||||
@import url('login.css');
|
||||
@import url('left-panel.css');
|
||||
|
|
|
@ -16,8 +16,7 @@ limitations under the License.
|
|||
*/
|
||||
|
||||
.hydrogen {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif,
|
||||
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif, 'emoji';
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
|
Reference in a new issue