contour 1.0.6 → 1.1.0.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +9 -6
- data/README.rdoc +1 -1
- data/app/assets/images/contour/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/app/assets/images/contour/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/app/assets/images/contour/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/app/assets/images/contour/ui-icons_217bc0_256x240.png +0 -0
- data/app/assets/images/contour/ui-icons_d8e7f3_256x240.png +0 -0
- data/app/assets/images/contour/ui-icons_f9bd01_256x240.png +0 -0
- data/app/assets/images/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/twitter-bootstrap/v2.1.0-wip/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/contour.js +15 -13
- data/app/assets/javascripts/contour/global.js.coffee +3 -0
- data/app/assets/javascripts/external/jquery-ui-1.8.22.custom.min.js +93 -0
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/bootstrap.js +247 -152
- data/app/assets/javascripts/twitter-bootstrap/v2.1.0-wip/plugins/bootstrap-affix.js +104 -0
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-alert.js +0 -0
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-button.js +0 -0
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-carousel.js +11 -4
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-collapse.js +3 -2
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-dropdown.js +64 -14
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-modal.js +94 -73
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-popover.js +7 -3
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-scrollspy.js +8 -8
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-tab.js +1 -1
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-tooltip.js +10 -12
- data/app/assets/javascripts/twitter-bootstrap/v2.1.0-wip/plugins/bootstrap-transition.js +60 -0
- data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-typeahead.js +49 -34
- data/app/assets/stylesheets/bootstrap-base-overrides.css +23 -2
- data/app/assets/stylesheets/contour.css +3 -3
- data/app/assets/stylesheets/{jquery-ui-1.8.10.custom.css → jquery-ui-1.8.22.custom.css} +26 -219
- data/app/assets/stylesheets/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/bootstrap-responsive.css +528 -272
- data/app/assets/stylesheets/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/bootstrap.css +1304 -720
- data/app/controllers/contour/registrations_controller.rb +1 -1
- data/app/controllers/contour/sessions_controller.rb +1 -5
- data/app/views/contour/layouts/_menu.html.erb +2 -1
- data/app/views/contour/layouts/application.html.erb +25 -39
- data/contour.gemspec +1 -1
- data/lib/contour/version.rb +3 -3
- data/test/dummy/app/models/user.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -2096
- metadata +27 -25
- data/app/assets/images/twitter-bootstrap/v2.0.4/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/external/jquery-ui-1.8.10.custom.min.js +0 -782
data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-popover.js
RENAMED
@@ -26,7 +26,7 @@
|
|
26
26
|
/* POPOVER PUBLIC CLASS DEFINITION
|
27
27
|
* =============================== */
|
28
28
|
|
29
|
-
var Popover = function (
|
29
|
+
var Popover = function (element, options) {
|
30
30
|
this.init('popover', element, options)
|
31
31
|
}
|
32
32
|
|
@@ -43,8 +43,8 @@
|
|
43
43
|
, title = this.getTitle()
|
44
44
|
, content = this.getContent()
|
45
45
|
|
46
|
-
$tip.find('.popover-title')[this.
|
47
|
-
$tip.find('.popover-content > *')[this.
|
46
|
+
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
47
|
+
$tip.find('.popover-content > *')[this.options.html ? 'html' : 'text'](content)
|
48
48
|
|
49
49
|
$tip.removeClass('fade top bottom left right in')
|
50
50
|
}
|
@@ -71,6 +71,10 @@
|
|
71
71
|
return this.$tip
|
72
72
|
}
|
73
73
|
|
74
|
+
, destroy: function () {
|
75
|
+
this.hide().$element.off('.' + this.type).removeData(this.type)
|
76
|
+
}
|
77
|
+
|
74
78
|
})
|
75
79
|
|
76
80
|
|
data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-scrollspy.js
RENAMED
@@ -23,15 +23,15 @@
|
|
23
23
|
"use strict"; // jshint ;_;
|
24
24
|
|
25
25
|
|
26
|
-
|
27
|
-
|
26
|
+
/* SCROLLSPY CLASS DEFINITION
|
27
|
+
* ========================== */
|
28
28
|
|
29
|
-
function ScrollSpy(
|
29
|
+
function ScrollSpy(element, options) {
|
30
30
|
var process = $.proxy(this.process, this)
|
31
31
|
, $element = $(element).is('body') ? $(window) : $(element)
|
32
32
|
, href
|
33
33
|
this.options = $.extend({}, $.fn.scrollspy.defaults, options)
|
34
|
-
this.$scrollElement = $element.on('scroll.scroll.data-api', process)
|
34
|
+
this.$scrollElement = $element.on('scroll.scroll-spy.data-api', process)
|
35
35
|
this.selector = (this.options.target
|
36
36
|
|| ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
37
37
|
|| '') + ' .nav li > a'
|
@@ -58,7 +58,7 @@
|
|
58
58
|
, href = $el.data('target') || $el.attr('href')
|
59
59
|
, $href = /^#\w/.test(href) && $(href)
|
60
60
|
return ( $href
|
61
|
-
&& href.length
|
61
|
+
&& $href.length
|
62
62
|
&& [[ $href.position().top, href ]] ) || null
|
63
63
|
})
|
64
64
|
.sort(function (a, b) { return a[0] - b[0] })
|
@@ -108,7 +108,7 @@
|
|
108
108
|
.parent('li')
|
109
109
|
.addClass('active')
|
110
110
|
|
111
|
-
if (active.parent('.dropdown-menu')) {
|
111
|
+
if (active.parent('.dropdown-menu').length) {
|
112
112
|
active = active.closest('li.dropdown').addClass('active')
|
113
113
|
}
|
114
114
|
|
@@ -121,7 +121,7 @@
|
|
121
121
|
/* SCROLLSPY PLUGIN DEFINITION
|
122
122
|
* =========================== */
|
123
123
|
|
124
|
-
$.fn.scrollspy = function (
|
124
|
+
$.fn.scrollspy = function (option) {
|
125
125
|
return this.each(function () {
|
126
126
|
var $this = $(this)
|
127
127
|
, data = $this.data('scrollspy')
|
@@ -141,7 +141,7 @@
|
|
141
141
|
/* SCROLLSPY DATA-API
|
142
142
|
* ================== */
|
143
143
|
|
144
|
-
$(function () {
|
144
|
+
$(window).on('load', function () {
|
145
145
|
$('[data-spy="scroll"]').each(function () {
|
146
146
|
var $spy = $(this)
|
147
147
|
$spy.scrollspy($spy.data())
|
data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-tooltip.js
RENAMED
@@ -47,8 +47,8 @@
|
|
47
47
|
if (this.options.trigger != 'manual') {
|
48
48
|
eventIn = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'
|
49
49
|
eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'
|
50
|
-
this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this))
|
51
|
-
this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this))
|
50
|
+
this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
|
51
|
+
this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
|
52
52
|
}
|
53
53
|
|
54
54
|
this.options.selector ?
|
@@ -148,20 +148,11 @@
|
|
148
148
|
}
|
149
149
|
}
|
150
150
|
|
151
|
-
, isHTML: function(text) {
|
152
|
-
// html string detection logic adapted from jQuery
|
153
|
-
return typeof text != 'string'
|
154
|
-
|| ( text.charAt(0) === "<"
|
155
|
-
&& text.charAt( text.length - 1 ) === ">"
|
156
|
-
&& text.length >= 3
|
157
|
-
) || /^(?:[^<]*<[\w\W]+>[^>]*$)/.exec(text)
|
158
|
-
}
|
159
|
-
|
160
151
|
, setContent: function () {
|
161
152
|
var $tip = this.tip()
|
162
153
|
, title = this.getTitle()
|
163
154
|
|
164
|
-
$tip.find('.tooltip-inner')[this.
|
155
|
+
$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
|
165
156
|
$tip.removeClass('fade in top bottom left right')
|
166
157
|
}
|
167
158
|
|
@@ -185,6 +176,8 @@
|
|
185
176
|
$.support.transition && this.$tip.hasClass('fade') ?
|
186
177
|
removeWithAnimation() :
|
187
178
|
$tip.remove()
|
179
|
+
|
180
|
+
return this
|
188
181
|
}
|
189
182
|
|
190
183
|
, fixTitle: function () {
|
@@ -244,6 +237,10 @@
|
|
244
237
|
this[this.tip().hasClass('in') ? 'hide' : 'show']()
|
245
238
|
}
|
246
239
|
|
240
|
+
, destroy: function () {
|
241
|
+
this.hide().$element.off('.' + this.type).removeData(this.type)
|
242
|
+
}
|
243
|
+
|
247
244
|
}
|
248
245
|
|
249
246
|
|
@@ -270,6 +267,7 @@
|
|
270
267
|
, trigger: 'hover'
|
271
268
|
, title: ''
|
272
269
|
, delay: 0
|
270
|
+
, html: true
|
273
271
|
}
|
274
272
|
|
275
273
|
}(window.jQuery);
|
@@ -0,0 +1,60 @@
|
|
1
|
+
/* ===================================================
|
2
|
+
* bootstrap-transition.js v2.0.4
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
4
|
+
* ===================================================
|
5
|
+
* Copyright 2012 Twitter, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
* ========================================================== */
|
19
|
+
|
20
|
+
|
21
|
+
!function ($) {
|
22
|
+
|
23
|
+
$(function () {
|
24
|
+
|
25
|
+
"use strict"; // jshint ;_;
|
26
|
+
|
27
|
+
|
28
|
+
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
|
29
|
+
* ======================================================= */
|
30
|
+
|
31
|
+
$.support.transition = (function () {
|
32
|
+
|
33
|
+
var transitionEnd = (function () {
|
34
|
+
|
35
|
+
var el = document.createElement('bootstrap')
|
36
|
+
, transEndEventNames = {
|
37
|
+
'WebkitTransition' : 'webkitTransitionEnd'
|
38
|
+
, 'MozTransition' : 'transitionend'
|
39
|
+
, 'OTransition' : 'oTransitionEnd otransitionend'
|
40
|
+
, 'transition' : 'transitionend'
|
41
|
+
}
|
42
|
+
, name
|
43
|
+
|
44
|
+
for (name in transEndEventNames){
|
45
|
+
if (el.style[name] !== undefined) {
|
46
|
+
return transEndEventNames[name]
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
}())
|
51
|
+
|
52
|
+
return transitionEnd && {
|
53
|
+
end: transitionEnd
|
54
|
+
}
|
55
|
+
|
56
|
+
})()
|
57
|
+
|
58
|
+
})
|
59
|
+
|
60
|
+
}(window.jQuery);
|
data/app/assets/javascripts/twitter-bootstrap/{v2.0.4 → v2.1.0-wip}/plugins/bootstrap-typeahead.js
RENAMED
@@ -77,17 +77,23 @@
|
|
77
77
|
}
|
78
78
|
|
79
79
|
, lookup: function (event) {
|
80
|
-
var
|
81
|
-
, items
|
82
|
-
, q
|
80
|
+
var items
|
83
81
|
|
84
82
|
this.query = this.$element.val()
|
85
83
|
|
86
|
-
if (!this.query) {
|
84
|
+
if (!this.query || this.query.length < this.options.minLength) {
|
87
85
|
return this.shown ? this.hide() : this
|
88
86
|
}
|
89
87
|
|
90
|
-
items = $.
|
88
|
+
items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
|
89
|
+
|
90
|
+
return items ? this.process(items) : this
|
91
|
+
}
|
92
|
+
|
93
|
+
, process: function (items) {
|
94
|
+
var that = this
|
95
|
+
|
96
|
+
items = $.grep(items, function (item) {
|
91
97
|
return that.matcher(item)
|
92
98
|
})
|
93
99
|
|
@@ -169,7 +175,7 @@
|
|
169
175
|
.on('keyup', $.proxy(this.keyup, this))
|
170
176
|
|
171
177
|
if ($.browser.webkit || $.browser.msie) {
|
172
|
-
this.$element.on('keydown', $.proxy(this.
|
178
|
+
this.$element.on('keydown', $.proxy(this.keydown, this))
|
173
179
|
}
|
174
180
|
|
175
181
|
this.$menu
|
@@ -177,6 +183,40 @@
|
|
177
183
|
.on('mouseenter', 'li', $.proxy(this.mouseenter, this))
|
178
184
|
}
|
179
185
|
|
186
|
+
, move: function (e) {
|
187
|
+
if (!this.shown) return
|
188
|
+
|
189
|
+
switch(e.keyCode) {
|
190
|
+
case 9: // tab
|
191
|
+
case 13: // enter
|
192
|
+
case 27: // escape
|
193
|
+
e.preventDefault()
|
194
|
+
break
|
195
|
+
|
196
|
+
case 38: // up arrow
|
197
|
+
e.preventDefault()
|
198
|
+
this.prev()
|
199
|
+
break
|
200
|
+
|
201
|
+
case 40: // down arrow
|
202
|
+
e.preventDefault()
|
203
|
+
this.next()
|
204
|
+
break
|
205
|
+
}
|
206
|
+
|
207
|
+
e.stopPropagation()
|
208
|
+
}
|
209
|
+
|
210
|
+
, keydown: function (e) {
|
211
|
+
this.suppressKeyPressRepeat = !~$.inArray(e.keyCode, [40,38,9,13,27])
|
212
|
+
this.move(e)
|
213
|
+
}
|
214
|
+
|
215
|
+
, keypress: function (e) {
|
216
|
+
if (this.suppressKeyPressRepeat) return
|
217
|
+
this.move(e)
|
218
|
+
}
|
219
|
+
|
180
220
|
, keyup: function (e) {
|
181
221
|
switch(e.keyCode) {
|
182
222
|
case 40: // down arrow
|
@@ -202,32 +242,6 @@
|
|
202
242
|
e.preventDefault()
|
203
243
|
}
|
204
244
|
|
205
|
-
, keypress: function (e) {
|
206
|
-
if (!this.shown) return
|
207
|
-
|
208
|
-
switch(e.keyCode) {
|
209
|
-
case 9: // tab
|
210
|
-
case 13: // enter
|
211
|
-
case 27: // escape
|
212
|
-
e.preventDefault()
|
213
|
-
break
|
214
|
-
|
215
|
-
case 38: // up arrow
|
216
|
-
if (e.type != 'keydown') break
|
217
|
-
e.preventDefault()
|
218
|
-
this.prev()
|
219
|
-
break
|
220
|
-
|
221
|
-
case 40: // down arrow
|
222
|
-
if (e.type != 'keydown') break
|
223
|
-
e.preventDefault()
|
224
|
-
this.next()
|
225
|
-
break
|
226
|
-
}
|
227
|
-
|
228
|
-
e.stopPropagation()
|
229
|
-
}
|
230
|
-
|
231
245
|
, blur: function (e) {
|
232
246
|
var that = this
|
233
247
|
setTimeout(function () { that.hide() }, 150)
|
@@ -265,12 +279,13 @@
|
|
265
279
|
, items: 8
|
266
280
|
, menu: '<ul class="typeahead dropdown-menu"></ul>'
|
267
281
|
, item: '<li><a href="#"></a></li>'
|
282
|
+
, minLength: 1
|
268
283
|
}
|
269
284
|
|
270
285
|
$.fn.typeahead.Constructor = Typeahead
|
271
286
|
|
272
287
|
|
273
|
-
/*
|
288
|
+
/* TYPEAHEAD DATA-API
|
274
289
|
* ================== */
|
275
290
|
|
276
291
|
$(function () {
|
@@ -282,4 +297,4 @@
|
|
282
297
|
})
|
283
298
|
})
|
284
299
|
|
285
|
-
}(window.jQuery);
|
300
|
+
}(window.jQuery);
|
@@ -4,12 +4,12 @@
|
|
4
4
|
/* Line 1773 */
|
5
5
|
[class^="icon-"],
|
6
6
|
[class*=" icon-"] {
|
7
|
-
background-image: url(twitter-bootstrap/v2.0
|
7
|
+
background-image: url(twitter-bootstrap/v2.1.0-wip/glyphicons-halflings.png);
|
8
8
|
}
|
9
9
|
|
10
10
|
/* Line 1791 */
|
11
11
|
.icon-white {
|
12
|
-
background-image: url(twitter-bootstrap/v2.0
|
12
|
+
background-image: url(twitter-bootstrap/v2.1.0-wip/glyphicons-halflings-white.png);
|
13
13
|
}
|
14
14
|
|
15
15
|
/* Line 3615 */
|
@@ -17,6 +17,27 @@
|
|
17
17
|
color: #ffffff;
|
18
18
|
}
|
19
19
|
|
20
|
+
/*.navbar-inverse .navbar-inner {
|
21
|
+
background-color: #006dcc;
|
22
|
+
*background-color: #0044cc;
|
23
|
+
|
24
|
+
background-image: -moz-linear-gradient(top, #0088CC, #0044CC);
|
25
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088CC), to(#0044CC));
|
26
|
+
background-image: -webkit-linear-gradient(top, #0088CC, #0044CC);
|
27
|
+
background-image: -o-linear-gradient(top, #0088CC, #0044CC);
|
28
|
+
background-image: linear-gradient(to bottom, #0088CC, #0044CC);
|
29
|
+
background-repeat: repeat-x;
|
30
|
+
|
31
|
+
border-color: #0044cc #0044cc #002a80;
|
32
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
33
|
+
|
34
|
+
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
|
35
|
+
}*/
|
36
|
+
|
37
|
+
/* Line 4433 */
|
38
|
+
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
|
39
|
+
background-color: transparent;
|
40
|
+
}
|
20
41
|
|
21
42
|
body { padding-top: 60px; }
|
22
43
|
|
@@ -3,13 +3,13 @@
|
|
3
3
|
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
4
4
|
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
5
5
|
*= require_self
|
6
|
-
*= require twitter-bootstrap/v2.0
|
6
|
+
*= require twitter-bootstrap/v2.1.0-wip/bootstrap
|
7
7
|
*= require bootstrap-base-overrides
|
8
8
|
*= require twitter-bootstrap/bootstrap-scroll-modal
|
9
|
-
*= require twitter-bootstrap/v2.0
|
9
|
+
*= require twitter-bootstrap/v2.1.0-wip/bootstrap-responsive
|
10
10
|
*= require twitter-bootstrap/bootstrap-subnav
|
11
11
|
*= require bootstrap-responsive-overrides
|
12
|
-
*= require jquery-ui-1.8.
|
12
|
+
*= require jquery-ui-1.8.22.custom
|
13
13
|
*= require jquery.qtip
|
14
14
|
*= require contour/about
|
15
15
|
*= require contour/authentication
|
@@ -1,7 +1,7 @@
|
|
1
|
-
|
2
|
-
* jQuery UI CSS Framework 1.8.
|
1
|
+
/*!
|
2
|
+
* jQuery UI CSS Framework 1.8.22
|
3
3
|
*
|
4
|
-
* Copyright
|
4
|
+
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
5
5
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
6
6
|
* http://jquery.org/license
|
7
7
|
*
|
@@ -13,12 +13,9 @@
|
|
13
13
|
.ui-helper-hidden { display: none; }
|
14
14
|
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
15
15
|
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
16
|
-
.ui-helper-clearfix:after { content: "
|
17
|
-
.ui-helper-clearfix {
|
18
|
-
|
19
|
-
* html .ui-helper-clearfix { height:1%; }
|
20
|
-
.ui-helper-clearfix { display:block; }
|
21
|
-
/* end clearfix */
|
16
|
+
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
|
17
|
+
.ui-helper-clearfix:after { clear: both; }
|
18
|
+
.ui-helper-clearfix { zoom: 1; }
|
22
19
|
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
23
20
|
|
24
21
|
|
@@ -41,10 +38,10 @@
|
|
41
38
|
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
42
39
|
|
43
40
|
|
44
|
-
|
45
|
-
* jQuery UI CSS Framework 1.8.
|
41
|
+
/*!
|
42
|
+
* jQuery UI CSS Framework 1.8.22
|
46
43
|
*
|
47
|
-
* Copyright
|
44
|
+
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
48
45
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
49
46
|
* http://jquery.org/license
|
50
47
|
*
|
@@ -280,29 +277,24 @@
|
|
280
277
|
----------------------------------*/
|
281
278
|
|
282
279
|
/* Corner radius */
|
283
|
-
.ui-corner-tl { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-left-radius: 5px; }
|
284
|
-
.ui-corner-tr { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; border-top-right-radius: 5px; }
|
285
|
-
.ui-corner-bl { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
|
286
|
-
.ui-corner-br { -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }
|
287
|
-
.ui-corner-top { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-left-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; border-top-right-radius: 5px; }
|
288
|
-
.ui-corner-bottom { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }
|
289
|
-
.ui-corner-right { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; border-top-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }
|
290
|
-
.ui-corner-left { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
|
291
|
-
.ui-corner-all { -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
|
280
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; -khtml-border-top-left-radius: 5px; border-top-left-radius: 5px; }
|
281
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -khtml-border-top-right-radius: 5px; border-top-right-radius: 5px; }
|
282
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
|
283
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }
|
292
284
|
|
293
285
|
/* Overlays */
|
294
286
|
.ui-widget-overlay { background: #aaaaaa url(contour/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
|
295
|
-
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(contour/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
|
296
|
-
* jQuery UI Resizable 1.8.
|
287
|
+
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(contour/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*!
|
288
|
+
* jQuery UI Resizable 1.8.22
|
297
289
|
*
|
298
|
-
* Copyright
|
290
|
+
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
299
291
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
300
292
|
* http://jquery.org/license
|
301
293
|
*
|
302
294
|
* http://docs.jquery.com/UI/Resizable#theming
|
303
295
|
*/
|
304
296
|
.ui-resizable { position: relative;}
|
305
|
-
.ui-resizable-handle { position: absolute;font-size: 0.1px;
|
297
|
+
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
|
306
298
|
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
307
299
|
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
308
300
|
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
@@ -311,193 +303,20 @@
|
|
311
303
|
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
312
304
|
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
313
305
|
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
314
|
-
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
|
315
|
-
* jQuery UI Selectable 1.8.
|
306
|
+
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*!
|
307
|
+
* jQuery UI Selectable 1.8.22
|
316
308
|
*
|
317
|
-
* Copyright
|
309
|
+
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
318
310
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
319
311
|
* http://jquery.org/license
|
320
312
|
*
|
321
313
|
* http://docs.jquery.com/UI/Selectable#theming
|
322
314
|
*/
|
323
315
|
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
324
|
-
|
325
|
-
* jQuery UI
|
316
|
+
/*!
|
317
|
+
* jQuery UI Datepicker 1.8.22
|
326
318
|
*
|
327
|
-
* Copyright
|
328
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
329
|
-
* http://jquery.org/license
|
330
|
-
*
|
331
|
-
* http://docs.jquery.com/UI/Accordion#theming
|
332
|
-
*/
|
333
|
-
/* IE/Win - Fix animation bug - #4615 */
|
334
|
-
.ui-accordion { width: 100%; }
|
335
|
-
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
|
336
|
-
.ui-accordion .ui-accordion-li-fix { display: inline; }
|
337
|
-
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
|
338
|
-
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
|
339
|
-
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
|
340
|
-
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
341
|
-
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
|
342
|
-
.ui-accordion .ui-accordion-content-active { display: block; }
|
343
|
-
/*
|
344
|
-
* jQuery UI Autocomplete 1.8.10
|
345
|
-
*
|
346
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
347
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
348
|
-
* http://jquery.org/license
|
349
|
-
*
|
350
|
-
* http://docs.jquery.com/UI/Autocomplete#theming
|
351
|
-
*/
|
352
|
-
.ui-autocomplete { position: absolute; cursor: default; }
|
353
|
-
|
354
|
-
/* workarounds */
|
355
|
-
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
356
|
-
|
357
|
-
/*
|
358
|
-
* jQuery UI Menu 1.8.10
|
359
|
-
*
|
360
|
-
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
361
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
362
|
-
* http://jquery.org/license
|
363
|
-
*
|
364
|
-
* http://docs.jquery.com/UI/Menu#theming
|
365
|
-
*/
|
366
|
-
.ui-menu {
|
367
|
-
list-style:none;
|
368
|
-
padding: 2px;
|
369
|
-
margin: 0;
|
370
|
-
display:block;
|
371
|
-
float: left;
|
372
|
-
}
|
373
|
-
.ui-menu .ui-menu {
|
374
|
-
margin-top: -3px;
|
375
|
-
}
|
376
|
-
.ui-menu .ui-menu-item {
|
377
|
-
margin:0;
|
378
|
-
padding: 0;
|
379
|
-
zoom: 1;
|
380
|
-
float: left;
|
381
|
-
clear: left;
|
382
|
-
width: 100%;
|
383
|
-
text-align: left;
|
384
|
-
}
|
385
|
-
.ui-menu .ui-menu-item a {
|
386
|
-
text-decoration:none;
|
387
|
-
display:block;
|
388
|
-
padding:.2em .4em;
|
389
|
-
line-height:1.5;
|
390
|
-
zoom:1;
|
391
|
-
}
|
392
|
-
.ui-menu .ui-menu-item a.ui-state-hover,
|
393
|
-
.ui-menu .ui-menu-item a.ui-state-active {
|
394
|
-
font-weight: normal;
|
395
|
-
margin: -1px;
|
396
|
-
}
|
397
|
-
/*
|
398
|
-
* jQuery UI Button 1.8.10
|
399
|
-
*
|
400
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
401
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
402
|
-
* http://jquery.org/license
|
403
|
-
*
|
404
|
-
* http://docs.jquery.com/UI/Button#theming
|
405
|
-
*/
|
406
|
-
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
|
407
|
-
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
|
408
|
-
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
|
409
|
-
.ui-button-icons-only { width: 3.4em; }
|
410
|
-
button.ui-button-icons-only { width: 3.7em; }
|
411
|
-
|
412
|
-
/*button text element */
|
413
|
-
.ui-button .ui-button-text { display: block; line-height: 1.4; }
|
414
|
-
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
|
415
|
-
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
|
416
|
-
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
|
417
|
-
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
|
418
|
-
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
|
419
|
-
/* no icon support for input elements, provide padding by default */
|
420
|
-
input.ui-button { padding: .4em 1em; }
|
421
|
-
|
422
|
-
/*button icon element(s) */
|
423
|
-
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
|
424
|
-
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
|
425
|
-
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
|
426
|
-
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
427
|
-
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
428
|
-
|
429
|
-
/*button sets*/
|
430
|
-
.ui-buttonset { margin-right: 7px; }
|
431
|
-
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
|
432
|
-
|
433
|
-
/* workarounds */
|
434
|
-
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
|
435
|
-
/*
|
436
|
-
* jQuery UI Dialog 1.8.10
|
437
|
-
*
|
438
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
439
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
440
|
-
* http://jquery.org/license
|
441
|
-
*
|
442
|
-
* http://docs.jquery.com/UI/Dialog#theming
|
443
|
-
*/
|
444
|
-
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
|
445
|
-
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
|
446
|
-
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
|
447
|
-
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
|
448
|
-
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
449
|
-
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
|
450
|
-
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
451
|
-
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
452
|
-
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
|
453
|
-
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
|
454
|
-
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
455
|
-
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
456
|
-
/*
|
457
|
-
* jQuery UI Slider 1.8.10
|
458
|
-
*
|
459
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
460
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
461
|
-
* http://jquery.org/license
|
462
|
-
*
|
463
|
-
* http://docs.jquery.com/UI/Slider#theming
|
464
|
-
*/
|
465
|
-
.ui-slider { position: relative; text-align: left; }
|
466
|
-
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
467
|
-
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
|
468
|
-
|
469
|
-
.ui-slider-horizontal { height: .8em; }
|
470
|
-
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
471
|
-
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
472
|
-
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
473
|
-
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
474
|
-
|
475
|
-
.ui-slider-vertical { width: .8em; height: 100px; }
|
476
|
-
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
477
|
-
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
478
|
-
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
479
|
-
.ui-slider-vertical .ui-slider-range-max { top: 0; }/*
|
480
|
-
* jQuery UI Tabs 1.8.10
|
481
|
-
*
|
482
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
483
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
484
|
-
* http://jquery.org/license
|
485
|
-
*
|
486
|
-
* http://docs.jquery.com/UI/Tabs#theming
|
487
|
-
*/
|
488
|
-
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
489
|
-
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
|
490
|
-
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
|
491
|
-
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
|
492
|
-
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
|
493
|
-
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
|
494
|
-
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
495
|
-
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
|
496
|
-
.ui-tabs .ui-tabs-hide { display: none !important; }
|
497
|
-
/*
|
498
|
-
* jQuery UI Datepicker 1.8.10
|
499
|
-
*
|
500
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
319
|
+
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
501
320
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
502
321
|
* http://jquery.org/license
|
503
322
|
*
|
@@ -515,7 +334,7 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
515
334
|
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
516
335
|
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
517
336
|
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
518
|
-
.ui-datepicker select.ui-datepicker-month,
|
337
|
+
.ui-datepicker select.ui-datepicker-month,
|
519
338
|
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
520
339
|
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
521
340
|
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
@@ -535,7 +354,7 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
535
354
|
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
536
355
|
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
537
356
|
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
538
|
-
.ui-datepicker-row-break { clear:both; width:100%; }
|
357
|
+
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
|
539
358
|
|
540
359
|
/* RTL support */
|
541
360
|
.ui-datepicker-rtl { direction: rtl; }
|
@@ -552,8 +371,6 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
552
371
|
|
553
372
|
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
554
373
|
.ui-datepicker-cover {
|
555
|
-
display: none; /*sorry for IE5*/
|
556
|
-
display/**/: block; /*sorry for IE5*/
|
557
374
|
position: absolute; /*must have*/
|
558
375
|
z-index: -1; /*must have*/
|
559
376
|
filter: mask(); /*must have*/
|
@@ -561,14 +378,4 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad
|
|
561
378
|
left: -4px; /*must have*/
|
562
379
|
width: 200px; /*must have*/
|
563
380
|
height: 200px; /*must have*/
|
564
|
-
}
|
565
|
-
* jQuery UI Progressbar 1.8.10
|
566
|
-
*
|
567
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
568
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
569
|
-
* http://jquery.org/license
|
570
|
-
*
|
571
|
-
* http://docs.jquery.com/UI/Progressbar#theming
|
572
|
-
*/
|
573
|
-
.ui-progressbar { height:2em; text-align: left; }
|
574
|
-
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
|
381
|
+
}
|