Projet

Général

Profil

Paste
Télécharger (2,54 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / adminimal_theme / css / vertical-tabs.css @ eefc2ac0

1

    
2
/**
3
 * Override of misc/vertical-tabs.css.
4
 */
5
div.vertical-tabs {
6
  background: #fff url(images/fc.png) repeat-y 0 0; /* LTR */
7
  border: 1px solid #ccc;
8
  margin: 10px 0;
9
  position: relative;
10
}
11
div.vertical-tabs .field-group-tab fieldset {
12
  border: solid 1px #ddd;
13
  border-top: 3px solid #0074BD;
14
  padding: 12px;
15
  margin: 18px 0;
16
}
17
div.vertical-tabs .vertical-tabs-panes legend {
18
  display: inherit !important;
19
}
20
div.vertical-tabs .vertical-tabs-list {
21
  border-bottom: 1px solid #ccc;
22
  float: left; /* LTR */
23
  font-size: 1em;
24
  line-height: 1;
25
  margin: 0 -100% -1px 0; /* LTR */
26
  padding: 0;
27
  width: 240px;
28
}
29
div.vertical-tabs ul li.vertical-tab-button {
30
  list-style: none;
31
  list-style-image: none;
32
  margin: 0;
33
}
34
div.vertical-tabs ul li.vertical-tab-button a {
35
  border-top: 1px solid #ccc;
36
  display: block;
37
  padding: 10px;
38
}
39
div.vertical-tabs ul li.first a {
40
  border-top: 0;
41
}
42

    
43
div.vertical-tabs .vertical-tabs-pane ul li.first a {
44
  border-top: 2px solid #0074BD;
45
}
46

    
47
div.vertical-tabs ul li.vertical-tab-button strong {
48
  font-size: 0.923em;
49
}
50
div.vertical-tabs ul li.vertical-tab-button .summary {
51
  color: #666;
52
  display: block;
53
  font-size: 0.846em;
54
  padding-top: 0.4em;
55
}
56
div.vertical-tabs ul li.vertical-tab-button a:hover,
57
div.vertical-tabs ul li.vertical-tab-button a:focus {
58
  background: #d5d5d5;
59
  text-decoration: none;
60
  outline: 0;
61
}
62
div.vertical-tabs ul li.selected a,
63
div.vertical-tabs ul li.selected a:hover,
64
div.vertical-tabs ul li.selected a:focus,
65
div.vertical-tabs ul li.selected a:active {
66
  background: #fff;
67
  border-right-color: #fff; /* LTR */
68
  border-top: 1px solid #ccc;
69
}
70
div.vertical-tabs ul li.first.selected a,
71
div.vertical-tabs ul li.first.selected a:hover {
72
  border-top: 0;
73
}
74
div.vertical-tabs ul li.selected a:focus strong {
75
  text-decoration: underline;
76
}
77
div.vertical-tabs .vertical-tabs-panes {
78
  margin: 0 0 0 265px; /* LTR */
79
  padding: 10px 15px 10px 0; /* LTR */
80
}
81
div.vertical-tabs fieldset.vertical-tabs-pane > legend {
82
  /*display: none;*/
83
}
84
.vertical-tabs-pane .fieldset-wrapper > div:first-child {
85
  padding-top: 5px;
86
}
87

    
88
/**
89
 * Prevent text inputs from overflowing when container is too narrow. "width" is
90
 * applied to override hardcoded cols or size attributes and used in conjunction
91
 * with "box-sizing" to prevent box model issues from occurring in most browsers.
92
*/
93
.vertical-tabs .form-type-textfield input {
94
  -moz-box-sizing: content-box;
95
  -webkit-box-sizing: content-box;
96
  box-sizing: content-box;
97
}
98
* html .vertical-tabs .form-type-textfield,
99
* html .vertical-tabs .form-textarea-wrapper {
100
  width: 95%; /* IE6 */
101
}