Skip to content

Commit

Permalink
Initial YiiBooster commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Ramirez committed Sep 21, 2012
1 parent f9d6e51 commit f316e88
Show file tree
Hide file tree
Showing 118 changed files with 42,281 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,46 @@
# cache directories
Thumbs.db
*.DS_Store
*.empty

#phpstorm project files
.idea

#netbeans project files
nbproject

#zend studio project files
.buildpath
.project
.settings

# sass cache files
*.sass-cache

# mac deployment helpers
switch
#index

# runtime and cache directories
/backend/www/assets
/backend/runtime

/frontend/www/assets
/frontend/runtime

/console/runtime

# configuration files created locally by post deployment script or by a developer
/backend/config/*-env.php
/backend/config/*-local.php

/frontend/config/*-env.php
/frontend/config/*-local.php

/common/config/*-env.php
/common/config/*-local.php

/console/config/*-env.php
/console/config/*-local.php


60 changes: 59 additions & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,62 @@
YiiBooster YiiBooster
========== ==========


YiiBooster YiiBooster is a collection of widgets and utilities that will easy the task of developing Yii applications with the beauty of [Twitter Bootstrap](http://twitter.github.com/bootstrap/). It is developed over the excellent job of [Christoffer Niska](https://twitter.com/Crisu83): ***[Yii-Bootstrap](http://www.cniska.net/yii-bootstrap/)***.

We included his library into our own Yii project startup library, [YiiBoilerplate](http://github.com/clevertech/yiiboilerplate), and started improving it in order to satisfy some of our customers' project requirements. The end result was a highly complete library, full of great widgets and plugins that not only allow developers to use Bootstrap with Yii but to solve programming challenges with easy.

To get started, checkout [http://yii-booster.clevertech.biz](http://yii-booster.clevertech.biz)!

###Quick Start
Clone the repo, `git clone git://github.com/clevertech/yiibooster.git`, or [download the latest release](https://github.com/clevertech/YiiBooster/zipball/master).

###Widgets

The YiiBooster library includes:

* Buttons
* Buttons Groups
* Buttons DropDowns
* Navigational Tabs, Pills and Lists
* Navigation Toolbars
* Labels
* Badges
* Page headers and hero units
* Thumbnails
* Alerts
* Progress Bars
* Modals
* Dropdowns
* Tooltips
* Popovers
* Accordion
* Carousel
* Typeahead
* WYSIWYG HTML Editors
* Boxes
* Google Charts
* HighCharts
* JSON Grid
* JSON Button Column
* JSON Data Column
* JSON Pager
* Exenteded Grid
* Extended Summary
* Inline Column Edition
* Grid/Chart Switcher
* Image Column
* Picker Column
* Total Sum Column

###Bug tracker
If you find any bugs, please create an issue at [https://github.com/clevertech/YiiBooster/issues](https://github.com/clevertech/YiiBooster/issues)

###License
[![License](http://i.creativecommons.org/l/by-sa/3.0/88x31.png)](http://creativecommons.org/licenses/by-sa/3.0/)
This work is licensed under a [Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/)

====

> [![Clevertech](http://clevertech.biz/images/slir/w54-h36-c54:36/images/site/index/home/clevertech-logo.png)](http://www.clevertech.biz)
well-built beautifully designed web applications
[www.clevertech.biz](http://www.clevertech.biz)
167 changes: 167 additions & 0 deletions assets/css/bootstrap-box.css
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,167 @@
.bootstrap-widget {

position: relative;
clear: both;

width: auto;

margin-bottom: 2em;

/*overflow: hidden;*/
}

.bootstrap-widget-header {

position: relative;

height: 40px;
/*line-height: 40px;*/

background: #E9E9E9;
background: -moz-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FAFAFA), color-stop(100%, #E9E9E9)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* IE10+ */
background: linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#FAFAFA', endColorstr = '#E9E9E9');
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";

border: 1px solid #D5D5D5;

-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;

-webkit-background-clip: padding-box;
}
.bootstrap-widget-header .bootstrap-toolbar
{
margin: 3px 2px;
}
.bootstrap-widget-header .bootstrap-toolbar ul.dropdown-menu i
{
margin-left: -18px;
margin-right: 1px;
}
.bootstrap-widget-header h3 {

position: relative;
top: 2px;
left: 10px;

display: inline-block;
margin-right: 3em;

font-size: 14px;
font-weight: 800;
color: #555;
line-height: 18px;

text-shadow: 1px 1px 2px rgba(255, 255, 255, .5);
}

.bootstrap-widget-header [class^="icon-"], .bootstrap-widget-header [class*=" icon-"] {

display: inline-block;
margin-left: 13px;
margin-right: -2px;

font-size: 16px;
color: #555;
vertical-align: middle;

}

.bootstrap-widget-content {
padding: 20px 15px 15px;

background: #FFF;

border: 1px solid #D5D5D5;

-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}

.bootstrap-widget-header+.bootstrap-widget-content {
border-top: none;

-webkit-border-top-left-radius: 0;
-webkit-border-top-right-radius: 0;
-moz-border-radius-topleft: 0;
-moz-border-radius-topright: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}

.bootstrap-widget-nopad .bootstrap-widget-content {
padding: 0;
}

/* Widget Content Clearfix */
.bootstrap-widget-content:before,
.bootstrap-widget-content:after {
content: "";
display: table;
}

.bootstrap-widget-content:after {
clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.bootstrap-widget-content {
zoom: 1;
}

/* Widget Table */

.bootstrap-widget-table .bootstrap-widget-content {
padding: 0;
}

.bootstrap-widget-table .table {
margin-bottom: 0;

border: none;
}

.bootstrap-widget-table .table tr td:first-child {
border-left: none;
}

.bootstrap-widget-table .table tr th:first-child {
border-left: none;
}

/* Widget Plain */
.bootstrap-widget-plain {

background: transparent;

border: none;
}

.bootstrap-widget-plain .widget-content {
padding: 0;

background: transparent;

border: none;
}

/* Widget Box */
.bootstrap-widget-box {

}

.bootstrap-widget-box .bootstrap-widget-content {
background: #E3E3E3;
background: #FFF;
}

Loading

0 comments on commit f316e88

Please sign in to comment.