horizontal_accordion.css in Panels Accordion 6
/**
* Copy-paste-modified from horizontal_accordionv1.1 original.
* Hasd to remove text-indent & weird colors, change class names, etc.
*/
.haccordion {
float:left;
width:100%;
height:100%;
}
.haccordion .header, .haccordion .panel-pane {
float: right;
height:100%;
}
.haccordion .header {
background-color:grey;
cursor:pointer;
width:30px; /* Set my width! */
margin:0 !important; /* If you want to set margin, make an inner-wrapper */
padding:0 !important; /* If you want to set padding, make an inner-wrapper */
}
.haccordion .header a {
display:block;
width:100%;
height:100%;
}
/* TODO: This block would be for making text go vertical.. /*
/*.haccordion_1 .header span {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}*/
.haccordion .panel-pane {
overflow: auto;
width:0px;
background-color:white;
}
.ui-accordion-content{ zoom: 1; }
File
horizontal_accordion/horizontal_accordion.css
View source
- /**
- * Copy-paste-modified from horizontal_accordionv1.1 original.
- * Hasd to remove text-indent & weird colors, change class names, etc.
- */
- .haccordion {
- float:left;
- width:100%;
- height:100%;
- }
- .haccordion .header, .haccordion .panel-pane {
- float: right;
- height:100%;
- }
-
- .haccordion .header {
- background-color:grey;
- cursor:pointer;
- width:30px; /* Set my width! */
- margin:0 !important; /* If you want to set margin, make an inner-wrapper */
- padding:0 !important; /* If you want to set padding, make an inner-wrapper */
- }
-
- .haccordion .header a {
- display:block;
- width:100%;
- height:100%;
- }
- /* TODO: This block would be for making text go vertical.. /*
- /*.haccordion_1 .header span {
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
- }*/
- .haccordion .panel-pane {
- overflow: auto;
- width:0px;
- background-color:white;
- }
-
- .ui-accordion-content{ zoom: 1; }