aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixes #403 : Remove QRCode in core CSS and fix plugin layoutArthurHoaro2015-12-071-10/+0
|
* Fixes #360 - Auto-complete more than one tag in tag filter fieldArthurHoaro2015-11-171-0/+35
| | | | | | * Group awesomplete for multi data in a single JS file. * Use it in editlink and linklist. * Move awesomplete JS lib at the end of page in editlink.
* Handle errors raised by plugins in template. fixes #370ArthurHoaro2015-11-081-0/+5
|
* Template upgrade to handle plugin zonesArthurHoaro2015-11-073-1224/+4
| | | | Add a bunch of plugin placeholders in templates
* awesome.css restored. width bug fixed.nicolasm2015-06-262-0/+6
|
* cursor pointer for label (ux improvement)Nicolas Danelon2015-06-231-0/+1
|
* fix no javascriptNicolas Danelon2015-06-232-6/+0
|
* Update awesomplete.cssNicolas Danelon2015-06-231-1/+0
|
* filter input search responsive fixed (mobile)Nicolas Danelon2015-06-232-2/+8
|
* Merge remote-tracking branch 'nicolasdanelon/master' into nextnodiscc2015-06-231-0/+24
|\
| * fix login desktopnda2015-06-191-0/+10
| |
| * login enhance for mobilenda2015-06-191-0/+14
| |
* | Add awesomplete to tag search shaarli/Shaarli#49ArthurHoaro2015-06-091-1/+10
|/
* restore normal font size for the "Add link" input fieldnodiscc2015-03-161-0/+1
| | | | * Fixes second part of #172
* Merge remote-tracking branch 'ArthurHoaro/autocomplete' into nextnodiscc2015-03-158-26957/+514
|\
| * Use awesomplete as autocomplete lib and remove jQuery - shaarli/Shaarli#148ArthurHoaro2015-03-128-26957/+514
| | | | | | | | | | | | | | | | | | * Add awesomplete dependancy (source + min + CSS) * Remove jQuery and jQuery-UI dependancy * Few CSS ajustements * Use tags complete list as RainTPL var (and display it as HTML) * Remove "disable jQuery" feature * Remove tag list web service
* | theme: decrease border-radius to 3px everywherenodiscc2015-03-121-8/+8
| |
* | Fix menu dynamic resize, padding, private icon pixelationMiloš Jovanović2015-03-111-35/+58
|/
* remove duplicate license information, fixes ↵nodiscc2015-03-051-120/+0
| | | | https://github.com/shaarli/Shaarli/issues/135
* Lazy load images with the light lib bLazy.js instead of jQuery:ArthurHoaro2015-03-015-244/+250
| | | | | | | * Remove jquery.lazyload lib * Add blazy lib * Add a bit of CSS animation * Delete unused picwall2 template
* Fix missing authors and licenses in COPYINGnodiscc2015-02-142-8/+7
| | | | | | | * add idleman for original CSS * add yahoo inc. for CSS reset * split the main css code and the yahoo reset CSS in 2 files * add copyright information for RainTPL, add LGPL license
* Feature: enable/disable permalinks for RSSFlorian Eula2015-02-071-0/+4
| | | | | | | | | | | | | | | | | | | | The option to see the shortlinks or permalinks has been added to the configuration panel. It is a simple checkbox This option is disabled by default (meaning that shortlinks are the default) Updated writeConfig() to save this option Also fixed a slight typo in config.html. Removed useless CSS & fixed a comment Enabled permalinks for the ATOM feed and fixed the isPermaLink attribute for the <guid> tag Reverted to default behavior and clarified its meaning EnableRssPermalinks is an oddly behaving option: when enabled, it shows a permalink in the description and a full link in the element title, and swaps it around when disabled. This clarifies the option for end-users Also, moved enable_rss_permalinks to $GLOBALS['config'] because it is a config option. fix indent
* Merge pull request #99 from pikzen/license-versionnodiscc2015-01-2613-54/+28524
|\ | | | | Versioned JS files & centralized licenses
| * Versioned JS files & centralized licensesfeula2015-01-2113-54/+28524
| | | | | | | | | | | | | | Updated libraries Updated copyright dates and the list of contributors. Added unminified sources for GPL compliance
* | daily: display link timestampsVirtualTam2015-01-151-0/+4
| | | | | | | | | | | | Fixes #26 Signed-off-by: VirtualTam <virtualtam@flibidi.org>
* | W3C compliance (work on issue #64 - ↵ArthurHoaro2015-01-081-10/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/shaarli/Shaarli/issues/64): * fix duplicate IDs - #paging_older, #paging_newer become classes as the paging is displayed twice (top, bottom) in the linklist * fix duplicate IDs - #paging_privatelinks and #paging_linksperpage become classes * daily links are now valid (use &amp) * name attribute is not used anymore on a tag in link list * center tag is replaced by CSS in picwall and tag cloud * action in form tag can't be empty, use # instead * fixed configure table with CSS instead of cellpadding, border, and valign * export links are now valid * remove "size" in input tag * Fix missing alt attributes for img elements * tpl/daily: Use HTML entities instead of char escape codes * tpl/export: fix missing </span> closing tag * Remove obsolete language attribute on <script> elements
* | improve tag cloud font size scalingnodiscc2014-12-291-1/+0
|/ | | | | * use logarithmic scales * remove bold style
* CSS: remove hardcoded style from templatesVirtualTam2014-12-031-2/+115
| | | | | | | | | | | | | | | Fixes shaarli/Shaarli#29 Style elements refactored as follows: - use existing ids and classes if possible, - else, define new ones and stick with the existing naming convention, - remove hardcoded style attributes from RainTPL templates. Exception: In tpl/tagcloud.html, the display size of each tag is computed at page generation. Signed-off-by: VirtualTam <virtualtam@flibidi.org>
* CSS: separate rules with a blank lineVirtualTam2014-12-011-2/+102
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.org>
* CSS: expand one-line declarationsVirtualTam2014-12-011-119/+480
| | | | | | | Signed-off-by: VirtualTam <virtualtam@flibidi.org> Conflicts: inc/shaarli.css
* CSS: unify coding style - spaces, brackets, keywordsVirtualTam2014-12-011-230/+223
| | | | | | | | | | | | | | | | | | | Spaces: - before an opening bracket - before a closing bracket - between a keyword and its value(s) - between comma-separated selectors Signed-off-by: VirtualTam <virtualtam@flibidi.org> Conflicts: inc/shaarli.css Conflicts: inc/shaarli.css Conflicts: inc/shaarli.css
* CSS: replace tabs by spaces, remove trailing whitespaces and empty linesVirtualTam2014-12-011-215/+206
| | | | | | | Signed-off-by: VirtualTam <virtualtam@flibidi.org> Conflicts: inc/shaarli.css
* Added a link to the visible URL in the link listFlorian Eula2014-11-211-23/+27
| | | | | Corrected CSS to prevent a line from showing underneath Fixes https://github.com/shaarli/Shaarli/issues/53
* Add Archive.org integrationQwerty2014-11-051-4/+5
| | | | * adds an "archive" link next to permalinks, linking to the last version of the page on archive.org
* update qr.min.js to 1.1.3 from https://github.com/neocotic/qr.js, update COPYINGnodiscc2014-09-051-9/+5
| | | | * fixes https://github.com/shaarli/Shaarli/issues/7
* Fix grammar, punctuation, spelling, trailing whitepaces and newlines; Fix ↵nodiscc2014-08-191-5/+5
| | | | | | | typo in css Based on respencer's work at https://github.com/respencer/Shaarli/ Closes https://github.com/sebsauvage/Shaarli/pull/103
* Update shaarli.csstimo van neerden2014-02-141-1/+1
| | | Added word-wrap: break-word; to body, so that that text is well wrapped, and do not permit horizontal scroll-bars (on mobile, with responsive design).
* Corrected overlapping tagsSébastien SAUVAGE2013-12-041-1/+1
|
* Removed jQuery from almost all pagesSebastien SAUVAGE2013-09-251-108/+0
| | | | | | | | jQuery has been removed from all pages, except those who really require it (like autocomplete in link edition). Immediate gain: All pages weight 286 kb LESS ! \o/ Highlighting in search results has also been temporarly removed (and will be re-implemented).
* Changed QR-Code CSS (selector and attributes)Sébastien SAUVAGE2013-09-251-2/+3
|
* Added javascript QR-Code librarySébastien SAUVAGE2013-09-251-0/+9
|
* Highlight search results (issue #4)David Sferruzza2013-03-102-0/+110
| | | | Uses http://bartaz.github.com/sandbox.js/jquery.highlight.html
* Edit/delete button on the left-side of links.Sébastien SAUVAGE2013-02-271-3/+20
| | | | https://github.com/sebsauvage/Shaarli/issues/5
* Initial commit (version 0.0.40 beta)v0.0.40betaSébastien SAUVAGE2013-02-266-0/+1540