Projet

Général

Profil

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

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

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

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