-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: http://svn.foswiki.org/branches/Release01x01@16764 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
- Loading branch information
MichaelDaum
authored and
MichaelDaum
committed
May 30, 2013
1 parent
a3e2062
commit f144b6f
Showing
8 changed files
with
163 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+1.7 KB
JQueryPlugin/pub/System/JQueryPlugin/themes/base/images/animated-overlay.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
79 changes: 79 additions & 0 deletions
79
JQueryPlugin/pub/System/JQueryPlugin/themes/base/jquery.ui.menu.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/*! | ||
* jQuery UI Menu 1.10.3 | ||
* http://jqueryui.com | ||
* | ||
* Copyright 2013 jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://docs.jquery.com/UI/Menu#theming | ||
*/ | ||
.ui-menu { | ||
list-style: none; | ||
padding: 2px; | ||
margin: 0; | ||
display: block; | ||
outline: none; | ||
} | ||
.ui-menu .ui-menu { | ||
margin-top: -3px; | ||
position: absolute; | ||
} | ||
.ui-menu .ui-menu-item { | ||
margin: 0; | ||
padding: 0; | ||
width: 100%; | ||
/* support: IE10, see #8844 */ | ||
list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); | ||
} | ||
.ui-menu .ui-menu-divider { | ||
margin: 5px -2px 5px -2px; | ||
height: 0; | ||
font-size: 0; | ||
line-height: 0; | ||
border-width: 1px 0 0 0; | ||
} | ||
.ui-menu .ui-menu-item a { | ||
text-decoration: none; | ||
display: block; | ||
padding: 2px .4em; | ||
line-height: 1.5; | ||
min-height: 0; /* support: IE7 */ | ||
font-weight: normal; | ||
} | ||
.ui-menu .ui-menu-item a.ui-state-focus, | ||
.ui-menu .ui-menu-item a.ui-state-active { | ||
font-weight: normal; | ||
margin: -1px; | ||
} | ||
|
||
.ui-menu .ui-state-disabled { | ||
font-weight: normal; | ||
margin: .4em 0 .2em; | ||
line-height: 1.5; | ||
} | ||
.ui-menu .ui-state-disabled a { | ||
cursor: default; | ||
} | ||
|
||
/* icon support */ | ||
.ui-menu-icons { | ||
position: relative; | ||
} | ||
.ui-menu-icons .ui-menu-item a { | ||
position: relative; | ||
padding-left: 2em; | ||
} | ||
|
||
/* left-aligned */ | ||
.ui-menu .ui-icon { | ||
position: absolute; | ||
top: .2em; | ||
left: .2em; | ||
} | ||
|
||
/* right-aligned */ | ||
.ui-menu .ui-menu-icon { | ||
position: static; | ||
float: right; | ||
} |
65 changes: 65 additions & 0 deletions
65
JQueryPlugin/pub/System/JQueryPlugin/themes/base/jquery.ui.spinner.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/*! | ||
* jQuery UI Spinner 1.10.3 | ||
* http://jqueryui.com | ||
* | ||
* Copyright 2013 jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://docs.jquery.com/UI/Spinner#theming | ||
*/ | ||
.ui-spinner { | ||
position: relative; | ||
display: inline-block; | ||
overflow: hidden; | ||
padding: 0; | ||
vertical-align: middle; | ||
} | ||
.ui-spinner-input { | ||
border: none; | ||
background: none; | ||
color: inherit; | ||
padding: 0; | ||
margin: .2em 0; | ||
vertical-align: middle; | ||
margin-left: .4em; | ||
margin-right: 22px; | ||
} | ||
.ui-spinner-button { | ||
width: 16px; | ||
height: 50%; | ||
font-size: .5em; | ||
padding: 0; | ||
margin: 0; | ||
text-align: center; | ||
position: absolute; | ||
cursor: default; | ||
display: block; | ||
overflow: hidden; | ||
right: 0; | ||
} | ||
/* more specificity required here to overide default borders */ | ||
.ui-spinner a.ui-spinner-button { | ||
border-top: none; | ||
border-bottom: none; | ||
border-right: none; | ||
} | ||
/* vertical centre icon */ | ||
.ui-spinner .ui-icon { | ||
position: absolute; | ||
margin-top: -8px; | ||
top: 50%; | ||
left: 0; | ||
} | ||
.ui-spinner-up { | ||
top: 0; | ||
} | ||
.ui-spinner-down { | ||
bottom: 0; | ||
} | ||
|
||
/* TR overrides */ | ||
.ui-spinner .ui-icon-triangle-1-s { | ||
/* need to fix icons sprite */ | ||
background-position: -65px -16px; | ||
} |
19 changes: 19 additions & 0 deletions
19
JQueryPlugin/pub/System/JQueryPlugin/themes/base/jquery.ui.tooltip.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/*! | ||
* jQuery UI Tooltip 1.10.3 | ||
* http://jqueryui.com | ||
* | ||
* Copyright 2013 jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
*/ | ||
.ui-tooltip { | ||
padding: 8px; | ||
position: absolute; | ||
z-index: 9999; | ||
max-width: 300px; | ||
-webkit-box-shadow: 0 0 5px #aaa; | ||
box-shadow: 0 0 5px #aaa; | ||
} | ||
body .ui-tooltip { | ||
border-width: 2px; | ||
} |
Binary file added
BIN
+1.7 KB
JQueryPlugin/pub/System/JQueryPlugin/themes/flickr/images/animated-overlay.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.7 KB
JQueryPlugin/pub/System/JQueryPlugin/themes/lightness/images/animated-overlay.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.7 KB
JQueryPlugin/pub/System/JQueryPlugin/themes/redmond/images/animated-overlay.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.7 KB
JQueryPlugin/pub/System/JQueryPlugin/themes/smoothness/images/animated-overlay.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.