ui_buttons.html 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058
  1. <!-- start: PAGE TITLE -->
  2. <section id="page-title">
  3. <div class="row">
  4. <div class="col-sm-8">
  5. <h1 class="mainTitle" translate="sidebar.nav.element.BUTTONS">{{ mainTitle }}</h1>
  6. <span class="mainDescription">Button design is usually a subtle element to a web design, but it can have a significant impact on the overall look and usability of the site. </span>
  7. </div>
  8. <div ncy-breadcrumb></div>
  9. </div>
  10. </section>
  11. <!-- end: PAGE TITLE -->
  12. <!-- start: DEFAULT BUTOONS -->
  13. <div class="container-fluid container-fullw bg-white">
  14. <div class="row buttons-widget">
  15. <div class="col-md-12 margin-bottom-30">
  16. <h5 class="over-title">Default <span class="text-bold">Buttons</span></h5>
  17. <p>
  18. Use the button classes on an <code>&lt;a&gt;</code>, <code>&lt;button&gt;</code>, or <code>&lt;input&gt;</code> element.
  19. </p>
  20. <!-- Standard grey button with gradient -->
  21. <button type="button" class="btn btn-wide btn-default">
  22. Default
  23. </button>
  24. <!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
  25. <button type="button" class="btn btn-wide btn-primary">
  26. Primary
  27. </button>
  28. <!-- Indicates a successful or positive action -->
  29. <button type="button" class="btn btn-wide btn-success">
  30. Success
  31. </button>
  32. <!-- Contextual button for informational alert messages -->
  33. <button type="button" class="btn btn-wide btn-info">
  34. Info
  35. </button>
  36. <!-- Indicates caution should be taken with this action -->
  37. <button type="button" class="btn btn-wide btn-warning">
  38. Warning
  39. </button>
  40. <!-- Indicates a dangerous or potentially negative action -->
  41. <button type="button" class="btn btn-wide btn-danger">
  42. Danger
  43. </button>
  44. </div>
  45. <div class="col-md-12">
  46. <h5 class="over-title">Outlined <span class="text-bold">Buttons</span></h5>
  47. <p>
  48. Use the <code>.btn-o</code> class for outlined buttons.
  49. </p>
  50. <button type="button" class="btn btn-o btn-wide btn-default">
  51. Default
  52. </button>
  53. <button type="button" class="btn btn-wide btn-o btn-primary">
  54. Primary
  55. </button>
  56. <button type="button" class="btn btn-wide btn-o btn-success">
  57. Success
  58. </button>
  59. <button type="button" class="btn btn-wide btn-o btn-info">
  60. Info
  61. </button>
  62. <button type="button" class="btn btn-wide btn-o btn-warning">
  63. Warning
  64. </button>
  65. <button type="button" class="btn btn-wide btn-o btn-danger">
  66. Danger
  67. </button>
  68. </div>
  69. </div>
  70. </div>
  71. <!-- end: DEFAULT BUTOONS -->
  72. <!-- start: COLORFUL BUTOONS -->
  73. <div class="container-fluid container-fullw">
  74. <div class="row buttons-widget">
  75. <div class="col-md-12">
  76. <h5 class="over-title">Colorful <span class="text-bold">Buttons</span></h5>
  77. <p>
  78. Use any of the available button classes to quickly create a styled button.
  79. </p>
  80. <p class="text-small">
  81. Using color to add meaning to a button only provides a visual indication, which will not be conveyed to users of assistive technologies &ndash; such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (the visible text of the button), or is included through alternative means, such as additional text hidden with the <code>.sr-only</code> class.
  82. </p>
  83. <div class="row">
  84. <div class="col-sm-4">
  85. <h5 class="margin-top-30">Azure Button</h5>
  86. <p class="text-small">
  87. Add class <code>.btn-azure</code>, <code>.btn-light-azure</code> or <code>.btn-dark-azure</code> to your button.
  88. </p>
  89. <button type="button" class="btn btn-wide btn-azure">
  90. Azure
  91. </button>
  92. <button type="button" class="btn btn-wide btn-light-azure">
  93. Light Azure
  94. </button>
  95. <button type="button" class="btn btn-wide btn-dark-azure">
  96. Dark Azure
  97. </button>
  98. </div>
  99. <div class="col-sm-4">
  100. <h5 class="margin-top-30">Blue Button</h5>
  101. <p class="text-small">
  102. Add class <code>.btn-blue</code>, <code>.btn-light-blue</code> or <code>.btn-dark-blue</code> to your button.
  103. </p>
  104. <button type="button" class="btn btn-wide btn-blue">
  105. Blue
  106. </button>
  107. <button type="button" class="btn btn-wide btn-light-blue">
  108. Light Blue
  109. </button>
  110. <button type="button" class="btn btn-wide btn-dark-blue">
  111. Dark Blue
  112. </button>
  113. </div>
  114. <div class="col-sm-4">
  115. <h5 class="margin-top-30">Purple Button</h5>
  116. <p class="text-small">
  117. Add class <code>.btn-purple</code>, <code>.btn-light-purple</code> or <code>.btn-dark-purple</code> to your button.
  118. </p>
  119. <button type="button" class="btn btn-wide btn-purple">
  120. Purple
  121. </button>
  122. <button type="button" class="btn btn-wide btn-light-purple">
  123. Light Purple
  124. </button>
  125. <button type="button" class="btn btn-wide btn-dark-purple">
  126. Dark Purple
  127. </button>
  128. </div>
  129. <div class="col-sm-4">
  130. <h5 class="margin-top-30">Red Button</h5>
  131. <p class="text-small">
  132. Add class <code>.btn-red</code>, <code>.btn-light-red</code> or <code>.btn-dark-red</code> to your button.
  133. </p>
  134. <button type="button" class="btn btn-wide btn-red">
  135. Red
  136. </button>
  137. <button type="button" class="btn btn-wide btn-light-red">
  138. Light Red
  139. </button>
  140. <button type="button" class="btn btn-wide btn-dark-red">
  141. Dark Red
  142. </button>
  143. </div>
  144. <div class="col-sm-4">
  145. <h5 class="margin-top-30">Orange Button</h5>
  146. <p class="text-small">
  147. Add class <code>.btn-orange</code>, <code>.btn-light-orange</code> or <code>.btn-dark-orange</code> to your button.
  148. </p>
  149. <button type="button" class="btn btn-wide btn-orange">
  150. Orange
  151. </button>
  152. <button type="button" class="btn btn-wide btn-light-orange">
  153. Light Orange
  154. </button>
  155. <button type="button" class="btn btn-wide btn-dark-orange">
  156. Dark Orange
  157. </button>
  158. </div>
  159. <div class="col-sm-4">
  160. <h5 class="margin-top-30">Yellow Button</h5>
  161. <p class="text-small">
  162. Add class <code>.btn-yellow</code>, <code>.btn-light-yellow</code> or <code>.btn-dark-yellow</code> to your button.
  163. </p>
  164. <button type="button" class="btn btn-wide btn-yellow">
  165. Yellow
  166. </button>
  167. <button type="button" class="btn btn-wide btn-light-yellow">
  168. Light Yellow
  169. </button>
  170. <button type="button" class="btn btn-wide btn-dark-yellow">
  171. Dark Yellow
  172. </button>
  173. </div>
  174. <div class="col-sm-4">
  175. <h5 class="margin-top-30">Green Button</h5>
  176. <p class="text-small">
  177. Add class <code>.btn-green</code>, <code>.btn-light-green</code> or <code>.btn-dark-green</code> to your button.
  178. </p>
  179. <button type="button" class="btn btn-wide btn-green">
  180. Green
  181. </button>
  182. <button type="button" class="btn btn-wide btn-light-green">
  183. Light Green
  184. </button>
  185. <button type="button" class="btn btn-wide btn-dark-green">
  186. Dark Green
  187. </button>
  188. </div>
  189. <div class="col-sm-4">
  190. <h5 class="margin-top-30">Beige Button</h5>
  191. <p class="text-small">
  192. Add class <code>.btn-beige</code>, <code>.btn-light-beige</code> or <code>.btn-dark-beige</code> to your button.
  193. </p>
  194. <button type="button" class="btn btn-wide btn-beige">
  195. Beige
  196. </button>
  197. <button type="button" class="btn btn-wide btn-light-beige">
  198. Light Beige
  199. </button>
  200. <button type="button" class="btn btn-wide btn-dark-beige">
  201. Dark Beige
  202. </button>
  203. </div>
  204. <div class="col-sm-4">
  205. <h5 class="margin-top-30">Grey Button</h5>
  206. <p class="text-small">
  207. Add class <code>.btn-grey</code>, <code>.btn-light-grey</code> or <code>.btn-dark-grey</code> to your button.
  208. </p>
  209. <button type="button" class="btn btn-wide btn-grey">
  210. Grey
  211. </button>
  212. <button type="button" class="btn btn-wide btn-light-grey">
  213. Light Grey
  214. </button>
  215. <button type="button" class="btn btn-wide btn-dark-grey">
  216. Dark Grey
  217. </button>
  218. </div>
  219. </div>
  220. </div>
  221. </div>
  222. </div>
  223. <!-- end: COLORFUL BUTOONS -->
  224. <!-- start: BUTTON OPTIONS -->
  225. <div class="container-fluid container-fullw bg-white">
  226. <div class="row">
  227. <div class="col-md-12">
  228. <h5 class="over-title margin-bottom-15"><span class="text-bold">Options</span></h5>
  229. <p>
  230. You can change the style and the state of the buttons using minimal markup.
  231. </p>
  232. <div class="row buttons-widget">
  233. <div class="col-sm-6">
  234. <div class="panel panel-transparent">
  235. <div class="panel-heading">
  236. <div class="panel-title">
  237. Square Buttons
  238. </div>
  239. </div>
  240. <div class="panel-body">
  241. <p>
  242. Do you like the square buttons? Add <code> .btn-squared </code>
  243. to change its shape.
  244. </p>
  245. <button type="button" class="btn btn-wide btn-default btn-squared">
  246. Squared
  247. </button>
  248. <button type="button" class="btn btn-wide btn-primary btn-squared btn-o">
  249. Squared
  250. </button>
  251. <button type="button" class="btn btn-wide btn-info btn-squared">
  252. Squared
  253. </button>
  254. <button type="button" class="btn btn-wide btn-success btn-squared">
  255. Squared <i class="fa fa-angle-right"></i>
  256. </button>
  257. </div>
  258. </div>
  259. </div>
  260. <div class="col-sm-6">
  261. <div class="panel panel-transparent">
  262. <div class="panel-heading">
  263. <div class="panel-title">
  264. Sizes
  265. </div>
  266. </div>
  267. <div class="panel-body">
  268. <p>
  269. Fancy larger or smaller buttons? Add <code> .btn-lg </code>
  270. , <code> .btn-sm </code>
  271. , or <code> .btn-xs </code>
  272. for additional sizes.
  273. </p>
  274. <p>
  275. <button type="button" class="btn btn-primary btn-lg">
  276. Large button
  277. </button>
  278. </p>
  279. <p>
  280. <button type="button" class="btn btn-primary">
  281. Default button
  282. </button>
  283. </p>
  284. <p>
  285. <button type="button" class="btn btn-primary btn-sm">
  286. Small button
  287. </button>
  288. </p>
  289. <p>
  290. <button type="button" class="btn btn-primary btn-xs">
  291. Extra small
  292. </button>
  293. </p>
  294. </div>
  295. </div>
  296. </div>
  297. <div class="col-sm-4">
  298. <div class="panel panel-transparent">
  299. <div class="panel-heading">
  300. <div class="panel-title">
  301. Disabled State
  302. </div>
  303. </div>
  304. <div class="panel-body">
  305. <p>
  306. Add the <code> disabled </code>
  307. attribute to <code> &lt;button&gt; </code>
  308. buttons.
  309. </p>
  310. <button type="button" class="btn btn-wide btn-primary" disabled="disabled">
  311. Disabled
  312. </button>
  313. <button type="button" class="btn btn-wide btn-azure" disabled="disabled">
  314. Disabled
  315. </button>
  316. <button type="button" class="btn btn-wide btn-red" disabled="disabled">
  317. Disabled
  318. </button>
  319. <button type="button" class="btn btn-wide btn-green" disabled="disabled">
  320. Disabled
  321. </button>
  322. </div>
  323. </div>
  324. </div>
  325. <div class="col-sm-4">
  326. <div class="panel panel-transparent">
  327. <div class="panel-heading">
  328. <div class="panel-title">
  329. Active State
  330. </div>
  331. </div>
  332. <div class="panel-body">
  333. <p>
  334. if you need to force the <code>:active</code> appearance, add <code>.active</code>.
  335. </p>
  336. <button type="button" class="btn btn-wide btn-primary active">
  337. Active
  338. </button>
  339. <button type="button" class="btn btn-wide btn-azure active">
  340. Active
  341. </button>
  342. <button type="button" class="btn btn-wide btn-red active">
  343. Active
  344. </button>
  345. <button type="button" class="btn btn-wide btn-green active">
  346. Active
  347. </button>
  348. </div>
  349. </div>
  350. </div>
  351. <div class="col-sm-4">
  352. <div class="panel panel-transparent">
  353. <div class="panel-heading">
  354. <div class="panel-title">
  355. Block level buttons
  356. </div>
  357. </div>
  358. <div class="panel-body">
  359. <p>
  360. Create block level buttons&mdash;those that span the full width of a parent&mdash; by adding <code> .btn-block </code>
  361. .
  362. </p>
  363. <p>
  364. <button class="btn btn-primary btn-block">
  365. Block level button
  366. </button>
  367. </p>
  368. <p>
  369. <div class="btn-group btn-group-justified">
  370. <a class="btn btn-dark-red" href="javascript:;">
  371. Tools
  372. </a>
  373. <a class="btn btn-dark-green" href="javascript:;">
  374. Help
  375. </a>
  376. <a class="btn btn-dark-blue" href="javascript:;">
  377. Contact
  378. </a>
  379. </div>
  380. </p>
  381. </div>
  382. </div>
  383. </div>
  384. </div>
  385. </div>
  386. </div>
  387. </div>
  388. <!-- end: BUTTON OPTIONS -->
  389. <!-- start: BUTTON GROUPS -->
  390. <div class="container-fluid container-fullw">
  391. <div class="row">
  392. <div class="col-md-12">
  393. <h5 class="over-title margin-bottom-15">Button <span class="text-bold">Groups</span></h5>
  394. <p>
  395. Group a series of buttons together on a single line with the button group.
  396. </p>
  397. <div class="row">
  398. <div class="col-sm-6 col-lg-4">
  399. <div class="panel panel-transparent">
  400. <div class="panel-heading">
  401. <div class="panel-title">
  402. Basic example
  403. </div>
  404. </div>
  405. <div class="panel-body">
  406. <p class="text-small">
  407. Wrap a series of buttons with <code> .btn </code>
  408. in <code> .btn-group </code>
  409. .
  410. </p>
  411. <div class="space12">
  412. <div class="btn-group">
  413. <a class="btn btn-primary btn-o active" href="javascript:;">
  414. Tools
  415. </a>
  416. <a class="btn btn-primary btn-o hidden-xs" href="javascript:;">
  417. Settings
  418. </a>
  419. <a class="btn btn-primary btn-o" href="javascript:;">
  420. Help
  421. </a>
  422. <a class="btn btn-primary btn-o" href="javascript:;">
  423. Contact
  424. </a>
  425. </div>
  426. </div>
  427. </div>
  428. </div>
  429. </div>
  430. <div class="col-sm-6 col-lg-4">
  431. <div class="panel panel-transparent">
  432. <div class="panel-heading">
  433. <div class="panel-title">
  434. Button toolbar
  435. </div>
  436. </div>
  437. <div class="panel-body">
  438. <p class="text-small">
  439. Combine sets of <code>&lt;div class="btn-group"&gt;</code> into a <code>&lt;div class="btn-toolbar"&gt;</code> for more complex components.
  440. </p>
  441. <div class="space12">
  442. <div class="btn-toolbar">
  443. <div aria-label="First group" role="group" class="btn-group">
  444. <button class="btn btn-primary" type="button">
  445. 1
  446. </button>
  447. <button class="btn btn-primary" type="button">
  448. 2
  449. </button>
  450. <button class="btn btn-primary" type="button">
  451. 3
  452. </button>
  453. <button class="btn btn-primary" type="button">
  454. 4
  455. </button>
  456. </div>
  457. <div class="btn-group">
  458. <button class="btn btn-primary" type="button">
  459. 5
  460. </button>
  461. <button class="btn btn-primary" type="button">
  462. 6
  463. </button>
  464. <button class="btn btn-primary" type="button">
  465. 7
  466. </button>
  467. </div>
  468. <div class="btn-group">
  469. <button class="btn btn-primary" type="button">
  470. 8
  471. </button>
  472. </div>
  473. </div>
  474. </div>
  475. </div>
  476. </div>
  477. </div>
  478. <div class="col-sm-6 col-lg-4">
  479. <div class="panel panel-transparent">
  480. <div class="panel-heading">
  481. <div class="panel-title">
  482. Vertical variation
  483. </div>
  484. </div>
  485. <div class="panel-body">
  486. <p class="text-small">
  487. Make a set of buttons appear vertically stacked rather than horizontally
  488. </p>
  489. <div class="space12">
  490. <div class="btn-group-vertical">
  491. <a class="btn btn-wide btn-orange" href="javascript:;">
  492. Tools
  493. </a>
  494. <a class="btn btn-wide btn-orange active" href="javascript:;">
  495. Settings
  496. </a>
  497. <a class="btn btn-wide btn-orange" href="javascript:;">
  498. Help
  499. </a>
  500. <a class="btn btn-wide btn-orange" href="javascript:;">
  501. Contact
  502. </a>
  503. </div>
  504. </div>
  505. </div>
  506. </div>
  507. </div>
  508. </div>
  509. </div>
  510. </div>
  511. </div>
  512. <!-- end: BUTTON GROUPS -->
  513. <!-- start: DROPDOWN BUTTONS -->
  514. <div class="container-fluid container-fullw bg-white">
  515. <div class="row">
  516. <div class="col-md-12">
  517. <h5 class="over-title margin-bottom-15">Dropdown <span class="text-bold">Buttons</span></h5>
  518. <p>
  519. Dropdown is a simple directive which will toggle a dropdown menu on click or programmatically.
  520. You can either use <code>is-open</code> to toggle or add inside a <code>&lt;a dropdown-toggle&gt;</code> element to toggle it when is clicked.
  521. There is also the <code>on-toggle(open)</code> optional expression fired when dropdown changes state.
  522. </p>
  523. <!-- /// controller: 'DropdownCtrl' - localtion: assets/js/controllers/bootstrapCtrl.js /// -->
  524. <div ng-controller="DropdownCtrl">
  525. <!-- Simple dropdown -->
  526. <span class="dropdown" dropdown on-toggle="toggled(open)">
  527. <p>
  528. <a href class="dropdown-toggle" dropdown-toggle>
  529. Click me for a dropdown, yo!
  530. </a>
  531. </p>
  532. <ul class="dropdown-menu">
  533. <li ng-repeat="choice in items">
  534. <a href>
  535. {{choice}}
  536. </a>
  537. </li>
  538. </ul> </span>
  539. <!-- Single button -->
  540. <div class="btn-group" dropdown is-open="status.isopen">
  541. <button type="button" class="btn btn-wide btn-primary dropdown-toggle" dropdown-toggle ng-disabled="disabled">
  542. Button dropdown <span class="caret"></span>
  543. </button>
  544. <ul class="dropdown-menu" role="menu">
  545. <li>
  546. <a href="#">
  547. Action
  548. </a>
  549. </li>
  550. <li>
  551. <a href="#">
  552. Another action
  553. </a>
  554. </li>
  555. <li>
  556. <a href="#">
  557. Something else here
  558. </a>
  559. </li>
  560. <li class="divider"></li>
  561. <li>
  562. <a href="#">
  563. Separated link
  564. </a>
  565. </li>
  566. </ul>
  567. </div>
  568. <!-- Split button -->
  569. <div class="btn-group" dropdown>
  570. <button type="button" class="btn btn-danger">
  571. Action
  572. </button>
  573. <button type="button" class="btn btn-danger dropdown-toggle" dropdown-toggle>
  574. <span class="caret"></span>
  575. <span class="sr-only">Split button!</span>
  576. </button>
  577. <ul class="dropdown-menu" role="menu">
  578. <li>
  579. <a href="#">
  580. Action
  581. </a>
  582. </li>
  583. <li>
  584. <a href="#">
  585. Another action
  586. </a>
  587. </li>
  588. <li>
  589. <a href="#">
  590. Something else here
  591. </a>
  592. </li>
  593. <li class="divider"></li>
  594. <li>
  595. <a href="#">
  596. Separated link
  597. </a>
  598. </li>
  599. </ul>
  600. </div>
  601. <hr />
  602. <p>
  603. <button type="button" class="btn btn-wide btn-default btn-sm" ng-click="toggleDropdown($event)">
  604. Toggle button dropdown
  605. </button>
  606. <button type="button" class="btn btn-wide btn-warning btn-sm" ng-click="disabled = !disabled">
  607. Enable/Disable
  608. </button>
  609. </p>
  610. </div>
  611. </div>
  612. </div>
  613. </div>
  614. <!-- end: DROPDOWN BUTTONS -->
  615. <!-- start: LOADING INDICATOR -->
  616. <div class="container-fluid container-fullw">
  617. <div class="row buttons-widget">
  618. <div class="col-md-12">
  619. <h5 class="over-title margin-bottom-15">Buttons with <span class="text-bold">loading indicator</span></h5>
  620. <p>
  621. An angular directive wrapper for Ladda, a UI concept which merges loading indicators into the action that invoked them. <span class="text-bold">Click the buttons to see the effect.</span>
  622. </p>
  623. <div class="row">
  624. <!-- /// controller: 'LaddaCtrl' - localtion: assets/js/controllers/laddaCtrl.js /// -->
  625. <div ng-controller="LaddaCtrl">
  626. <div class="col-sm-6">
  627. <h5> Expand </h5>
  628. <p>
  629. <a ladda="ldloading.expand_left" class="btn btn-wide btn-primary" data-style="expand-left" ng-click="clickBtn('expand-left')">
  630. expand-left
  631. </a>
  632. <a ladda="ldloading.expand_right" class="btn btn-wide btn-primary" data-style="expand-right" ng-click="clickBtn('expand-right')">
  633. expand-right
  634. </a>
  635. <a ladda="ldloading.expand_up" class="btn btn-wide btn-primary" data-style="expand-up" ng-click="clickBtn('expand-up')">
  636. expand-up
  637. </a>
  638. <a ladda="ldloading.expand_down" class="btn btn-wide btn-primary" data-style="expand-down" ng-click="clickBtn('expand-down')">
  639. expand-down
  640. </a>
  641. </p>
  642. <h5> Zoom </h5>
  643. <p>
  644. <a ladda="ldloading.contract" class="btn btn-wide btn-warning" data-style="contract" ng-click="clickBtn('contract')">
  645. contract
  646. </a>
  647. <a ladda="ldloading.zoom_in" class="btn btn-wide btn-warning" data-style="zoom-in" ng-click="clickBtn('zoom-in')">
  648. zoom-in
  649. </a>
  650. <a ladda="ldloading.zoom_out" class="btn btn-wide btn-warning" data-style="zoom-out" ng-click="clickBtn('zoom-out')">
  651. zoom-out
  652. </a>
  653. </p>
  654. <h5> Slide </h5>
  655. <p>
  656. <a ladda="ldloading.slide_left" class="btn btn-wide btn-danger" data-style="slide-left" ng-click="clickBtn('slide-left')">
  657. slide-left
  658. </a>
  659. <a ladda="ldloading.slide_right" class="btn btn-wide btn-danger" data-style="slide-right" ng-click="clickBtn('slide-right')">
  660. slide-right
  661. </a>
  662. <a ladda="ldloading.slide_up" class="btn btn-wide btn-danger" data-style="slide-up" ng-click="clickBtn('slide-up')">
  663. slide-up
  664. </a>
  665. <a ladda="ldloading.slide_down" class="btn btn-wide btn-danger" data-style="slide-down" ng-click="clickBtn('slide-down')">
  666. slide-down
  667. </a>
  668. </p>
  669. </div>
  670. <div class="col-sm-6">
  671. <h5> Built-in progress bar </h5>
  672. <p class="progress-demo">
  673. <a ladda="ldloading.expand_right_progress" class="btn btn-primary" data-style="expand-right" ng-click="clickProgressBtn('expand-right')">
  674. expand-right
  675. </a>
  676. <a ladda="ldloading.contract_progress" class="btn btn-wide btn-primary" data-style="contract" ng-click="clickProgressBtn('contract')">
  677. contract
  678. </a>
  679. </p>
  680. <h5> Sizes </h5>
  681. <p class="progress-demo">
  682. <a ladda="ldloading.xs" class="btn btn-wide btn-lg btn-info" data-style="expand-right" data-spinner-size="10" ng-click="clickBtn('xs')">
  683. 10
  684. </a>
  685. <a ladda="ldloading.sm" class="btn btn-wide btn-lg btn-info" data-style="expand-right" data-spinner-size="20" ng-click="clickBtn('sm')">
  686. 20
  687. </a>
  688. <a ladda="ldloading.lg" class="btn btn-wide btn-lg btn-info" data-style="expand-right" data-spinner-size="30" ng-click="clickBtn('lg')">
  689. 30
  690. </a>
  691. </p>
  692. <h5> Colors </h5>
  693. <p class="progress-demo">
  694. <a ladda="ldloading.red" class="btn btn-wide btn-default" data-style="expand-right" data-spinner-color="#ff0000" ng-click="clickBtn('red')">
  695. red
  696. </a>
  697. <a ladda="ldloading.gray" class="btn btn-wide btn-default" data-style="expand-right" data-spinner-color="#999999" ng-click="clickBtn('gray')">
  698. gray
  699. </a>
  700. <a ladda="ldloading.black" class="btn btn-wide btn-default" data-style="expand-right" data-spinner-color="#000000" ng-click="clickBtn('black')">
  701. black
  702. </a>
  703. </p>
  704. </div>
  705. </div>
  706. </div>
  707. </div>
  708. </div>
  709. </div>
  710. <!-- end: LOADING INDICATOR -->
  711. <!-- start: BUTTONS WITH ICONS -->
  712. <div class="container-fluid container-fullw bg-white">
  713. <div class="row buttons-widget">
  714. <div class="col-md-12">
  715. <h5 class="over-title margin-bottom-15">Buttons with <span class="text-bold">icons</span></h5>
  716. <p>
  717. A lightweight, extensible directive for add small overlays of content, like those on the iPad, to any element for housing secondary information..
  718. </p>
  719. <div class="row">
  720. <div class="col-sm-4">
  721. <div class="panel panel-transparent">
  722. <div class="panel-heading">
  723. <div class="panel-title">
  724. Font Awesome
  725. </div>
  726. </div>
  727. <div class="panel-body">
  728. <p class="text-small">
  729. Examples to use buttons with font awesome icons.
  730. </p>
  731. <p>
  732. <a class="btn btn-wide btn-primary" href="#"><i class="fa fa-share"></i></a>
  733. <a class="btn btn-wide btn-red" href="#"><i class="fa fa-times fa fa-white"></i></a>
  734. <a class="btn btn-wide btn-blue" href="#"><i class="fa fa-arrow-circle-right"></i></a>
  735. <a class="btn btn-wide btn-green" href="#"><i class="fa fa-user fa fa-white"></i></a>
  736. </p>
  737. <p class="text-small">
  738. Buttons with both text and font awesome icon.
  739. </p>
  740. <p>
  741. <a class="btn btn-wide btn-red" href="#"><i class="fa fa-trash-o"></i> Delete Item</a>
  742. <a class="btn btn-wide btn-primary" href="#"><i class="fa fa-plus"></i> Add Item</a>
  743. <a class="btn btn-wide btn-purple">
  744. Listen <i class="fa fa-headphones"></i>
  745. </a>
  746. <a class="btn btn-wide btn-blue" href="#"><i class="fa fa-plus"></i> Submit Entry</a>
  747. </p>
  748. <p>
  749. Toolbar made with font awesome icons.
  750. </p>
  751. <div class="space12">
  752. <div class="btn-group">
  753. <button class="btn btn-primary">
  754. <i class="fa fa-step-backward"></i>
  755. </button>
  756. <button class="btn btn-primary">
  757. <i class="fa fa-backward"></i>
  758. </button>
  759. <button class="btn btn-primary">
  760. <i class="fa fa-play"></i>
  761. </button>
  762. <button class="btn btn-primary">
  763. <i class="fa fa-stop"></i>
  764. </button>
  765. <button class="btn btn-primary">
  766. <i class="fa fa-forward"></i>
  767. </button>
  768. <button class="btn btn-primary">
  769. <i class="fa fa-step-forward"></i>
  770. </button>
  771. </div>
  772. </div>
  773. </div>
  774. </div>
  775. </div>
  776. <div class="col-sm-4">
  777. <div class="panel panel-transparent">
  778. <div class="panel-heading">
  779. <div class="panel-title">
  780. Glyphicons
  781. </div>
  782. </div>
  783. <div class="panel-body">
  784. <p>
  785. Examples to use buttons with glyphicon icons.
  786. </p>
  787. <p>
  788. <a class="btn btn-wide btn-primary" href="#"><i class="glyphicon glyphicon-share"></i></a>
  789. <a class="btn btn-wide btn-red" href="#"><i class="glyphicon glyphicon-remove-circle"></i></a>
  790. <a class="btn btn-wide btn-blue" href="#"><i class="glyphicon glyphicon-circle-arrow-right"></i></a>
  791. <a class="btn btn-wide btn-green" href="#"><i class="glyphicon glyphicon-user"></i></a>
  792. </p>
  793. <p class="text-small">
  794. Buttons with both text and glyphicon icon.
  795. </p>
  796. <p>
  797. <a class="btn btn-wide btn-red" href="#"><i class="glyphicon glyphicon-trash"></i> Delete Item</a>
  798. <a class="btn btn-wide btn-primary" href="#"><i class="glyphicon glyphicon-plus"></i> Add Item</a>
  799. <a class="btn btn-wide btn-purple">
  800. Listen <i class="glyphicon glyphicon-headphones"></i>
  801. </a>
  802. <a class="btn btn-wide btn-blue" href="#"><i class="glyphicon glyphicon-plus"></i> Submit Entry</a>
  803. </p>
  804. <p>
  805. Toolbar made with glyphicon icons.
  806. </p>
  807. <div class="space12">
  808. <div class="btn-group">
  809. <button class="btn btn-primary">
  810. <i class="glyphicon glyphicon-step-backward"></i>
  811. </button>
  812. <button class="btn btn-primary">
  813. <i class="glyphicon glyphicon-backward"></i>
  814. </button>
  815. <button class="btn btn-primary">
  816. <i class="glyphicon glyphicon-play"></i>
  817. </button>
  818. <button class="btn btn-primary">
  819. <i class="glyphicon glyphicon-stop"></i>
  820. </button>
  821. <button class="btn btn-primary">
  822. <i class="glyphicon glyphicon-forward"></i>
  823. </button>
  824. <button class="btn btn-primary">
  825. <i class="glyphicon glyphicon-step-forward"></i>
  826. </button>
  827. </div>
  828. </div>
  829. </div>
  830. </div>
  831. </div>
  832. <div class="col-sm-4">
  833. <div class="panel panel-transparent">
  834. <div class="panel-heading">
  835. <div class="panel-title">
  836. Themify Icons
  837. </div>
  838. </div>
  839. <div class="panel-body">
  840. <p>
  841. Examples to use buttons with themify icons.
  842. </p>
  843. <p>
  844. <a class="btn btn-wide btn-primary" href="#"><i class="ti-share"></i></a>
  845. <a class="btn btn-wide btn-red" href="#"><i class="ti-close"></i></a>
  846. <a class="btn btn-wide btn-blue" href="#"><i class="ti-arrow-circle-right"></i></a>
  847. <a class="btn btn-wide btn-green" href="#"><i class="ti-user"></i></a>
  848. </p>
  849. <p class="text-small">
  850. Buttons with both text and themify icon.
  851. </p>
  852. <p>
  853. <a class="btn btn-wide btn-red" href="#"><i class="ti-trash"></i> Delete Item</a>
  854. <a class="btn btn-wide btn-primary" href="#"><i class="ti-plus"></i> Add Item</a>
  855. <a class="btn btn-wide btn-purple">
  856. Listen <i class="ti-headphone"></i>
  857. </a>
  858. <a class="btn btn-wide btn-blue" href="#"><i class="ti-plus"></i> Submit Entry</a>
  859. </p>
  860. <p>
  861. Toolbar made with themify icons.
  862. </p>
  863. <div class="space12">
  864. <div class="btn-group">
  865. <button class="btn btn-primary">
  866. <i class="ti-control-skip-backward"></i>
  867. </button>
  868. <button class="btn btn-primary">
  869. <i class="ti-control-backward"></i>
  870. </button>
  871. <button class="btn btn-primary">
  872. <i class="ti-control-play"></i>
  873. </button>
  874. <button class="btn btn-primary">
  875. <i class="ti-control-stop"></i>
  876. </button>
  877. <button class="btn btn-primary">
  878. <i class="ti-control-forward"></i>
  879. </button>
  880. <button class="btn btn-primary">
  881. <i class="ti-control-skip-forward"></i>
  882. </button>
  883. </div>
  884. </div>
  885. </div>
  886. </div>
  887. </div>
  888. </div>
  889. <div class="row">
  890. <div class="col-sm-12">
  891. <div class="panel panel-transparent">
  892. <div class="panel-heading">
  893. <div class="panel-title">
  894. Animated Buttons
  895. </div>
  896. </div>
  897. <div class="panel-body">
  898. <p>
  899. Modern and subtle styles &amp; effects for buttons
  900. </p>
  901. <button type="button" class="btn btn-primary btn-wide btn-scroll btn-scroll-top ti-shopping-cart" ng-click="openAside('right')">
  902. <span>Add to cart</span>
  903. </button>
  904. <button type="button" class="btn btn-success btn-wide btn-scroll btn-scroll-left ti-settings" ng-click="openAside('right')">
  905. <span>Settings</span>
  906. </button>
  907. <button type="button" class="btn btn-info btn-wide btn-scroll btn-scroll-top fa fa-heart" ng-click="openAside('right')">
  908. <span>Love</span>
  909. </button>
  910. <button type="button" class="btn btn-danger btn-wide btn-scroll btn-scroll-left fa fa-truck" ng-click="openAside('right')">
  911. <span>Truck</span>
  912. </button>
  913. </div>
  914. </div>
  915. </div>
  916. </div>
  917. <div class="row">
  918. <div class="col-sm-12">
  919. <div class="panel panel-transparent">
  920. <div class="panel-heading">
  921. <div class="panel-title">
  922. Social List
  923. </div>
  924. </div>
  925. <div class="panel-body">
  926. <div class="social-icons">
  927. <ul>
  928. <li class="social-twitter" tooltip="Twitter" tooltip-placement="top">
  929. <a target="_blank" href="#">
  930. Twitter
  931. </a>
  932. </li>
  933. <li class="social-dribbble" tooltip="Dribbble" tooltip-placement="top">
  934. <a target="_blank" href="#">
  935. Dribbble
  936. </a>
  937. </li>
  938. <li class="social-facebook" tooltip="Facebook" tooltip-placement="top">
  939. <a target="_blank" href="#">
  940. Facebook
  941. </a>
  942. </li>
  943. <li class="social-google" tooltip="Google" tooltip-placement="top">
  944. <a target="_blank" href="#">
  945. Google+
  946. </a>
  947. </li>
  948. <li class="social-linkedin" tooltip="LinkedIn" tooltip-placement="top">
  949. <a target="_blank" href="#">
  950. LinkedIn
  951. </a>
  952. </li>
  953. <li class="social-youtube" tooltip="YouTube" tooltip-placement="top">
  954. <a target="_blank" href="#">
  955. YouTube
  956. </a>
  957. </li>
  958. <li class="social-rss" tooltip="RSS" tooltip-placement="top">
  959. <a target="_blank" href="#" >
  960. RSS
  961. </a>
  962. </li>
  963. <li class="social-behance" tooltip="Behance" tooltip-placement="top">
  964. <a target="_blank" href="#" >
  965. Behance
  966. </a>
  967. </li>
  968. <li class="social-dropbox" tooltip="Dropbox" tooltip-placement="top">
  969. <a target="_blank" href="#" >
  970. Dropbox
  971. </a>
  972. </li>
  973. <li class="social-github" tooltip="Github" tooltip-placement="top">
  974. <a target="_blank" href="#" >
  975. Github
  976. </a>
  977. </li>
  978. <li class="social-spotify" tooltip="Spotify" tooltip-placement="top">
  979. <a target="_blank" href="#" >
  980. Spotify
  981. </a>
  982. </li>
  983. <li class="social-stumbleupon" tooltip="Stumbleupon" tooltip-placement="top">
  984. <a target="_blank" href="#" >
  985. Stumbleupon
  986. </a>
  987. </li>
  988. <li class="social-skype" tooltip="Skype" tooltip-placement="top">
  989. <a target="_blank" href="#" >
  990. Skype
  991. </a>
  992. </li>
  993. <li class="social-tumblr" tooltip="Tumblr" tooltip-placement="top">
  994. <a target="_blank" href="#" >
  995. Tumblr
  996. </a>
  997. </li>
  998. <li class="social-spotify" tooltip="Spotify" tooltip-placement="top">
  999. <a target="_blank" href="#" >
  1000. Spotify
  1001. </a>
  1002. </li>
  1003. <li class="social-vimeo" tooltip="Vimeo" tooltip-placement="top">
  1004. <a target="_blank" href="#" >
  1005. Vimeo
  1006. </a>
  1007. </li>
  1008. <li class="social-wordpress" tooltip="Wordpress" tooltip-placement="top">
  1009. <a target="_blank" href="#" >
  1010. Wordpress
  1011. </a>
  1012. </li>
  1013. <li class="social-xing" tooltip="Xing" tooltip-placement="top">
  1014. <a target="_blank" href="#" >
  1015. Xing
  1016. </a>
  1017. </li>
  1018. <li class="social-yahoo" tooltip="Yahoo" tooltip-placement="top">
  1019. <a target="_blank" href="#" >
  1020. Yahoo
  1021. </a>
  1022. </li>
  1023. <li class="social-vk" tooltip="VK" tooltip-placement="top">
  1024. <a target="_blank" href="#" >
  1025. VK
  1026. </a>
  1027. </li>
  1028. <li class="social-instagram" tooltip="Instagram" tooltip-placement="top">
  1029. <a target="_blank" href="#" >
  1030. Instagram
  1031. </a>
  1032. </li>
  1033. <li class="social-reddit" tooltip="Reddit" tooltip-placement="top">
  1034. <a target="_blank" href="#" >
  1035. Reddit
  1036. </a>
  1037. </li>
  1038. <li class="social-flickr" tooltip="Flickr" tooltip-placement="top">
  1039. <a target="_blank" href="#" >
  1040. Flickr
  1041. </a>
  1042. </li>
  1043. <li class="social-foursquare" tooltip="Foursquare" tooltip-placement="top">
  1044. <a target="_blank" href="#" >
  1045. Foursquare
  1046. </a>
  1047. </li>
  1048. </ul>
  1049. </div>
  1050. </div>
  1051. </div>
  1052. </div>
  1053. </div>
  1054. </div>
  1055. </div>
  1056. </div>
  1057. <!-- end: BUTTONS WITH ICONS -->