Author: sevein Date: Tue Apr 17 16:43:14 2012 New Revision: 11459 Log: Style .pager and .pagination, mobile and desktop versions of the pager based in Bootstrap
Modified: branches/2.0/plugins/qtDominionPlugin/css/less/pager.less Modified: branches/2.0/plugins/qtDominionPlugin/css/less/pager.less ============================================================================== --- branches/2.0/plugins/qtDominionPlugin/css/less/pager.less Tue Apr 17 16:41:29 2012 (r11458) +++ branches/2.0/plugins/qtDominionPlugin/css/less/pager.less Tue Apr 17 16:43:14 2012 (r11459) @@ -14,3 +14,57 @@ * You should have received a copy of the GNU General Public License * along with Qubit Toolkit. If not, see <http://www.gnu.org/licenses/>. */ + +// .pager = for quick previous and next links +// ----------------------------------------------------------------------------- + +.pager { + + // .widebtn(); ? + a { + + padding-left: 40px; + padding-right: 40px; + border: 2px solid @white; + .border-radius(5px); + background-color: transparent; + color: @white; + + &:hover { + + background-color: white; + color: @orange; + + } + + } + +} + +// .pagination = for quick previous and next links +// ----------------------------------------------------------------------------- + +.pagination { + + a { + + border: 2px solid @white; + border-left-width: 0; + color: @white; + + &:hover { + + background-color: white; + color: @orange; + + } + + } + + li:first-child a { + + border-left-width: 2px; + + } + +} -- You received this message because you are subscribed to the Google Groups "Qubit Toolkit Commits" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/qubit-commits?hl=en.
