vertical-tabs.css
Same filename in this branch
Same filename in other branches
- 9 core/misc/vertical-tabs.css
- 9 core/themes/olivero/css/components/vertical-tabs.css
- 9 core/themes/stable9/css/core/vertical-tabs.css
- 9 core/themes/seven/css/components/vertical-tabs.css
- 9 core/themes/claro/css/components/vertical-tabs.css
- 9 core/themes/stable/css/core/vertical-tabs.css
- 8.9.x core/misc/vertical-tabs.css
- 8.9.x core/themes/seven/css/components/vertical-tabs.css
- 8.9.x core/themes/claro/css/components/vertical-tabs.css
- 8.9.x core/themes/stable/css/core/vertical-tabs.css
- 10 core/misc/vertical-tabs.css
- 10 core/themes/olivero/css/components/vertical-tabs.css
- 10 core/themes/stable9/css/core/vertical-tabs.css
- 10 core/themes/claro/css/components/vertical-tabs.css
- 11.x core/misc/vertical-tabs.css
- 11.x core/themes/olivero/css/components/vertical-tabs.css
- 11.x core/themes/stable9/css/core/vertical-tabs.css
- 11.x core/themes/claro/css/components/vertical-tabs.css
/** * Override of misc/vertical-tabs.css. */ div.vertical-tabs { background: #fff url(images/fc.png) repeat-y 0 0; /* LTR */ border: 1px solid #ccc; margin: 10px 0; position: relative; } fieldset.vertical-tabs-pane { border: 0; padding: 0; margin: 0; } div.vertical-tabs .vertical-tabs-list { border-bottom: 1px solid #ccc; float: left; /* LTR */ font-size: 1em; line-height: 1; margin: 0 -100% -1px 0; /* LTR */ padding: 0; width: 240px; } div.vertical-tabs ul li.vertical-tab-button { list-style: none; list-style-image: none; margin: 0; } div.vertical-tabs ul li.vertical-tab-button a { border-top: 1px solid #ccc; display: block; padding: 10px; } div.vertical-tabs ul li.first a { border-top: 0; } div.vertical-tabs ul li.vertical-tab-button strong { font-size: 0.923em; } div.vertical-tabs ul li.vertical-tab-button .summary { color: #666; display: block; font-size: 0.846em; padding-top: 0.4em; } div.vertical-tabs ul li.vertical-tab-button a:hover, div.vertical-tabs ul li.vertical-tab-button a:focus { background: #d5d5d5; text-decoration: none; outline: 0; } div.vertical-tabs ul li.selected a, div.vertical-tabs ul li.selected a:hover, div.vertical-tabs ul li.selected a:focus, div.vertical-tabs ul li.selected a:active { background: #fff; border-right-color: #fff; /* LTR */ border-top: 1px solid #ccc; } div.vertical-tabs ul li.first.selected a, div.vertical-tabs ul li.first.selected a:hover { border-top: 0; } div.vertical-tabs ul li.selected a:focus strong { text-decoration: underline; } div.vertical-tabs .vertical-tabs-panes { margin: 0 0 0 265px; /* LTR */ padding: 10px 15px 10px 0; /* LTR */ } fieldset.vertical-tabs-pane legend { display: none; } fieldset.vertical-tabs-pane fieldset legend { display: block; } .vertical-tabs-pane .fieldset-wrapper > div:first-child { padding-top: 5px; } /** * Prevent text inputs from overflowing when container is too narrow. "width" is * applied to override hardcoded cols or size attributes and used in conjunction * with "box-sizing" to prevent box model issues from occurring in most browsers. */ .vertical-tabs .form-type-textfield input { width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } * html .vertical-tabs .form-type-textfield, * html .vertical-tabs .form-textarea-wrapper { width: 95%; /* IE6 */ }
File
-
themes/
seven/ vertical-tabs.css
View source
-
- /**
- * Override of misc/vertical-tabs.css.
- */
- div.vertical-tabs {
- background: #fff url(images/fc.png) repeat-y 0 0; /* LTR */
- border: 1px solid #ccc;
- margin: 10px 0;
- position: relative;
- }
- fieldset.vertical-tabs-pane {
- border: 0;
- padding: 0;
- margin: 0;
- }
- div.vertical-tabs .vertical-tabs-list {
- border-bottom: 1px solid #ccc;
- float: left; /* LTR */
- font-size: 1em;
- line-height: 1;
- margin: 0 -100% -1px 0; /* LTR */
- padding: 0;
- width: 240px;
- }
- div.vertical-tabs ul li.vertical-tab-button {
- list-style: none;
- list-style-image: none;
- margin: 0;
- }
- div.vertical-tabs ul li.vertical-tab-button a {
- border-top: 1px solid #ccc;
- display: block;
- padding: 10px;
- }
- div.vertical-tabs ul li.first a {
- border-top: 0;
- }
- div.vertical-tabs ul li.vertical-tab-button strong {
- font-size: 0.923em;
- }
- div.vertical-tabs ul li.vertical-tab-button .summary {
- color: #666;
- display: block;
- font-size: 0.846em;
- padding-top: 0.4em;
- }
- div.vertical-tabs ul li.vertical-tab-button a:hover,
- div.vertical-tabs ul li.vertical-tab-button a:focus {
- background: #d5d5d5;
- text-decoration: none;
- outline: 0;
- }
- div.vertical-tabs ul li.selected a,
- div.vertical-tabs ul li.selected a:hover,
- div.vertical-tabs ul li.selected a:focus,
- div.vertical-tabs ul li.selected a:active {
- background: #fff;
- border-right-color: #fff; /* LTR */
- border-top: 1px solid #ccc;
- }
- div.vertical-tabs ul li.first.selected a,
- div.vertical-tabs ul li.first.selected a:hover {
- border-top: 0;
- }
- div.vertical-tabs ul li.selected a:focus strong {
- text-decoration: underline;
- }
- div.vertical-tabs .vertical-tabs-panes {
- margin: 0 0 0 265px; /* LTR */
- padding: 10px 15px 10px 0; /* LTR */
- }
- fieldset.vertical-tabs-pane legend {
- display: none;
- }
- fieldset.vertical-tabs-pane fieldset legend {
- display: block;
- }
- .vertical-tabs-pane .fieldset-wrapper > div:first-child {
- padding-top: 5px;
- }
-
- /**
- * Prevent text inputs from overflowing when container is too narrow. "width" is
- * applied to override hardcoded cols or size attributes and used in conjunction
- * with "box-sizing" to prevent box model issues from occurring in most browsers.
- */
- .vertical-tabs .form-type-textfield input {
- width: 100%;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- * html .vertical-tabs .form-type-textfield,
- * html .vertical-tabs .form-textarea-wrapper {
- width: 95%; /* IE6 */
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.