bootstrap-material-design

Combining angular material with twitter bootstrap without conflicts

℡╲_俬逩灬. 提交于 2019-12-21 12:43:00
问题 I would like to combine twitter bootstrap together with angular material. I found bootstrap material design https://github.com/FezVrasta/bootstrap-material-design Angular material uses following declarations; <script src="../bower_components/angular/angular.min.js"></script> <script src="../bower_components/angular-animate/angular-animate.min.js"></script> <script src="../bower_components/angular-aria/angular-aria.min.js"></script> <script src="../bower_components/angular-material/angular

Material ripple effect on table row

孤人 提交于 2019-12-11 03:49:52
问题 I'm playing with google material design bootstrap theme by FezVrasta Most of components working and looking great, but ripple effect on table row not working properly for me. Demo: jsfiddle.net table > tr > td {position:absolute;} Absolute position helps but destroys table structure. 回答1: You cannot add anything other than <td> into a <tr> . In other words, You can only have this effect for <td> . This is an HTML limitation. 来源: https://stackoverflow.com/questions/29105677/material-ripple

Bootstrap material design- floating labels are not floated when data is loaded dynamically

断了今生、忘了曾经 提交于 2019-12-10 20:39:33
问题 I am using bootstrap material design for my angular app. Everything works fine except when I change the models associated with inputs (floating label inputs) programmatically after the page has been loaded, the floating labels are not floated. 回答1: You must fire a change event when you change the value programmatically. 回答2: If you are using Angular2 then no custom directive is needed. On the label do something like this. <label [class.active]="name && name.length > 0">Some Label</label> 来源:

Bootstrap material design not working properly with dynamic angular views

元气小坏坏 提交于 2019-12-10 13:48:50
问题 I'm including material-bootstrap scripts into the index.html of my Angular project, but they need to be manually re-included in the views to work. This is strange, as for all other scripts inserted into Angular this does not happen. index.html <script src="bower_components/bootstrap-material-design/scripts/material.js"></script> <script src="bower_components/bootstrap-material-design/scripts/ripples.js"></script> I also noticed that material-bootstrap doesn't play well with Grunt and Bower,

Radio buttons and checkbox is not working in material design

房东的猫 提交于 2019-12-08 00:49:28
问题 Bootstrap material design checkbox, radio buttons and toggle buttons are not getting styled according to material design in the below code, Please help me. <link href="css/bootstrap-material-design.min.css" rel="stylesheet" /> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> <link href="css/jquery-ui.min.css" rel="stylesheet" /> <link href="css/bootstrap.min.css" rel="stylesheet" /> <link href="css/material-fullpalette.min.css" rel="stylesheet" /> <link

Integrate LESS version of Bootstrap-Material-Design to Rails Project

时光怂恿深爱的人放手 提交于 2019-12-06 15:04:33
问题 I am using this gem bootstrap-material-design which is a sass version of https://github.com/FezVrasta/bootstrap-material-design library but recently I have noticed that sass version is no longer maintained. Problem i am facing with this gem is that it doesn't turn buttons and flash messages to material styled. One solution as suggested here: https://github.com/FezVrasta/bootstrap-material-design/issues/535 is to use LESS version but I dont know how to Integrate the LESS version of this

Radio buttons and checkbox is not working in material design

耗尽温柔 提交于 2019-12-06 08:06:04
Bootstrap material design checkbox, radio buttons and toggle buttons are not getting styled according to material design in the below code, Please help me. <link href="css/bootstrap-material-design.min.css" rel="stylesheet" /> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> <link href="css/jquery-ui.min.css" rel="stylesheet" /> <link href="css/bootstrap.min.css" rel="stylesheet" /> <link href="css/material-fullpalette.min.css" rel="stylesheet" /> <link href="css/ripples.min.css" rel="stylesheet" /> <link href="css/material-design-iconic-font.min.css"

Bootstrap Material Design cdn

僤鯓⒐⒋嵵緔 提交于 2019-12-05 00:17:51
问题 I'd like to use Bootstrap Material design, and the github page says that I can get it from jsdelivr.com. But then the Getting Started page says: Once copied you need to initialize the material javascript by adding the following javascript to your site, $.material.init() The integration page at jsdelivr says to use this: <link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap.material-design/0.3.0/css/material-wfont.min.css"> <link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap.material

Integrate LESS version of Bootstrap-Material-Design to Rails Project

折月煮酒 提交于 2019-12-04 23:01:34
I am using this gem bootstrap-material-design which is a sass version of https://github.com/FezVrasta/bootstrap-material-design library but recently I have noticed that sass version is no longer maintained. Problem i am facing with this gem is that it doesn't turn buttons and flash messages to material styled. One solution as suggested here: https://github.com/FezVrasta/bootstrap-material-design/issues/535 is to use LESS version but I dont know how to Integrate the LESS version of this Library. anyone has done this already ? UPDATE : In case anyone is looking to add Bootstrap-Material-Design

Combining angular material with twitter bootstrap without conflicts

醉酒当歌 提交于 2019-12-04 06:51:10
I would like to combine twitter bootstrap together with angular material. I found bootstrap material design https://github.com/FezVrasta/bootstrap-material-design Angular material uses following declarations; <script src="../bower_components/angular/angular.min.js"></script> <script src="../bower_components/angular-animate/angular-animate.min.js"></script> <script src="../bower_components/angular-aria/angular-aria.min.js"></script> <script src="../bower_components/angular-material/angular-material.min.js"></script> For bootstrap material, the declarations in the documentation are like this; <!