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.

49 lines
1.5 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) RTL Horizontal list navigation "Shiny Buttons"
  6. * (de) RTL Horizontale Navigationsliste "Shiny Buttons"
  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. position:relative;
  35. float:right;
  36. /* (en) Left margin of the first button */
  37. /* (de) Abstand des ersten Buttons vom linken Rand */
  38. margin-left: 0; /* Reset LTR */
  39. margin-right: 50px;
  40. }
  41. .hlist ul li {
  42. float: right;
  43. }
  44. }