Subversion Repositories wimsdev

Rev

Rev 10560 | Rev 13171 | 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. .breadcrumbs .menuitem>a, .breadcrumbs .menuitem>.text_item{
  17.   background-size: contain;
  18.   background-repeat: no-repeat;
  19.   min-height: 1em;
  20.   padding: 0 0 0 1.5em;
  21. }
  22. .breadcrumb_root a{
  23.   background-image: none;
  24. }
  25.  
  26.  
  27.  
  28. /*Foundation 5 style*/
  29. .breadcrumbs {
  30.   border-style: solid;
  31.   border-width: 1px;
  32.   /*display: block;*/
  33.   /*list-style: none;*/
  34.   /*margin-left: 0;*/
  35.   /*overflow: hidden;*/
  36.   padding: 0.5rem 0.77778rem 0.5rem;
  37.   background-color: #f4f4f4;
  38.   border-color: gainsboro;
  39.   /*border-radius: 3px;*/
  40. }
  41.  
  42.  
  43. /* Foundation 6 */
  44.  
  45. .breadcrumbs {
  46.   list-style:none;
  47.   /*margin:0 0 1rem;*/
  48. }
  49.  
  50. .breadcrumbs::before,.breadcrumbs::after {
  51.   content:' ';
  52.   display:table;
  53. }
  54.  
  55. .breadcrumbs::after {
  56.   clear:both;
  57. }
  58.  
  59. .breadcrumbs li {
  60.   float:left;
  61.   color:#0a0a0a;
  62.   font-size:.6875rem;
  63.   cursor:default;
  64.   text-transform:uppercase;
  65.   /*font-variant:small-caps;*/
  66. }
  67.  
  68. .breadcrumbs li:not(:last-child)::after {
  69.   color:#cacaca;
  70.   content:"/";
  71.   position:relative;
  72.   top:1px;
  73.   opacity:1;
  74.   margin:0 .75em;
  75. }
  76.  
  77. .breadcrumbs>li>a {
  78.   color:#2ba6cb;
  79.   text-decoration:none;
  80. }
  81.  
  82. .breadcrumbs a:hover {
  83.   text-decoration:underline;
  84. }
  85.  
  86. .breadcrumbs .disabled {
  87.   color:#cacaca;
  88.   cursor:not-allowed;
  89. }
  90.