1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-17 05:44:26 +03:00
ifhub.club/application/frontend/skin/developer/components/tabs/css/tabs.css
2014-10-13 23:25:31 +07:00

53 lines
837 B
CSS

/**
* Tabs
*
* @license GNU General Public License, version 2
* @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
* @author Denis Shakhov <denis.shakhov@gmail.com>
*/
.tab-list {
margin-bottom: 20px;
}
/* Tab */
.tab {
float: left;
padding: 7px 12px;
margin-right: 2px;
background: #eee;
cursor: pointer;
border-radius: 2px;
}
.tab.active {
background: #2891d3;
color: #fff;
}
/* Content */
.tab-pane {
display: none;
}
.tab-pane.loading {
min-height: 150px;
background-position: 50% 45px;
}
/**
* Align left
*
* @modifier align-left
*/
.tabs--align-left .tab-list {
float: left;
width: 150px;
padding-top: 15px;
}
.tabs--align-left .tab {
float: none;
}
.tabs--align-left .tabs-panes {
overflow: hidden;
margin-left: 160px;
}