Skip to content

Upgrade documentation with BS3 #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 12 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions css/custom-theme/jquery-ui-1.10.3.custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
*
*
*
* To view and modify this theme, visit http://jqueryui.com/themeroller/
*/
Expand Down Expand Up @@ -1023,7 +1023,7 @@
.ui-button-primary:hover,
.ui-button-success:hover,
.ui-button-info:hover,
.ui-button-danger:hover,
.ui-button-danger:hover,
.ui-button-warning:hover,
.ui-button-inverse:hover{
color: #ffffff;
Expand Down Expand Up @@ -1173,7 +1173,7 @@ input.ui-button {
button.ui-button::-moz-focus-inner {
border: 0;
padding: 0;
}
}


/*
Expand Down Expand Up @@ -1211,7 +1211,7 @@ button.ui-button::-moz-focus-inner {
line-height: 0;
}

li.ui-menu-item {
li.ui-menu-item {
/* This fixes the IE10 issue (jQuery UI Issue #8844)*/
list-style-type: none;
}
Expand Down Expand Up @@ -1414,7 +1414,9 @@ button.ui-button::-moz-focus-inner {
outline: medium none;
/*top: 10%;
width: 560px;*/
z-index: 1050;

/* juristr: fixes multiple modal ui-dialogs, otherwise it doesn't work */
/*z-index: 1050;*/
}
.ui-dialog .ui-dialog-titlebar {
/*padding: .4em 1em;*/
Expand Down Expand Up @@ -1479,7 +1481,7 @@ button.ui-button::-moz-focus-inner {
padding: 1px;
filter:alpha(opacity=90);
-moz-opacity: 0.90;
opacity: 0.90;
opacity: 0.90;
}

.ui-dialog .ui-dialog-content {
Expand Down Expand Up @@ -1535,7 +1537,7 @@ button.ui-button::-moz-focus-inner {
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd); /* Safari 5.1+, Chrome 10+ */
background-image: -moz-linear-gradient(top, #049cdb, #0064cd); /* Firefox 3.6 */
background-image: -o-linear-gradient(top, #049cdb, #0064cd); /* Opera 11.10+ */
background-image: linear-gradient(top, #049cdb, #0064cd); /* CSS3 Compliant */
background-image: linear-gradient(to bottom, #049cdb, #0064cd); /* CSS3 Compliant */
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0); /* IE8 */
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
border-color: #0064cd #0064cd #003f81;
Expand Down
56 changes: 28 additions & 28 deletions less/jq-ui-bootstrap/button.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,70 +9,70 @@
*/
.ui-button {
display: inline-block;
.ie7-inline-block();
.ui-ie7-inline-block();
padding: 5px 14px 6px;
margin-bottom: 0; // For input.btn
margin-right: 4px; // For input.btn
font-size: @baseFontSize;
font-size: @ui-font-size-base;
line-height: normal;
*line-height: normal;
text-align: center;
vertical-align: middle;
cursor: pointer;
.buttonBackground(@btnBackground, @btnBackgroundHighlight, @grayDark, "0 1px 1px rgba(255,255,255,.75)");
border: 1px solid @btnBorder;
.ui-buttonBackground(@ui-btn-default-bg, @ui-btn-default-bg-highlight, @ui-gray-dark, "0 1px 1px rgba(255,255,255,.75)");
border: 1px solid @ui-btn-default-border;
*border: 0; // Remove the border to prevent IE7's black border on input:focus
border-bottom-color: darken(@btnBorder, 10%);
.ie7-restore-left-whitespace(); // Give IE7 some love
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
border-bottom-color: darken(@ui-btn-default-border, 10%);
.ui-ie7-restore-left-whitespace(); // Give IE7 some love
.ui-box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");

&.ui-state-hover, &.ui-state-focus{
border-color: rgba(82, 168, 236, 0.8);
.box-shadow(~"inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6)" );
.ui-box-shadow(~"inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6)" );
}


}

.ui-btn-large{
.btn-large;
.ui-btn-lg();
}
.ui-btn-mini{
.btn-mini;
.ui-btn-xs();
}
.ui-btn-small{
.btn-small;
.ui-btn-sm();
}

.ui-button-primary {
.ui_setup_button( @white, @btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
.ui-setup-button( @ui-white, @ui-btn-primary-bg, @ui-btn-primary-bg-highlight);
}

.ui-button-success{
.ui_setup_button( @white, @btnSuccessBackground,@btnSuccessBackgroundHighlight);
.ui-setup-button( @ui-white, @ui-btn-success-bg, @ui-btn-success-bg-highlight);
}

.ui-button-error{
.ui_setup_button( @white, @btnDangerBackground, @btnDangerBackgroundHighlight);
.ui-setup-button( @ui-white, @ui-btn-danger-bg, @ui-btn-danger-bg-highlight);
}

.ui-button-danger{
.ui_setup_button( @white, @btnDangerBackground, @btnDangerBackgroundHighlight);
.ui-setup-button( @ui-white, @ui-btn-danger-bg, @ui-btn-danger-bg-highlight);
}

.ui-button-warning{
.ui_setup_button( @white, @btnWarningBackground, @btnWarningBackgroundHighlight);
.ui-setup-button( @ui-white, @ui-btn-warning-bg, @ui-btn-warning-bg-highlight);
}

.ui-button-inverse{
.ui_setup_button( @white, @btnInverseBackground, @btnInverseBackgroundHighlight);
// correct the text color for extremely dark inverses
&:hover, &:focus, &:active, &.active, &.disabled, &[disabled] {
color: @grayLight;
}
.ui-setup-button( @ui-white, @ui-btn-inverse-bg, @ui-btn-inverse-bg-highlight);
// correct the text color for extremely dark inverses
&:hover, &:focus, &:active, &.active, &.disabled, &[disabled] {
color: @ui-gray-light;
}
}
.ui-button-info{
.ui_setup_button( @white, @btnInfoBackground, @btnInfoBackgroundHighlight);
.ui-setup-button( @ui-white, @ui-btn-info-bg, @ui-btn-info-bg-highlight);
}


Expand Down Expand Up @@ -154,21 +154,21 @@ button.ui-button-icons-only { width: 3.7em; }
.ui-buttonset {
margin-right: 7px;
.ui-state-active {
color: @white;
#gradient > .vertical ( @btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
color: @ui-white;
#ui-gradient > .vertical ( @ui-btn-primary-bg, @ui-btn-primary-bg-highlight);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
&.ui-state-hover{
background-color: @btnPrimaryBackgroundHighlight;
*background-color: darken(@btnPrimaryBackgroundHighlight, 5%);
background-color: @ui-btn-primary-bg-highlight;
*background-color: darken(@ui-btn-primary-bg-highlight, 5%);
}
}
.ui-button {
margin-left: 0;
margin-right: -.4em;
&.ui-state-focus{
background-color: @btnBackground;
*background-color: darken(@btnBackgroundHighlight, 5%);
background-color: @ui-btn-default-bg;
*background-color: darken(@ui-btn-default-bg-highlight, 5%);
background-position: 0 0;
}
}
Expand Down
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy