Subversion Repositories wimsdev

Rev

Rev 13171 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10127 obado 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;
10560 obado 7
  /* prevents a too large display when dyslexic mode is activated*/
8
  line-height: 1em;
10127 obado 9
}
10
 
10422 obado 11
.breadcrumbs .menuitem{
12
  padding: 0;
12590 obado 13
  /*min-height: 1em;*/
10422 obado 14
}
15
 
13171 obado 16
#wimstopbox .breadcrumbs>.menuitem>a,
17
.breadcrumbs>.menuitem>a,
18
.breadcrumbs .menuitem>.text_item{
10144 obado 19
  background-size: contain;
10161 obado 20
  background-repeat: no-repeat;
12590 obado 21
  line-height: 1em;
22
  /*padding: 0 0 0 1.5em;*/
10144 obado 23
}
10161 obado 24
.breadcrumb_root a{
25
  background-image: none;
26
}
10144 obado 27
 
28
 
10422 obado 29
 
10127 obado 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 {
15722 obado 62
  float: left;
63
  color: #0a0a0a;
64
  font-size: .6875rem;
65
  cursor: default;
66
  text-transform: uppercase;
10560 obado 67
  /*font-variant:small-caps;*/
10127 obado 68
}
69
 
70
.breadcrumbs li:not(:last-child)::after {
15722 obado 71
  color: #cacaca;
72
  content: "/";
73
  position: relative;
74
  top: 1px;
75
  opacity: 1;
76
  margin: 0 .75em;
10127 obado 77
}
78
 
10130 obado 79
.breadcrumbs>li>a {
15722 obado 80
  color: #2ba6cb;
81
  text-decoration: none;
10127 obado 82
}
83
 
84
.breadcrumbs a:hover {
15722 obado 85
  text-decoration: underline;
10127 obado 86
}
87
 
88
.breadcrumbs .disabled {
15722 obado 89
  color: #cacaca;
90
  cursor: not-allowed;
10127 obado 91
}