Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.4 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) RTL Horizontal list navigation based on "Sliding Door II" from von "A List Apart"
  6. * (de) RTL Horizontale Navigationsliste basierend auf "Sliding Door II" von "A List Apart"
  7. *
  8. * @note: Many thanks to Alexander Hass (http://www.yaml-fuer-drupal.de/) for contribution
  9. *
  10. * @copyright Copyright 2005-2009, Dirk Jesse
  11. * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
  12. * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
  13. * @link http://www.yaml.de
  14. * @package yaml
  15. * @version 3.1
  16. * @revision $Revision: 343 $
  17. * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
  18. */
  19. @media all
  20. {
  21. /**
  22. * (en) Workaround disappearing list elements on hover
  23. * (de) Workaround verhindert das Verschwinden der Listenelemente beim Hovern
  24. *
  25. * @workaround
  26. * @affected IE 5.x/Win, IE6, IE7
  27. * @css-for IE 5.x/Win, IE6, IE7
  28. * @valid yes
  29. */
  30. .hlist * { direction:ltr !important; }
  31. .hlist a, .hlist strong { direction:rtl !important; }
  32. /*------------------------------------------------------------------------------------------------------*/
  33. .hlist ul {
  34. padding: 0 50px 0 0;
  35. }
  36. .hlist li {
  37. float: right;
  38. }
  39. }