Commit Graph

61 Commits

Author SHA1 Message Date
Daniel Leedan
514f9bd4b5 Fix RTL issues on 'exchanges' page
Closes #3522
2020-12-09 13:23:18 +08:00
Daniel Leedan
1dc4f90256 Fix RTL issues on 'exchanges' page
Closes #3522
2020-12-09 13:06:07 +08:00
Daniel Leedan
7671980b29 Fix #3452 2020-08-27 08:46:31 +08:00
Daniel Leedan
eb37205d56 Fix #3452 2020-08-27 08:05:40 +08:00
Daniel Leedan
f732098b5d Update rtl.scss
Fix typo
2020-08-23 13:33:49 +08:00
Daniel Leedan
b9ef84e264 Update rtl.scss
- Fix homepage  buttons direction
- Fix 'wallet-hint' margin
- Fix 'about-us' timeline
2020-08-23 11:41:15 +08:00
Daniel Leedan
95082c55c6 Update rtl.scss: FAQ extra fix 2020-07-17 10:07:17 +08:00
Daniel Leedan
eb4815a6bd Update rtl.scss: FAQ direction for RTL languages 2020-07-17 09:50:09 +08:00
Daniel Leedan
8d2b29e5c8 Update rtl.scss: margin issues for RTL languages 2020-07-10 15:59:54 +08:00
Daniel Leedan
2a0d5bbd55 Update rtl.scss
FIX RTL for 'choose-your-wallet' checkbox for desktop
2020-06-22 14:41:13 +08:00
Daniel Leedan
0e42d9e6b9 Update rtl.scss
FIXED RTL support for 'wallet' pages
2020-06-22 11:50:54 +08:00
Daniel Leedan
ac5b99d515 Update rtl.scss
Footer issue for RTL
2020-06-19 13:20:36 +08:00
Daniel Leedan
09f9ec41d1 Update rtl.scss
Menu issues for RTL languages
2020-06-15 16:07:40 +08:00
Will Binns
2deee57d4b
css/rtl: Fix missing closure to declaration 2020-06-04 09:07:53 +02:00
Will Binns
326a861a2d
Merge branch 'rtl-updates' into rtl 2020-06-04 07:44:36 +02:00
alexcherman
0b2eb4f48b Add rtl styles 2020-06-03 13:23:30 +02:00
alexcherman
4495a2c865 Fix rtl text styles 2020-05-15 23:32:13 +02:00
Priem19
33da1be571 removes hero-social, footer-social, fb & twitter icons 2020-01-04 10:02:50 +01:00
alexcherman
f4c90f019d Display old wallet-selector if user disabled js 2019-08-03 16:29:29 +02:00
alexcherman
4dbae7b0b2 Fix wallet page rtl version for mobile and tablet 2019-07-16 20:19:09 +02:00
alexcherman
c842868544 Fix wallet page rtl version 2019-07-16 19:20:07 +02:00
alexcherman
9a32a80737 Fix wallet selector rtl version for mobile and tablet 2019-07-16 17:04:16 +02:00
alexcherman
a00d3c2ee2 Fix wallet selector rtl version 2019-07-16 16:03:57 +02:00
alexcherman
cc2dc0ef6c Fix wizard rtl version for mobile and tablet 2019-07-16 15:25:03 +02:00
alexcherman
665e49a35b Fix wizard rtl version 2019-07-16 15:07:34 +02:00
alexcherman
b06043a5a7 remove unused code 2019-07-02 15:22:50 +02:00
Will Binns
44431074fd
css/sass: Ensure failing scores display in red 2019-06-03 16:16:22 +02:00
Will Binns
9b5797093a
site: Cache burst CSS/JS/PNG/SVG 2018-06-07 09:25:25 -06:00
alexcherman
470e6e961c fixed about us layout for rtl languages 2018-05-06 15:52:11 +02:00
alexcherman
037beeb317 fixed wallet filter for rtl languages 2018-05-06 15:40:38 +02:00
alexcherman
d92dd1eb1a download bitcoin core draft 2018-03-21 17:23:15 +01:00
David A. Harding
a40fb73dab
Layout: render CSS with both "less" and "scss"
This commit renders the same CSS files using both the "less" and "scss"
CSS generation engines so that the results may be compared.  This is a
comparison script:

    old_main_css=$( grep -rl normalize.css _site/*.css )
    new_main_css=_site/css/main.css
    old_rtl_css=$( grep 'Language specific styles that override default' -rl _site/*.css )
    new_rtl_css=_site/css/rtl.css

    (
      diff -ub $old_main_css $new_main_css
      diff -ub $old_rtl_css $new_rtl_css
    )
2017-06-23 11:49:28 -04:00
David A. Harding
57eabd5e36
Merge pull #1007: Start using Font Awesome icons 2015-08-25 07:21:46 -04:00
David A. Harding
d010147903
Add JQuery UI icon images 2015-08-22 18:23:43 -04:00
David A. Harding
69a10a160e
Add Font Awesome 2015-08-10 12:42:06 -04:00
David A. Harding
a2a5f454cb
Revert "Revert "Merge pull #793: Dev Docs: New Glossary & JS Search Box""
This reverts commit 961d6c988f.
2015-04-14 08:55:53 -04:00
David A. Harding
961d6c988f
Revert "Merge pull #793: Dev Docs: New Glossary & JS Search Box"
This reverts commit e3dcf0ce1f, reversing
changes made to c71e9fdf2d.

Once again we had a broken new plugin that Travis CI and local building
didn't catch.
2015-04-10 19:33:39 -04:00
David A. Harding
037cd4553a
Add New Glossary Page And Developer Search Feature
This commit adds the code necessary to generate a new
en/developre-glossary page with entry pages in the en/glossary/
directory, e.g. en/glossary/51-percent-attack.

The glossary page and the individual term pages feature a JavaScript
search engine (no CGI) for just glossary terms.  This search box has
also been added to the following pages:

    * Developer Documentation (the index page)
    * Developer Guide
    * Developer Reference
    * Developer Examples

The search box requires the following MIT-licensed libraries:

    * JQuery
    * JQuery UI
    * JQuery UI CSS stylesheet

These allow our JS code to be almost trivially simple in js/devsearch.js

This commit adds only code.  Actual glossary entry data will be added in
a subsequent commit.
2015-03-19 15:31:28 -04:00
Saivann
87465a3a7e Drop unused CSS file 2014-11-13 14:42:42 -05:00
Saivann
dfd44bac21 Display events on a map using OpenStreetMap 2014-02-09 15:18:42 -05:00
Saivann
6f034e71fb Use less to build all CSS files
CSS file names are now updated when visitor's browser must reload them
Allow files with .css extension to skip less compilation (IE6 invalid CSS syntax)
2013-10-22 03:17:02 -04:00
Saivann
25af20cceb Apply some additional CSS cleanup and fixes 2013-10-22 02:42:11 -04:00
Saivann
dc95a88d06 Drop deprecated CSS styles for IE6-7 2013-10-22 00:00:43 -04:00
Saivann
06685bbe13 Apply a few CSS fixes for IE6-7 2013-10-21 15:32:11 -04:00
Saivann
2f79df8dcd Apply various syntax consistency improvements 2013-10-21 14:59:09 -04:00
Saivann
fb2f594f9a Refresh and cleanup CSS and layout for old languages
Apply new layout
Drop deprecated CSS and icons
Fix various broken layout styles
Merge duplicating CSS "per language" into single files
2013-10-17 03:50:10 -04:00
Saivann
b185176815 Rewrite Innovation page
Change layout to display two texts by column
Add more texts about Bitcoin contracts and real use cases
Drop or improve existing texts
2013-10-07 10:09:55 -04:00
Saivann
f870596049 Make "Getting started", "Community" and "Resources" pages scalable for various translation text length 2013-08-20 11:44:05 -04:00
Saivann
d524755276 Add a lower severity disclaimer for wallets in-between software wallets and web wallets.
Applies to hybrid wallet (blockchain.info)
Applies to clients that are loading the block-chain using a centralized server (Electrum)
2013-08-16 19:43:11 -04:00
Saivann
a57a911212 Apply right margin dynamically in wallet list 2013-08-15 11:51:47 -04:00