Subversion Repositories wimsdev

Rev

Rev 12590 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /** Default breadcrumbs ("fil d'ariane") style (from Foundation for Sites 6.2.1 Breadcrumbs) */
  2.  
  3. /* WIMS CUSTOM styles */
  4.  
  5. .breadcrumbs {
  6.   margin:0;
  7.   /* prevents a too large display when dyslexic mode is activated*/
  8.   line-height: 1em;
  9. }
  10.  
  11. .breadcrumbs .menuitem{
  12.   padding: 0;
  13.   /*min-height: 1em;*/
  14. }
  15.  
  16. #wimstopbox .breadcrumbs>.menuitem>a,
  17. .breadcrumbs>.menuitem>a,
  18. .breadcrumbs .menuitem>.text_item{
  19.   background-size: contain;
  20.   background-repeat: no-repeat;
  21.   line-height: 1em;
  22.   /*padding: 0 0 0 1.5em;*/
  23. }
  24. .breadcrumb_root a{
  25.   background-image: none;
  26. }
  27.  
  28.  
  29.  
  30. /*Foundation 5 style*/
  31. .breadcrumbs {
  32.   border-style: solid;
  33.   border-width: 1px;
  34.   /*display: block;*/
  35.   /*list-style: none;*/
  36.   /*margin-left: 0;*/
  37.   /*overflow: hidden;*/
  38.   padding: 0.5rem 0.77778rem 0.5rem;
  39.   background-color: #f4f4f4;
  40.   border-color: gainsboro;
  41.   /*border-radius: 3px;*/
  42. }
  43.  
  44.  
  45. /* Foundation 6 */
  46.  
  47. .breadcrumbs {
  48.   list-style:none;
  49.   /*margin:0 0 1rem;*/
  50. }
  51.  
  52. .breadcrumbs::before,.breadcrumbs::after {
  53.   content:' ';
  54.   display:table;
  55. }
  56.  
  57. .breadcrumbs::after {
  58.   clear:both;
  59. }
  60.  
  61. .breadcrumbs li {
  62.   float:left;
  63.   color:#0a0a0a;
  64.   font-size:.6875rem;
  65.   cursor:default;
  66.   text-transform:uppercase;
  67.   /*font-variant:small-caps;*/
  68. }
  69.  
  70. .breadcrumbs li:not(:last-child)::after {
  71.   color:#cacaca;
  72.   content:"/";
  73.   position:relative;
  74.   top:1px;
  75.   opacity:1;
  76.   margin:0 .75em;
  77. }
  78.  
  79. .breadcrumbs>li>a {
  80.   color:#2ba6cb;
  81.   text-decoration:none;
  82. }
  83.  
  84. .breadcrumbs a:hover {
  85.   text-decoration:underline;
  86. }
  87.  
  88. .breadcrumbs .disabled {
  89.   color:#cacaca;
  90.   cursor:not-allowed;
  91. }
  92.