google-material-icons

Materialize Icons doesn't work in JavaFX Browser

我的未来我决定 提交于 2021-02-10 18:17:37
问题 I'm trying to show MaterialIcons on my JavaFx WebBrowser using webEngine, but it just shows the description of the icon. Icons doesn't work also on IE and Safari. Does anyone know how to make it readable? 回答1: I also struggle on that one, so for those who are intersted to know, JavaFX is only compatible with MaterialIcons written with numerical character references as James_D stated and not with ligatures format. So insted of writing : <i class="material-icons">add</i> You should write : <i

How to prevent material icon text from showing up when Google's JS fails to convert them?

馋奶兔 提交于 2021-01-20 16:21:32
问题 How do you prevent material icon text from showing up when Google's JS fails to convert them to icons? Icons are defined in markup as such: <span class="material-icons">icon_name</span> Example: https://archive.fo/CKqKG/scr.png (see the top row of buttons). Material Icons Documentation: https://material.io/icons/ This is also an issue in Google search where Google will actually read and save the div's text instead of ignoring it. Example: https://i.imgur.com/TixS06y.png I understand that one

How to prevent material icon text from showing up when Google's JS fails to convert them?

北慕城南 提交于 2021-01-20 16:21:31
问题 How do you prevent material icon text from showing up when Google's JS fails to convert them to icons? Icons are defined in markup as such: <span class="material-icons">icon_name</span> Example: https://archive.fo/CKqKG/scr.png (see the top row of buttons). Material Icons Documentation: https://material.io/icons/ This is also an issue in Google search where Google will actually read and save the div's text instead of ignoring it. Example: https://i.imgur.com/TixS06y.png I understand that one

How to prevent material icon text from showing up when Google's JS fails to convert them?

假装没事ソ 提交于 2021-01-20 16:21:26
问题 How do you prevent material icon text from showing up when Google's JS fails to convert them to icons? Icons are defined in markup as such: <span class="material-icons">icon_name</span> Example: https://archive.fo/CKqKG/scr.png (see the top row of buttons). Material Icons Documentation: https://material.io/icons/ This is also an issue in Google search where Google will actually read and save the div's text instead of ignoring it. Example: https://i.imgur.com/TixS06y.png I understand that one

How to prevent material icon text from showing up when Google's JS fails to convert them?

泪湿孤枕 提交于 2021-01-20 16:21:26
问题 How do you prevent material icon text from showing up when Google's JS fails to convert them to icons? Icons are defined in markup as such: <span class="material-icons">icon_name</span> Example: https://archive.fo/CKqKG/scr.png (see the top row of buttons). Material Icons Documentation: https://material.io/icons/ This is also an issue in Google search where Google will actually read and save the div's text instead of ignoring it. Example: https://i.imgur.com/TixS06y.png I understand that one

How do you change Material Icon permanently using CSS and HTML?

送分小仙女□ 提交于 2020-01-15 12:07:12
问题 I am trying to change the icon permanently from "add" to "done" after I click the icon. If I click the icon again, it should change from "done" to "add." I am wondering if it is possible to do this with CSS without using Javascript. .material-icons::before { content: "add"; } section:active .material-icons::before { /*background-color: red;*/ content: "done"; } <link href="https://fonts.googleapis.com/icon?family=Material+Icons|Open+Sans" rel="stylesheet"> <section> <span id="btn1" class=

How to make an hypertext link on a list that contains “material-icons”?

百般思念 提交于 2020-01-06 02:31:05
问题 I want to develop a floating bar that contains icons (material-icons). Unfortunately, my <a href=> attribute doesn't work and the icons are not clickable. Any idea how to solve this? <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <ul id="navigation"> <li class="material-icons md-48 md-dark">video_library <a href="https://www.google.com"></a> </li> <li class="material-icons md-48 md-dark">contact_support <a href="https://www.google.com" target="_blank"><

how to use google material icons as class instead of <i> tag

…衆ロ難τιáo~ 提交于 2019-12-19 03:24:38
问题 According to the guideline in the Google Material website we have to use material icons in _ i _ tag. the question is how to add the icons as font-awesome. something like : Class="material-icons face" instead of <i class="material-icons"> face </i> 回答1: Yes,you can add the material icons as classes using the after pseudo elements.check out the fiddle <span class="material-icons face"></span> .face { position:relative; display:inline-block; } .face:after { content: "face"; } 来源: https:/

How to set the CSS content property with a Google Material Icon?

南笙酒味 提交于 2019-12-18 12:23:11
问题 How can I insert the Google Material Icon "chevron icon right" (https://design.google.com/icons/#ic_chevron_right) in the following CSS content property: .bullet li a:before { content: ""; } 回答1: Update on 2018 Google removed the codes which were displayed earlier for IE9 and below. To get the codes visit the codepoints file in the GitHub repository. Link to codepoints in GitHub repository: https://github.com/google/material-design-icons/blob/master/iconfont/codepoints Step 1: Include the

How to set the CSS content property with a Google Material Icon?

馋奶兔 提交于 2019-12-18 12:23:06
问题 How can I insert the Google Material Icon "chevron icon right" (https://design.google.com/icons/#ic_chevron_right) in the following CSS content property: .bullet li a:before { content: ""; } 回答1: Update on 2018 Google removed the codes which were displayed earlier for IE9 and below. To get the codes visit the codepoints file in the GitHub repository. Link to codepoints in GitHub repository: https://github.com/google/material-design-icons/blob/master/iconfont/codepoints Step 1: Include the