pulse-meter 0.2.11 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. data/.rbenv-version +1 -1
  2. data/README.md +32 -16
  3. data/Rakefile +29 -10
  4. data/examples/basic.ru +1 -1
  5. data/examples/full/server.ru +1 -1
  6. data/examples/minimal/server.ru +1 -1
  7. data/lib/pulse-meter.rb +1 -0
  8. data/lib/pulse-meter/observer.rb +117 -0
  9. data/lib/pulse-meter/sensor.rb +1 -0
  10. data/lib/pulse-meter/sensor/timeline.rb +3 -2
  11. data/lib/pulse-meter/sensor/timelined/multi_percentile.rb +43 -0
  12. data/lib/pulse-meter/version.rb +1 -1
  13. data/lib/pulse-meter/visualize/app.rb +28 -12
  14. data/lib/pulse-meter/visualize/coffee/application.coffee +40 -0
  15. data/lib/pulse-meter/visualize/coffee/collections/page_info_list.coffee +17 -0
  16. data/lib/pulse-meter/visualize/coffee/collections/sensor_info_list.coffee +4 -0
  17. data/lib/pulse-meter/visualize/coffee/collections/widget_list.coffee +14 -0
  18. data/lib/pulse-meter/visualize/coffee/extensions.coffee +26 -0
  19. data/lib/pulse-meter/visualize/coffee/models/dinamic_widget.coffee +34 -0
  20. data/lib/pulse-meter/visualize/coffee/models/page_info.coffee +2 -0
  21. data/lib/pulse-meter/visualize/coffee/models/sensor_info.coffee +2 -0
  22. data/lib/pulse-meter/visualize/coffee/models/widget.coffee +54 -0
  23. data/lib/pulse-meter/visualize/coffee/presenters/area.coffee +2 -0
  24. data/lib/pulse-meter/visualize/coffee/presenters/gauge.coffee +11 -0
  25. data/lib/pulse-meter/visualize/coffee/presenters/line.coffee +2 -0
  26. data/lib/pulse-meter/visualize/coffee/presenters/pie.coffee +20 -0
  27. data/lib/pulse-meter/visualize/coffee/presenters/series.coffee +44 -0
  28. data/lib/pulse-meter/visualize/coffee/presenters/table.coffee +10 -0
  29. data/lib/pulse-meter/visualize/coffee/presenters/timeline.coffee +13 -0
  30. data/lib/pulse-meter/visualize/coffee/presenters/widget.coffee +65 -0
  31. data/lib/pulse-meter/visualize/coffee/router.coffee +21 -0
  32. data/lib/pulse-meter/visualize/coffee/views/dynamic_chart.coffee +91 -0
  33. data/lib/pulse-meter/visualize/coffee/views/dynamic_widget.coffee +58 -0
  34. data/lib/pulse-meter/visualize/coffee/views/page_title.coffee +17 -0
  35. data/lib/pulse-meter/visualize/coffee/views/page_titles.coffee +15 -0
  36. data/lib/pulse-meter/visualize/coffee/views/sensor_info_list.coffee +19 -0
  37. data/lib/pulse-meter/visualize/coffee/views/widget.coffee +99 -0
  38. data/lib/pulse-meter/visualize/coffee/views/widget_chart.coffee +13 -0
  39. data/lib/pulse-meter/visualize/coffee/views/widget_list.coffee +15 -0
  40. data/lib/pulse-meter/visualize/layout.rb +4 -4
  41. data/lib/pulse-meter/visualize/public/css/application.css +13 -4
  42. data/lib/pulse-meter/visualize/public/css/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  43. data/lib/pulse-meter/visualize/public/css/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  44. data/lib/pulse-meter/visualize/public/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  45. data/lib/pulse-meter/visualize/public/css/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  46. data/lib/pulse-meter/visualize/public/css/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  47. data/lib/pulse-meter/visualize/public/css/images/ui-bg_glass_75_ffffff_1x400.png +0 -0
  48. data/lib/pulse-meter/visualize/public/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  49. data/lib/pulse-meter/visualize/public/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
  50. data/lib/pulse-meter/visualize/public/css/images/ui-icons_222222_256x240.png +0 -0
  51. data/lib/pulse-meter/visualize/public/css/images/ui-icons_2e83ff_256x240.png +0 -0
  52. data/lib/pulse-meter/visualize/public/css/images/ui-icons_454545_256x240.png +0 -0
  53. data/lib/pulse-meter/visualize/public/css/images/ui-icons_888888_256x240.png +0 -0
  54. data/lib/pulse-meter/visualize/public/css/images/ui-icons_cd0a0a_256x240.png +0 -0
  55. data/lib/pulse-meter/visualize/public/css/images/ui-icons_f6cf3b_256x240.png +0 -0
  56. data/lib/pulse-meter/visualize/public/css/jquery-ui-1.8.16.bootstrap.css +1320 -0
  57. data/lib/pulse-meter/visualize/public/js/application.js +900 -691
  58. data/lib/pulse-meter/visualize/public/js/jquery-ui-1.8.16.bootstrap.min.js +791 -0
  59. data/lib/pulse-meter/visualize/public/js/jquery-ui-1.8.23.custom.min.js +21 -0
  60. data/lib/pulse-meter/visualize/public/js/jquery-ui-timepicker-addon.js +1687 -0
  61. data/lib/pulse-meter/visualize/sensor.rb +2 -2
  62. data/lib/pulse-meter/visualize/views/main.haml +2 -3
  63. data/lib/pulse-meter/visualize/views/sensors.haml +14 -1
  64. data/lib/pulse-meter/visualize/views/widgets/area.haml +46 -24
  65. data/lib/pulse-meter/visualize/views/widgets/line.haml +46 -23
  66. data/lib/pulse-meter/visualize/views/widgets/table.haml +37 -15
  67. data/lib/pulse-meter/visualize/widgets/timeline.rb +20 -5
  68. data/pulse-meter.gemspec +4 -0
  69. data/spec/pulse_meter/observer_spec.rb +252 -0
  70. data/spec/pulse_meter/sensor/timelined/multi_percentile_spec.rb +21 -0
  71. data/spec/pulse_meter/visualize/sensor_spec.rb +5 -5
  72. data/spec/pulse_meter/visualize/widgets/area_spec.rb +1 -74
  73. data/spec/pulse_meter/visualize/widgets/line_spec.rb +1 -73
  74. data/spec/pulse_meter/visualize/widgets/table_spec.rb +1 -73
  75. data/spec/shared_examples/timeline_sensor.rb +10 -0
  76. data/spec/shared_examples/widget.rb +97 -0
  77. data/spec/spec_helper.rb +1 -0
  78. metadata +120 -5
  79. data/lib/pulse-meter/visualize/public/js/application.coffee +0 -616
@@ -0,0 +1,58 @@
1
+ DynamicWidgetView = Backbone.View.extend {
2
+ tagName: 'div'
3
+
4
+ initialize: (options) ->
5
+ @pageInfos = options['pageInfos']
6
+ @sensorInfo = new SensorInfoList
7
+
8
+ @sensorListView = new SensorInfoListView(@sensorInfo)
9
+ @chartView = new DynamicChartView {pageInfos: @pageInfos}
10
+
11
+ @$el.html(@template()())
12
+
13
+ @$el.find('#sensor-list-area').append(@sensorListView.el)
14
+
15
+ @chartView.render()
16
+ @$el.find('#dynamic-plotarea').append(@chartView.el)
17
+
18
+ events: {
19
+ "click #sensor-controls #refresh": 'refresh'
20
+ "click #sensor-controls #draw": 'drawChart'
21
+ }
22
+
23
+ template: ->
24
+ _.template($("#dynamic-widget").html())
25
+
26
+ errorTemplate: -> _.template($("#dynamic-widget-error").html())
27
+
28
+ error: (error)->
29
+ @$el.find('#errors').append(@errorTemplate()(error: error))
30
+
31
+ refresh: ->
32
+ @sensorInfo.fetch()
33
+
34
+ intervalsEqual: (sensors) ->
35
+ interval = sensors[0].get('interval')
36
+ badIntervals = _.filter(sensors, (s) ->
37
+ s.get('interval') != interval
38
+ )
39
+ badIntervals.length == 0
40
+
41
+ drawChart: ->
42
+ selectedSensors = @sensorListView.selectedSensors()
43
+ return unless selectedSensors.length > 0
44
+
45
+ unless @intervalsEqual(selectedSensors)
46
+ @error('Selected sensors have different intervals')
47
+ return
48
+
49
+ type = @$el.find('#chart-type').val()
50
+ @chartView.draw(selectedSensors, type)
51
+
52
+ render: (container) ->
53
+ container.empty()
54
+ container.append(@$el)
55
+ @sensorInfo.fetch()
56
+ @chartView.update()
57
+
58
+ }
@@ -0,0 +1,17 @@
1
+ PageTitleView = Backbone.View.extend {
2
+ tagName: 'li'
3
+
4
+ template: _.template('<a href="#/pages/<%= id %>"><%= title %></a>')
5
+
6
+ initialize: ->
7
+ @model.bind 'change', @render, this
8
+ @model.bind 'destroy', @remove, this
9
+
10
+ render: ->
11
+ @$el.html @template(@model.toJSON())
12
+ if @model.get('selected')
13
+ @$el.addClass('active')
14
+ else
15
+ @$el.removeClass('active')
16
+ }
17
+
@@ -0,0 +1,15 @@
1
+ PageTitlesView = Backbone.View.extend {
2
+ initialize: (@pageInfos) ->
3
+ @pageInfos.bind 'reset', @render, this
4
+
5
+ addOne: (pageInfo) ->
6
+ view = new PageTitleView {
7
+ model: pageInfo
8
+ }
9
+ view.render()
10
+ $('#page-titles').append(view.el)
11
+
12
+ render: ->
13
+ $('#page-titles').empty()
14
+ @pageInfos.each(@addOne)
15
+ }
@@ -0,0 +1,19 @@
1
+ SensorInfoListView = Backbone.View.extend {
2
+ tagName: 'div'
3
+
4
+ template: ->
5
+ _.template($("#sensor-list").html())
6
+
7
+ initialize: (sensorInfo) ->
8
+ @sensorInfo = sensorInfo
9
+ @sensorInfo.bind 'reset', @render, this
10
+
11
+ render: ->
12
+ @$el.html @template()({sensors: @sensorInfo.toJSON()})
13
+
14
+ selectedSensors: ->
15
+ checked = _.filter @$el.find('.sensor-box'), (el) -> $(el).is(':checked')
16
+ ids = {}
17
+ _.each checked, (box) -> ids[box.id] = true
18
+ selected = @sensorInfo.filter (sensor) -> ids[sensor.id]
19
+ }
@@ -0,0 +1,99 @@
1
+ WidgetView = Backbone.View.extend {
2
+ tagName: 'div'
3
+
4
+ template: (args) ->
5
+ _.template($(".widget-template[data-widget-type=\"#{@model.get('type')}\"]").html())(args)
6
+
7
+ initialize: (options) ->
8
+ @pageInfos = options['pageInfos']
9
+ @model.bind('destroy', @remove, this)
10
+ @model.bind('redraw', @updateChart, this)
11
+
12
+ events: {
13
+ "click #refresh": 'refresh'
14
+ "click #need-refresh": 'setRefresh'
15
+ "click #extend-timespan": 'extendTimespan'
16
+ "click #reset-timespan": 'resetTimespan'
17
+ "change #start-time input": 'maybeEnableStopTime'
18
+ "click #set-interval": 'setTimelineInterval'
19
+ }
20
+
21
+ refresh: ->
22
+ @model.forceUpdate()
23
+
24
+ setRefresh: ->
25
+ needRefresh = @$el.find('#need-refresh').is(":checked")
26
+ @model.setRefresh(needRefresh)
27
+ true
28
+
29
+ extendTimespan: ->
30
+ select = @$el.find("#extend-timespan-val")
31
+ val = select.first().val()
32
+ @model.increaseTimespan(parseInt(val))
33
+
34
+ setTimelineInterval: ->
35
+ start = @unixtimeFromDatepicker("#start-time input")
36
+ end = @unixtimeFromDatepicker("#end-time input")
37
+ @model.setStartTime(start)
38
+ @model.setEndTime(end)
39
+
40
+ maybeEnableStopTime: ->
41
+ date = @dateFromDatepicker("#start-time input")
42
+ disabled = if date then false else true
43
+ @$el.find("#end-time input").prop("disabled", disabled)
44
+
45
+ resetTimespan: ->
46
+ @model.resetTimespan()
47
+
48
+ renderChart: ->
49
+ @chartView.render()
50
+
51
+ updateChart: ->
52
+ @chartView.updateData(@cutoffMin(), @cutoffMax())
53
+
54
+ setIds: ->
55
+ @$el.find('#configure-button').prop('href', "#configure-#{@model.id}")
56
+ @$el.find('#configure').attr('id', "configure-#{@model.id}")
57
+ @$el.find('#start-time input').attr('id', "start-time-#{@model.id}")
58
+ @$el.find('#end-time input').attr('id', "end-time-#{@model.id}")
59
+
60
+ render: ->
61
+ @$el.html @template(@model.toJSON())
62
+ @setIds()
63
+ @chartView = new WidgetChartView {
64
+ pageInfos: @pageInfos
65
+ model: @model
66
+ }
67
+ @$el.find("#plotarea").append(@chartView.el)
68
+ @$el.addClass("span#{@model.get('width')}")
69
+ @initDatePickers()
70
+
71
+ initDatePickers: ->
72
+ @$el.find(".datepicker").each (i) ->
73
+ $(this).datetimepicker
74
+ showOtherMonths: true
75
+ selectOtherMonths: true
76
+ @$el.find("#end-time input").prop("disabled", true)
77
+
78
+ cutoffMin: ->
79
+ val = parseFloat(@controlValue('#cutoff-min'))
80
+ if _.isNaN(val) then null else val
81
+
82
+ cutoffMax: ->
83
+ val = parseFloat(@controlValue('#cutoff-max'))
84
+ if _.isNaN(val) then null else val
85
+
86
+ controlValue: (id) ->
87
+ val = @$el.find(id).first().val()
88
+
89
+ dateFromDatepicker: (id) ->
90
+ @$el.find(id).datetimepicker("getDate")
91
+
92
+ unixtimeFromDatepicker: (id) ->
93
+ date = @dateFromDatepicker(id)
94
+ if date
95
+ date.getTime() / 1000
96
+ else
97
+ null
98
+
99
+ }
@@ -0,0 +1,13 @@
1
+ WidgetChartView = Backbone.View.extend {
2
+ tagName: 'div'
3
+
4
+ initialize: (options) ->
5
+ @pageInfos = options['pageInfos']
6
+ @model.bind 'destroy', @remove, this
7
+
8
+ updateData: (min, max) ->
9
+ @presenter.draw(min, max)
10
+
11
+ render: ->
12
+ @presenter = WidgetPresenter.create(@pageInfos, @model, @el)
13
+ }
@@ -0,0 +1,15 @@
1
+ WidgetListView = Backbone.View.extend {
2
+ initialize: (options) ->
3
+ @widgetList = options['widgetList']
4
+ @pageInfos = options['pageInfos']
5
+ @widgetList.bind 'reset', @render, this
6
+
7
+ render: ->
8
+ container = $('#widgets')
9
+ container.empty()
10
+ @widgetList.each (w) =>
11
+ view = new WidgetView { pageInfos: @pageInfos, model: w }
12
+ view.render()
13
+ container.append(view.el)
14
+ view.renderChart()
15
+ }
@@ -57,21 +57,21 @@ module PulseMeter
57
57
  DEFAULT_TIMESPAN_IN_INTERVALS = 50
58
58
 
59
59
  def dynamic_widget(args)
60
- sensor_names = args[:sensors]
60
+ sensor_names = args.delete(:sensors)
61
61
  sensors = sensor_names.map{|n| PulseMeter::Sensor::Base.restore(n)}
62
- timespan = if args[:timespan] && !args[:timespan].empty?
62
+ timespan = if args[:timespan] && args[:timespan] > 0
63
63
  args[:timespan].to_i
64
64
  else
65
65
  sensors.first.interval * DEFAULT_TIMESPAN_IN_INTERVALS
66
66
  end
67
67
 
68
- type = args[:type]
68
+ type = args.delete(:type)
69
69
  widget_dsl_class = constantize("PulseMeter::Visualize::DSL::Widgets::#{type.capitalize}")
70
70
  widget = widget_dsl_class.new('Dynamic Widget')
71
71
  widget.timespan(timespan)
72
72
  sensor_names.each{|n| widget.sensor(n)}
73
73
 
74
- widget.to_data.data(id: 1)
74
+ widget.to_data.data(args.merge(id: 1, timespan: timespan))
75
75
  end
76
76
 
77
77
  end
@@ -1,5 +1,5 @@
1
1
  #main {
2
- margin-top: 30px;
2
+ margin-top: 30px;
3
3
  }
4
4
 
5
5
  #plotarea{
@@ -7,15 +7,23 @@
7
7
  }
8
8
 
9
9
  #chart-controls{
10
- margin-bottom: 50px;
10
+ margin-bottom: 50px;
11
11
  }
12
12
 
13
13
  #dynamic-chart-controls{
14
- margin-top: 20px;
14
+ margin-top: 20px;
15
+ }
16
+
17
+ #dynamic-chart-controls .form-inline{
18
+ margin-top: 10px;
19
+ }
20
+
21
+ #chart-controls {
22
+ margin-top: 10px;
15
23
  }
16
24
 
17
25
  #chart-controls input{
18
- width: 30px;
26
+ width: 120px;
19
27
  }
20
28
 
21
29
  #chart-controls .space{
@@ -29,3 +37,4 @@
29
37
 
30
38
  #dynamic-plotarea {
31
39
  }
40
+
@@ -0,0 +1,1320 @@
1
+ /*!
2
+ * jQuery UI Bootstrap (0.22)
3
+ * http://addyosmani.github.com/jquery-ui-bootstrap
4
+ *
5
+ * Copyright 2012, Addy Osmani
6
+ * Dual licensed under the MIT or GPL Version 2 licenses.
7
+ *
8
+ * Portions copyright jQuery UI & Twitter Bootstrap
9
+ */
10
+
11
+
12
+ /* Layout helpers
13
+ ----------------------------------*/
14
+ .ui-helper-hidden { display: none; }
15
+ .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
16
+ .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
17
+ .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
18
+ .ui-helper-clearfix { display: inline-block; }
19
+ /* required comment for clearfix to work in Opera \*/
20
+ * html .ui-helper-clearfix { height:1%; }
21
+ .ui-helper-clearfix { display:block; }
22
+ /* end clearfix */
23
+ .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
24
+
25
+
26
+ /* Interaction Cues
27
+ ----------------------------------*/
28
+ .ui-state-disabled { cursor: default !important; }
29
+
30
+
31
+ /* Icons
32
+ ----------------------------------*/
33
+
34
+ /* states and images */
35
+ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
36
+
37
+
38
+ /* Misc visuals
39
+ ----------------------------------*/
40
+
41
+ /* Overlays */
42
+ .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
43
+
44
+
45
+ /*
46
+ * jQuery UI CSS Framework 1.8.16
47
+ *
48
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
49
+ * Dual licensed under the MIT or GPL Version 2 licenses.
50
+ * http://jquery.org/license
51
+ *
52
+ * http://docs.jquery.com/UI/Theming/API
53
+ *
54
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
55
+ */
56
+
57
+
58
+ /* Component containers
59
+ ----------------------------------*/
60
+ .ui-widget { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size:13px; }
61
+ .ui-widget .ui-widget { font-size: 1em; }
62
+ .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1em; }
63
+ .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_75_ffffff_1x400.png) 50% 50% repeat-x; color: #404040; }
64
+ .ui-widget-content a { color: #404040; }
65
+ .ui-widget-header {
66
+ font-weight:bold;
67
+ border-color: #0064cd #0064cd #003f81;
68
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
69
+ border:1px solid #666;
70
+
71
+ }
72
+ .ui-widget-header a { color: #222222; }
73
+
74
+ /* Interaction states
75
+ ----------------------------------*/
76
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
77
+
78
+ background-color: #e6e6e6;
79
+ background-repeat: no-repeat;
80
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
81
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
82
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
83
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
84
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
85
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
86
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
87
+
88
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
89
+
90
+ color: #333;
91
+ font-size: 13px;
92
+ line-height: normal;
93
+ border: 1px solid #ccc;
94
+ border-bottom-color: #bbb;
95
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
96
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
97
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
98
+ -webkit-transition: 0.1s linear background-image;
99
+ -moz-transition: 0.1s linear background-image;
100
+ -ms-transition: 0.1s linear background-image;
101
+ -o-transition: 0.1s linear background-image;
102
+ transition: 0.1s linear background-image;
103
+ overflow: visible;
104
+
105
+ }
106
+
107
+
108
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
109
+ .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
110
+ background-position: 0 -15px;
111
+ color: #333;
112
+ text-decoration: none;
113
+
114
+
115
+ }
116
+ .ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; }
117
+ .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; font-weight: normal; color: #212121; }
118
+ .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
119
+ .ui-widget :active { outline: none; }
120
+
121
+ /* Interaction Cues
122
+ ----------------------------------*/
123
+
124
+
125
+ .ui-state-highlight p, .ui-state-error p, .ui-state-default p{
126
+ font-size: 13px;
127
+ font-weight: normal;
128
+ line-height: 18px;
129
+ margin:7px 15px;
130
+ }
131
+ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
132
+
133
+
134
+ position: relative;
135
+ margin-bottom: 18px;
136
+ color: #404040;
137
+ background-color: #eedc94;
138
+ background-repeat: repeat-x;
139
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
140
+ background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
141
+ background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
142
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
143
+ background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
144
+ background-image: -o-linear-gradient(top, #fceec1, #eedc94);
145
+ background-image: linear-gradient(top, #fceec1, #eedc94);
146
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
147
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
148
+ border-color: #eedc94 #eedc94 #e4c652;
149
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
150
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
151
+ border-width: 1px;
152
+ border-style: solid;
153
+ -webkit-border-radius: 4px;
154
+ -moz-border-radius: 4px;
155
+ border-radius: 4px;
156
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
157
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
158
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
159
+
160
+
161
+ }
162
+ .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
163
+ .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
164
+
165
+
166
+ position: relative;
167
+ margin-bottom: 18px;
168
+ color: #ffffff;
169
+ border-width: 1px;
170
+ border-style: solid;
171
+ -webkit-border-radius: 4px;
172
+ -moz-border-radius: 4px;
173
+ border-radius: 4px;
174
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
175
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
176
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
177
+ background-color: #c43c35;
178
+ background-repeat: repeat-x;
179
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
180
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
181
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
182
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
183
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
184
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
185
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
186
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
187
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
188
+ border-color: #c43c35 #c43c35 #882a25;
189
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
190
+
191
+
192
+ }
193
+ .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
194
+ .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
195
+ .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
196
+ .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
197
+ .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
198
+
199
+
200
+
201
+ /* Icons
202
+ ----------------------------------*/
203
+
204
+ /* states and images */
205
+ .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
206
+ .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
207
+ .ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
208
+ .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); }
209
+ .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
210
+ .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
211
+ .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
212
+ .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_f6cf3b_256x240.png); }
213
+
214
+ /* positioning */
215
+ .ui-icon-carat-1-n { background-position: 0 0; }
216
+ .ui-icon-carat-1-ne { background-position: -16px 0; }
217
+ .ui-icon-carat-1-e { background-position: -32px 0; }
218
+ .ui-icon-carat-1-se { background-position: -48px 0; }
219
+ .ui-icon-carat-1-s { background-position: -64px 0; }
220
+ .ui-icon-carat-1-sw { background-position: -80px 0; }
221
+ .ui-icon-carat-1-w { background-position: -96px 0; }
222
+ .ui-icon-carat-1-nw { background-position: -112px 0; }
223
+ .ui-icon-carat-2-n-s { background-position: -128px 0; }
224
+ .ui-icon-carat-2-e-w { background-position: -144px 0; }
225
+ .ui-icon-triangle-1-n { background-position: 0 -16px; }
226
+ .ui-icon-triangle-1-ne { background-position: -16px -16px; }
227
+ .ui-icon-triangle-1-e { background-position: -32px -16px; }
228
+ .ui-icon-triangle-1-se { background-position: -48px -16px; }
229
+ .ui-icon-triangle-1-s { background-position: -64px -16px; }
230
+ .ui-icon-triangle-1-sw { background-position: -80px -16px; }
231
+ .ui-icon-triangle-1-w { background-position: -96px -16px; }
232
+ .ui-icon-triangle-1-nw { background-position: -112px -16px; }
233
+ .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
234
+ .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
235
+ .ui-icon-arrow-1-n { background-position: 0 -32px; }
236
+ .ui-icon-arrow-1-ne { background-position: -16px -32px; }
237
+ .ui-icon-arrow-1-e { background-position: -32px -32px; }
238
+ .ui-icon-arrow-1-se { background-position: -48px -32px; }
239
+ .ui-icon-arrow-1-s { background-position: -64px -32px; }
240
+ .ui-icon-arrow-1-sw { background-position: -80px -32px; }
241
+ .ui-icon-arrow-1-w { background-position: -96px -32px; }
242
+ .ui-icon-arrow-1-nw { background-position: -112px -32px; }
243
+ .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
244
+ .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
245
+ .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
246
+ .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
247
+ .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
248
+ .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
249
+ .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
250
+ .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
251
+ .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
252
+ .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
253
+ .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
254
+ .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
255
+ .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
256
+ .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
257
+ .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
258
+ .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
259
+ .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
260
+ .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
261
+ .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
262
+ .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
263
+ .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
264
+ .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
265
+ .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
266
+ .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
267
+ .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
268
+ .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
269
+ .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
270
+ .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
271
+ .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
272
+ .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
273
+ .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
274
+ .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
275
+ .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
276
+ .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
277
+ .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
278
+ .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
279
+ .ui-icon-arrow-4 { background-position: 0 -80px; }
280
+ .ui-icon-arrow-4-diag { background-position: -16px -80px; }
281
+ .ui-icon-extlink { background-position: -32px -80px; }
282
+ .ui-icon-newwin { background-position: -48px -80px; }
283
+ .ui-icon-refresh { background-position: -64px -80px; }
284
+ .ui-icon-shuffle { background-position: -80px -80px; }
285
+ .ui-icon-transfer-e-w { background-position: -96px -80px; }
286
+ .ui-icon-transferthick-e-w { background-position: -112px -80px; }
287
+ .ui-icon-folder-collapsed { background-position: 0 -96px; }
288
+ .ui-icon-folder-open { background-position: -16px -96px; }
289
+ .ui-icon-document { background-position: -32px -96px; }
290
+ .ui-icon-document-b { background-position: -48px -96px; }
291
+ .ui-icon-note { background-position: -64px -96px; }
292
+ .ui-icon-mail-closed { background-position: -80px -96px; }
293
+ .ui-icon-mail-open { background-position: -96px -96px; }
294
+ .ui-icon-suitcase { background-position: -112px -96px; }
295
+ .ui-icon-comment { background-position: -128px -96px; }
296
+ .ui-icon-person { background-position: -144px -96px; }
297
+ .ui-icon-print { background-position: -160px -96px; }
298
+ .ui-icon-trash { background-position: -176px -96px; }
299
+ .ui-icon-locked { background-position: -192px -96px; }
300
+ .ui-icon-unlocked { background-position: -208px -96px; }
301
+ .ui-icon-bookmark { background-position: -224px -96px; }
302
+ .ui-icon-tag { background-position: -240px -96px; }
303
+ .ui-icon-home { background-position: 0 -112px; }
304
+ .ui-icon-flag { background-position: -16px -112px; }
305
+ .ui-icon-calendar { background-position: -32px -112px; }
306
+ .ui-icon-cart { background-position: -48px -112px; }
307
+ .ui-icon-pencil { background-position: -64px -112px; }
308
+ .ui-icon-clock { background-position: -80px -112px; }
309
+ .ui-icon-disk { background-position: -96px -112px; }
310
+ .ui-icon-calculator { background-position: -112px -112px; }
311
+ .ui-icon-zoomin { background-position: -128px -112px; }
312
+ .ui-icon-zoomout { background-position: -144px -112px; }
313
+ .ui-icon-search { background-position: -160px -112px; }
314
+ .ui-icon-wrench { background-position: -176px -112px; }
315
+ .ui-icon-gear { background-position: -192px -112px; }
316
+ .ui-icon-heart { background-position: -208px -112px; }
317
+ .ui-icon-star { background-position: -224px -112px; }
318
+ .ui-icon-link { background-position: -240px -112px; }
319
+ .ui-icon-cancel { background-position: 0 -128px; }
320
+ .ui-icon-plus { background-position: -16px -128px; }
321
+ .ui-icon-plusthick { background-position: -32px -128px; }
322
+ .ui-icon-minus { background-position: -48px -128px; }
323
+ .ui-icon-minusthick { background-position: -64px -128px; }
324
+ .ui-icon-close { background-position: -80px -128px; }
325
+ .ui-icon-closethick { background-position: -96px -128px; }
326
+ .ui-icon-key { background-position: -112px -128px; }
327
+ .ui-icon-lightbulb { background-position: -128px -128px; }
328
+ .ui-icon-scissors { background-position: -144px -128px; }
329
+ .ui-icon-clipboard { background-position: -160px -128px; }
330
+ .ui-icon-copy { background-position: -176px -128px; }
331
+ .ui-icon-contact { background-position: -192px -128px; }
332
+ .ui-icon-image { background-position: -208px -128px; }
333
+ .ui-icon-video { background-position: -224px -128px; }
334
+ .ui-icon-script { background-position: -240px -128px; }
335
+ .ui-icon-alert { background-position: 0 -144px; }
336
+ .ui-icon-info { background-position: -16px -144px; }
337
+ .ui-icon-notice { background-position: -32px -144px; }
338
+ .ui-icon-help { background-position: -48px -144px; }
339
+ .ui-icon-check { background-position: -64px -144px; }
340
+ .ui-icon-bullet { background-position: -80px -144px; }
341
+ .ui-icon-radio-off { background-position: -96px -144px; }
342
+ .ui-icon-radio-on { background-position: -112px -144px; }
343
+ .ui-icon-pin-w { background-position: -128px -144px; }
344
+ .ui-icon-pin-s { background-position: -144px -144px; }
345
+ .ui-icon-play { background-position: 0 -160px; }
346
+ .ui-icon-pause { background-position: -16px -160px; }
347
+ .ui-icon-seek-next { background-position: -32px -160px; }
348
+ .ui-icon-seek-prev { background-position: -48px -160px; }
349
+ .ui-icon-seek-end { background-position: -64px -160px; }
350
+ .ui-icon-seek-start { background-position: -80px -160px; }
351
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
352
+ .ui-icon-seek-first { background-position: -80px -160px; }
353
+ .ui-icon-stop { background-position: -96px -160px; }
354
+ .ui-icon-eject { background-position: -112px -160px; }
355
+ .ui-icon-volume-off { background-position: -128px -160px; }
356
+ .ui-icon-volume-on { background-position: -144px -160px; }
357
+ .ui-icon-power { background-position: 0 -176px; }
358
+ .ui-icon-signal-diag { background-position: -16px -176px; }
359
+ .ui-icon-signal { background-position: -32px -176px; }
360
+ .ui-icon-battery-0 { background-position: -48px -176px; }
361
+ .ui-icon-battery-1 { background-position: -64px -176px; }
362
+ .ui-icon-battery-2 { background-position: -80px -176px; }
363
+ .ui-icon-battery-3 { background-position: -96px -176px; }
364
+ .ui-icon-circle-plus { background-position: 0 -192px; }
365
+ .ui-icon-circle-minus { background-position: -16px -192px; }
366
+ .ui-icon-circle-close { background-position: -32px -192px; }
367
+ .ui-icon-circle-triangle-e { background-position: -48px -192px; }
368
+ .ui-icon-circle-triangle-s { background-position: -64px -192px; }
369
+ .ui-icon-circle-triangle-w { background-position: -80px -192px; }
370
+ .ui-icon-circle-triangle-n { background-position: -96px -192px; }
371
+ .ui-icon-circle-arrow-e { background-position: -112px -192px; }
372
+ .ui-icon-circle-arrow-s { background-position: -128px -192px; }
373
+ .ui-icon-circle-arrow-w { background-position: -144px -192px; }
374
+ .ui-icon-circle-arrow-n { background-position: -160px -192px; }
375
+ .ui-icon-circle-zoomin { background-position: -176px -192px; }
376
+ .ui-icon-circle-zoomout { background-position: -192px -192px; }
377
+ .ui-icon-circle-check { background-position: -208px -192px; }
378
+ .ui-icon-circlesmall-plus { background-position: 0 -208px; }
379
+ .ui-icon-circlesmall-minus { background-position: -16px -208px; }
380
+ .ui-icon-circlesmall-close { background-position: -32px -208px; }
381
+ .ui-icon-squaresmall-plus { background-position: -48px -208px; }
382
+ .ui-icon-squaresmall-minus { background-position: -64px -208px; }
383
+ .ui-icon-squaresmall-close { background-position: -80px -208px; }
384
+ .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
385
+ .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
386
+ .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
387
+ .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
388
+ .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
389
+ .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
390
+
391
+
392
+ /* Misc visuals
393
+ ----------------------------------*/
394
+
395
+ /* Corner radius */
396
+ .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
397
+ .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
398
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
399
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
400
+
401
+
402
+
403
+ /* Overlays */
404
+ .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
405
+ .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/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; }/*
406
+ * jQuery UI Resizable 1.8.16
407
+ *
408
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
409
+ * Dual licensed under the MIT or GPL Version 2 licenses.
410
+ * http://jquery.org/license
411
+ *
412
+ * http://docs.jquery.com/UI/Resizable#theming
413
+ */
414
+ .ui-resizable { position: relative;}
415
+ .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; }
416
+ .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
417
+ .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
418
+ .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
419
+ .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
420
+ .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
421
+ .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
422
+ .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
423
+ .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
424
+ .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
425
+ * jQuery UI Selectable 1.8.16
426
+ *
427
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
428
+ * Dual licensed under the MIT or GPL Version 2 licenses.
429
+ * http://jquery.org/license
430
+ *
431
+ * http://docs.jquery.com/UI/Selectable#theming
432
+ */
433
+ .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
434
+ /*
435
+ * jQuery UI Accordion 1.8.16
436
+ *
437
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
438
+ * Dual licensed under the MIT or GPL Version 2 licenses.
439
+ * http://jquery.org/license
440
+ *
441
+ * http://docs.jquery.com/UI/Accordion#theming
442
+ */
443
+ /* IE/Win - Fix animation bug - #4615 */
444
+ .ui-accordion { width: 100%; }
445
+ .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; font-weight:bold; }
446
+ .ui-accordion .ui-accordion-li-fix { display: inline; }
447
+ .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
448
+ .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
449
+ .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
450
+ .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
451
+ .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; }
452
+ .ui-accordion .ui-accordion-content-active { display: block; }
453
+ /*
454
+ * jQuery UI Autocomplete 1.8.16
455
+ *
456
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
457
+ * Dual licensed under the MIT or GPL Version 2 licenses.
458
+ * http://jquery.org/license
459
+ *
460
+ * http://docs.jquery.com/UI/Autocomplete#theming
461
+ */
462
+ .ui-autocomplete { position: absolute; cursor: default; }
463
+
464
+ /* workarounds */
465
+ * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
466
+
467
+ /*
468
+ * jQuery UI Menu 1.8.16
469
+ *
470
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
471
+ * Dual licensed under the MIT or GPL Version 2 licenses.
472
+ * http://jquery.org/license
473
+ *
474
+ * http://docs.jquery.com/UI/Menu#theming
475
+ */
476
+ .ui-menu {
477
+ list-style:none;
478
+ padding: 2px;
479
+ margin: 0;
480
+ display:block;
481
+ float: left;
482
+ }
483
+ .ui-menu .ui-menu {
484
+ margin-top: -3px;
485
+ }
486
+ .ui-menu .ui-menu-item {
487
+ margin:0;
488
+ padding: 0;
489
+ zoom: 1;
490
+ float: left;
491
+ clear: left;
492
+ width: 100%;
493
+ }
494
+ .ui-menu .ui-menu-item a {
495
+ text-decoration:none;
496
+ display:block;
497
+ padding:.2em .4em;
498
+ line-height:1.5;
499
+ zoom:1;
500
+ }
501
+ .ui-menu .ui-menu-item a.ui-state-hover,
502
+ .ui-menu .ui-menu-item a.ui-state-active {
503
+ font-weight: normal;
504
+ background:#0064CD;
505
+ color:#fff
506
+ }
507
+
508
+
509
+ /*
510
+ * jQuery UI Button 1.8.16
511
+ *
512
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
513
+ * Dual licensed under the MIT or GPL Version 2 licenses.
514
+ * http://jquery.org/license
515
+ *
516
+ * http://docs.jquery.com/UI/Button#theming
517
+ */
518
+ .ui-button {
519
+
520
+ cursor: pointer;
521
+ display: inline-block;
522
+ background-color: #e6e6e6;
523
+ background-repeat: no-repeat;
524
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
525
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
526
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
527
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
528
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
529
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
530
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
531
+ padding: 5px 14px 6px;
532
+ margin: 0;
533
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
534
+ color: #333;
535
+ font-size: 13px;
536
+ line-height: normal;
537
+ border: 1px solid #ccc;
538
+ border-bottom-color: #bbb;
539
+
540
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
541
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
542
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
543
+ -webkit-transition: 0.1s linear background-image;
544
+ -moz-transition: 0.1s linear background-image;
545
+ -ms-transition: 0.1s linear background-image;
546
+ -o-transition: 0.1s linear background-image;
547
+ transition: 0.1s linear background-image;
548
+ overflow: visible;
549
+
550
+ } /* the overflow property removes extra width in IE */
551
+
552
+ .ui-button-primary {
553
+ color: #ffffff;
554
+ background-color: #0064cd;
555
+ background-repeat: repeat-x;
556
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
557
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
558
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
559
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
560
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
561
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
562
+ background-image: linear-gradient(top, #049cdb, #0064cd);
563
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
564
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
565
+ border-color: #0064cd #0064cd #003f81;
566
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
567
+
568
+ }
569
+
570
+
571
+
572
+ .ui-button-success{
573
+ color:#ffffff;
574
+ background-color: #57a957;
575
+ background-repeat: repeat-x;
576
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
577
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
578
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
579
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
580
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
581
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
582
+ background-image: linear-gradient(top, #62c462, #57a957);
583
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
584
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
585
+ border-color: #57a957 #57a957 #3d773d;
586
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
587
+ }
588
+
589
+ .ui-button-error{
590
+ color:#ffffff;
591
+ background-color: #c43c35;
592
+ background-repeat: repeat-x;
593
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
594
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
595
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
596
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
597
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
598
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
599
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
600
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
601
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
602
+ border-color: #c43c35 #c43c35 #882a25;
603
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
604
+ }
605
+
606
+ .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
607
+ button.ui-button-icon-only { } /* button elements seem to need a little more width */
608
+ .ui-button-icons-only { width: 3.4em; }
609
+ button.ui-button-icons-only { width: 3.7em; }
610
+
611
+ /*button text element */
612
+
613
+ .ui-button .ui-button-text { display: block; }
614
+ .ui-button-text-only .ui-button-text { }
615
+ .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; /*tempfix*/ display:none;}
616
+ .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
617
+ .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
618
+ .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
619
+ /* no icon support for input elements, provide padding by default */
620
+ /* input.ui-button { padding: .4em 1em; } */
621
+
622
+ /*button icon element(s) */
623
+ .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 { top: 50%; margin-top:-3px; margin-bottom:3px; }
624
+ .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
625
+ .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; }
626
+ .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; }
627
+ .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
628
+
629
+ /*button sets*/
630
+
631
+
632
+ .ui-buttonset { margin-right: 7px; }
633
+ .ui-buttonset .ui-state-active {
634
+ color: #ffffff;
635
+ background-color: #0064cd;
636
+ background-repeat: repeat-x;
637
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
638
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
639
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
640
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
641
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
642
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
643
+ background-image: linear-gradient(top, #049cdb, #0064cd);
644
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
645
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
646
+ border-color: #0064cd #0064cd #003f81;
647
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
648
+ }
649
+ .ui-buttonset .ui-button { margin-left: 0; margin-right: -.4em; }
650
+
651
+ /* workarounds */
652
+ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
653
+
654
+
655
+
656
+ /*
657
+ * jQuery UI Dialog 1.8.16
658
+ *
659
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
660
+ * Dual licensed under the MIT or GPL Version 2 licenses.
661
+ * http://jquery.org/license
662
+ *
663
+ * http://docs.jquery.com/UI/Dialog#theming
664
+ */
665
+ .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
666
+ .ui-dialog .ui-dialog-titlebar { /*padding: .4em 1em;*/
667
+
668
+ position: relative;
669
+ padding:5px 15px;
670
+
671
+ border:0px 0px 0px 1px solid;
672
+ border-color: white;
673
+ padding: 5px 15px;
674
+ font-size: 18px;
675
+ text-decoration:none;
676
+ background:none;
677
+ -moz-border-radius-bottomright: 0px;
678
+ -webkit-border-bottom-right-radius: 0px;
679
+ -khtml-border-bottom-right-radius: 0px;
680
+
681
+ -moz-border-radius-bottomleft: 0px;
682
+ -webkit-border-bottom-left-radius: 0px;
683
+ -khtml-border-bottom-left-radius: 0px;
684
+ border-bottom-left-radius: 0px;
685
+
686
+ border-bottom:1px solid #ccc;
687
+
688
+ }
689
+ .ui-dialog .ui-dialog-title {
690
+ float: left;
691
+ color:#404040;
692
+ font-weight:bold;
693
+ margin-top:5px;
694
+ margin-bottom:5px;
695
+ padding:5px;
696
+
697
+ }
698
+ .ui-dialog .ui-dialog-titlebar-close {
699
+ position: absolute;
700
+ right: .3em;
701
+ top: 50%;
702
+ width: 19px;
703
+ margin: -10px 0 0 0;
704
+ padding: 1px;
705
+ height: 18px;
706
+ font-size: 20px;
707
+ font-weight: bold;
708
+ line-height: 13.5px;
709
+ text-shadow: 0 1px 0 #ffffff;
710
+ filter: alpha(opacity=25);
711
+ -khtml-opacity: 0.25;
712
+ -moz-opacity: 0.25;
713
+ opacity: 0.25;
714
+ }
715
+
716
+ .ui-dialog .ui-dialog-titlebar-close span {
717
+ display: block;
718
+ margin: 1px;
719
+ text-indent: 9999px;
720
+ }
721
+
722
+ .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; filter: alpha(opacity=90);
723
+ -khtml-opacity: 0.90;
724
+ -moz-opacity: 0.90;
725
+ opacity: 0.90; }
726
+
727
+ .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
728
+
729
+ .ui-dialog .ui-dialog-buttonpane {
730
+ text-align: left;
731
+ border-width: 1px 0 0 0;
732
+ background-image: none;
733
+ margin: .5em 0 0 0;
734
+ background-color: #f5f5f5;
735
+ padding: 5px 15px 5px;
736
+ border-top: 1px solid #ddd;
737
+ -webkit-border-radius: 0 0 6px 6px;
738
+ -moz-border-radius: 0 0 6px 6px;
739
+ border-radius: 0 0 6px 6px;
740
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
741
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
742
+ box-shadow: inset 0 1px 0 #ffffff;
743
+ zoom: 1;
744
+ margin-bottom: 0;
745
+
746
+ }
747
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
748
+ .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
749
+ .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
750
+ .ui-draggable .ui-dialog-titlebar { cursor: move; }
751
+
752
+ .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button{
753
+ color: #ffffff;
754
+ background-color: #0064cd;
755
+ background-repeat: repeat-x;
756
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
757
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
758
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
759
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
760
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
761
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
762
+ background-image: linear-gradient(top, #049cdb, #0064cd);
763
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
764
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
765
+ border-color: #0064cd #0064cd #003f81;
766
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
767
+ }
768
+ /*
769
+ * jQuery UI Slider 1.8.16
770
+ *
771
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
772
+ * Dual licensed under the MIT or GPL Version 2 licenses.
773
+ * http://jquery.org/license
774
+ *
775
+ * http://docs.jquery.com/UI/Slider#theming
776
+ */
777
+ .ui-slider { position: relative; text-align: left; }
778
+ .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
779
+ .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0;
780
+
781
+ color: #ffffff;
782
+ background-color: #0064cd;
783
+ background-repeat: repeat-x;
784
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
785
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
786
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
787
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
788
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
789
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
790
+ background-image: linear-gradient(top, #049cdb, #0064cd);
791
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
792
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
793
+ border-color: #0064cd #0064cd #003f81;
794
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
795
+
796
+ }
797
+
798
+ .ui-slider-horizontal { height: .8em; }
799
+ .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
800
+ .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
801
+ .ui-slider-horizontal .ui-slider-range-min { left: 0; }
802
+ .ui-slider-horizontal .ui-slider-range-max { right: 0; }
803
+
804
+ .ui-slider-vertical { width: .8em; height: 100px; }
805
+ .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
806
+ .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
807
+ .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
808
+ .ui-slider-vertical .ui-slider-range-max { top: 0; }/*
809
+ * jQuery UI Tabs 1.8.16
810
+ *
811
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
812
+ * Dual licensed under the MIT or GPL Version 2 licenses.
813
+ * http://jquery.org/license
814
+ *
815
+ * http://docs.jquery.com/UI/Tabs#theming
816
+ */
817
+ .ui-tabs .ui-tabs-nav{ background:none; border-color: #ddd;
818
+ border-style: solid;
819
+ border-width: 0 0 1px;}
820
+ .ui-tabs { position: relative; padding: .2em; zoom: 1; border:0px;} /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
821
+
822
+
823
+ .ui-tabs .ui-tabs-nav li:hover, .ui-tabs .ui-tabs-nav li a:hover{
824
+ background:whiteSmoke;
825
+ border-bottom:1px solid #ddd;
826
+ padding-bottom:0px;
827
+ color:#00438A;
828
+ }
829
+
830
+
831
+ .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; border-bottom:1px solid #DDD; }
832
+ .ui-tabs .ui-tabs-nav li { text-decoration: none; list-style: none; float: left; position: relative; top: 1px; padding: 0px 0px 1px 0px; white-space: nowrap; background:none; border:0px;
833
+
834
+ }
835
+
836
+ .ui-tabs-nav .ui-state-default{
837
+ -webkit-box-shadow: 0px 0px 0px #ffffff; /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
838
+ -moz-box-shadow: 0px 0px 0px #ffffff; /* FF3.5 - 3.6 */
839
+ box-shadow: 0px 0px 0px #ffffff; /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
840
+ }
841
+ .ui-tabs .ui-tabs-nav li a {
842
+
843
+ float: left;
844
+ text-decoration: none;
845
+ cursor: text;
846
+ padding: 0 15px;
847
+ margin-right: 2px;
848
+ line-height: 34px;
849
+ border: 1px solid transparent;
850
+ -webkit-border-radius: 4px 4px 0 0;
851
+ -moz-border-radius: 4px 4px 0 0;
852
+ border-radius: 4px 4px 0 0;
853
+
854
+
855
+ }
856
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 0px; outline:none;}
857
+
858
+ .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 {
859
+
860
+ background-color: #ffffff;
861
+ border: 1px solid #ddd;
862
+ border-bottom-color: #ffffff;
863
+ cursor: default;
864
+ color:gray;
865
+ outline:none;
866
+ }
867
+
868
+
869
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected:hover{
870
+ background:#ffffff;
871
+ outline:none;
872
+ }
873
+
874
+ .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; color:#0069D6; background:none; font-weight:normal; margin-bottom:-1px;}
875
+ /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
876
+ .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
877
+ .ui-tabs-panel .ui-button{text-decoration:none;}
878
+ .ui-tabs .ui-tabs-hide { display: none !important; }
879
+
880
+
881
+ /* IE fix for background inheritance from ui-widget*/
882
+ .ui-tabs .ui-tabs-nav li{
883
+ filter:none;
884
+ }
885
+
886
+
887
+
888
+ /*
889
+ * jQuery UI Datepicker 1.8.16
890
+ *
891
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
892
+ * Dual licensed under the MIT or GPL Version 2 licenses.
893
+ * http://jquery.org/license
894
+ *
895
+ * http://docs.jquery.com/UI/Datepicker#theming
896
+ */
897
+ .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
898
+ .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; border:0px; font-weight: bold; width: 100%; padding: 4px 0; background-color: #f5f5f5; color: #808080; }
899
+ .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
900
+
901
+ .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { /*top: 1px;*/ }
902
+ .ui-datepicker .ui-datepicker-prev { left:2px; }
903
+ .ui-datepicker .ui-datepicker-next { right:2px; }
904
+
905
+ .ui-datepicker .ui-datepicker-prev-hover { /*left:1px;*/ }
906
+ .ui-datepicker .ui-datepicker-next-hover { /*right:1px;*/ }
907
+
908
+ .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
909
+ .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
910
+ .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
911
+ .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
912
+ .ui-datepicker select.ui-datepicker-month,
913
+ .ui-datepicker select.ui-datepicker-year { width: 49%;}
914
+ .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
915
+ .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
916
+ .ui-datepicker td { border: 0; padding: 1px; }
917
+ .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
918
+ .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
919
+ .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
920
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
921
+
922
+ /* with multiple calendars */
923
+ .ui-datepicker.ui-datepicker-multi { width:auto; }
924
+ .ui-datepicker-multi .ui-datepicker-group { float:left; }
925
+ .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
926
+ .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
927
+ .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
928
+ .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
929
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
930
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
931
+ .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
932
+ .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
933
+
934
+ /* RTL support */
935
+ .ui-datepicker-rtl { direction: rtl; }
936
+ .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
937
+ .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
938
+ .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
939
+ .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
940
+ .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
941
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
942
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
943
+ .ui-datepicker-rtl .ui-datepicker-group { float:right; }
944
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
945
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
946
+
947
+ /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
948
+ .ui-datepicker-cover {
949
+ display: none; /*sorry for IE5*/
950
+ display/**/: block; /*sorry for IE5*/
951
+ position: absolute; /*must have*/
952
+ z-index: -1; /*must have*/
953
+ filter: mask(); /*must have*/
954
+ top: -4px; /*must have*/
955
+ left: -4px; /*must have*/
956
+ width: 200px; /*must have*/
957
+ height: 200px; /*must have*/
958
+ }
959
+
960
+ .ui-datepicker th{
961
+ font-weight: bold;
962
+ color: gray;
963
+ }
964
+
965
+ .ui-datepicker-today a:hover{
966
+ background-color: #808080;
967
+ color: #ffffff;
968
+
969
+ }
970
+ .ui-datepicker-today a{
971
+ background-color: #BFBFBF;
972
+ cursor: pointer;
973
+ padding: 0 4px;
974
+ margin-bottom:0px;
975
+
976
+ }
977
+
978
+
979
+ .ui-datepicker td a{
980
+ margin-bottom:0px;
981
+ border:0px;
982
+ }
983
+
984
+ .ui-datepicker td:hover{
985
+ color:white;
986
+ }
987
+
988
+ .ui-datepicker td .ui-state-default {
989
+ border:0px;
990
+ background:none;
991
+ margin-bottom:0px;
992
+ padding:5px;
993
+ color:gray;
994
+ text-align: center;
995
+ filter:none;
996
+ }
997
+
998
+
999
+ .ui-datepicker td .ui-state-active{
1000
+ background:#BFBFBF;
1001
+ margin-bottom:0px;
1002
+ font-size:normal;
1003
+ text-shadow: 0px;
1004
+ color:white;
1005
+ -webkit-border-radius: 4px;
1006
+ -moz-border-radius: 4px;
1007
+ border-radius: 4px;
1008
+ }
1009
+
1010
+ .ui-datepicker td .ui-state-default:hover{
1011
+ background:#0064cd;
1012
+ color:white;
1013
+ -webkit-border-radius: 4px;
1014
+ -moz-border-radius: 4px;
1015
+ border-radius: 4px;
1016
+ }
1017
+
1018
+
1019
+ /*
1020
+ * jQuery UI Progressbar 1.8.16
1021
+ *
1022
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
1023
+ * Dual licensed under the MIT or GPL Version 2 licenses.
1024
+ * http://jquery.org/license
1025
+ *
1026
+ * http://docs.jquery.com/UI/Progressbar#theming
1027
+ */
1028
+ .ui-progressbar { height:2em; text-align: left; }
1029
+ .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%;
1030
+
1031
+ /*this can be removed if ui-widget-header is blue*/
1032
+ color: #ffffff;
1033
+ background-color: #0064cd;
1034
+ background-repeat: repeat-x;
1035
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
1036
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
1037
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
1038
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
1039
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
1040
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
1041
+ background-image: linear-gradient(top, #049cdb, #0064cd);
1042
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
1043
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1044
+ border-color: #0064cd #0064cd #003f81;
1045
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1046
+ }
1047
+
1048
+
1049
+
1050
+ /*** Input field styling from Bootstrap **/
1051
+ input, textarea {
1052
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
1053
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
1054
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
1055
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
1056
+ transition: border linear 0.2s, box-shadow linear 0.2s;
1057
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
1058
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
1059
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
1060
+ }
1061
+ input:focus, textarea:focus {
1062
+ outline: 0;
1063
+ border-color: rgba(82, 168, 236, 0.8);
1064
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
1065
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
1066
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
1067
+ }
1068
+ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
1069
+ -webkit-box-shadow: none;
1070
+ -moz-box-shadow: none;
1071
+ box-shadow: none;
1072
+ outline: 1px dotted #666;
1073
+ }
1074
+
1075
+ input[type="text"],
1076
+ input[type="password"],
1077
+ .ui-autocomplete-input,
1078
+ textarea,
1079
+ .uneditable-input {
1080
+ display: inline-block;
1081
+ padding: 4px;
1082
+ font-size: 13px;
1083
+ line-height: 18px;
1084
+ color: #808080;
1085
+ border: 1px solid #ccc;
1086
+ -webkit-border-radius: 3px;
1087
+ -moz-border-radius: 3px;
1088
+ border-radius: 3px;
1089
+ }
1090
+
1091
+
1092
+
1093
+ /**Toolbar**/
1094
+
1095
+ .ui-toolbar{
1096
+ padding: 7px 14px;
1097
+ margin: 0 0 18px;
1098
+ background-color: #f5f5f5;
1099
+ background-repeat: repeat-x;
1100
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
1101
+ background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
1102
+ background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
1103
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
1104
+ background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
1105
+ background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
1106
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
1107
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
1108
+ border: 1px solid #ddd;
1109
+ -webkit-border-radius: 3px;
1110
+ -moz-border-radius: 3px;
1111
+ border-radius: 3px;
1112
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
1113
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
1114
+ box-shadow: inset 0 1px 0 #ffffff;
1115
+ }
1116
+
1117
+
1118
+ /***Dialog fixes**/
1119
+
1120
+ .ui-dialog-buttonset .ui-button:nth-child(2){
1121
+ cursor: pointer;
1122
+ display: inline-block;
1123
+ background-color: #e6e6e6;
1124
+ background-repeat: no-repeat;
1125
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1126
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1127
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1128
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1129
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1130
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1131
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1132
+ padding: 5px 14px 6px;
1133
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1134
+ color: #333;
1135
+ font-size: 13px;
1136
+ line-height: normal;
1137
+ border: 1px solid #ccc;
1138
+ border-bottom-color: #bbb;
1139
+ -webkit-border-radius: 4px;
1140
+ -moz-border-radius: 4px;
1141
+ border-radius: 4px;
1142
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1143
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1144
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1145
+ -webkit-transition: 0.1s linear all;
1146
+ -moz-transition: 0.1s linear all;
1147
+ -ms-transition: 0.1s linear all;
1148
+ -o-transition: 0.1s linear all;
1149
+ transition: 0.1s linear all;
1150
+ overflow: visible;
1151
+ }
1152
+
1153
+
1154
+
1155
+ /***Wijmo Theming**/
1156
+
1157
+ div.wijmo-wijmenu{
1158
+ padding:0 20px;
1159
+ background-color: #222;
1160
+ background-color: #222222;
1161
+ background-repeat: repeat-x;
1162
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
1163
+ background-image: -moz-linear-gradient(top, #333333, #222222);
1164
+ background-image: -ms-linear-gradient(top, #333333, #222222);
1165
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
1166
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
1167
+ background-image: -o-linear-gradient(top, #333333, #222222);
1168
+ background-image: linear-gradient(top, #333333, #222222);
1169
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1170
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1171
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1172
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1173
+ }
1174
+
1175
+ .wijmo-wijmenu .ui-state-default{
1176
+ box-shadow: none;
1177
+ color:#BFBFBF;
1178
+ }
1179
+
1180
+ .wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text{
1181
+ color:#BFBFBF;
1182
+ }
1183
+
1184
+ .wijmo-wijmenu .ui-state-hover{
1185
+ background: #444;
1186
+ background: rgba(255, 255, 255, 0.05);
1187
+ }
1188
+
1189
+ .wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text{
1190
+ color:#ffffff;
1191
+ }
1192
+
1193
+ div.wijmo-wijmenu .ui-widget-header h3{
1194
+ position: relative;
1195
+ margin-top:1px;
1196
+ padding:0;
1197
+ }
1198
+
1199
+ .wijmo-wijmenu h3 a{
1200
+ color: #FFFFFF;
1201
+ display: block;
1202
+ float: left;
1203
+ font-size: 20px;
1204
+ font-weight: 200;
1205
+ line-height: 1;
1206
+ margin-left: -20px;
1207
+ margin-top:1px;
1208
+ padding: 8px 20px 12px;
1209
+ }
1210
+
1211
+ .wijmo-wijmenu h3 a:hover{
1212
+ background-color: rgba(255, 255, 255, 0.05);
1213
+ color: #FFFFFF;
1214
+ text-decoration: none;
1215
+ }
1216
+
1217
+ .wijmo-wijmenu .ui-widget-header{
1218
+ border:0px;
1219
+ }
1220
+
1221
+ .wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child{
1222
+ padding: 0.3em 0;
1223
+ }
1224
+
1225
+ div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child{
1226
+ background: #333;
1227
+ border:0;
1228
+ margin:0;
1229
+ padding: 6px 0;
1230
+ width:160px;
1231
+ -webkit-border-radius: 0 0 6px 6px;
1232
+ -moz-border-radius: 0 0 6px 6px;
1233
+ border-radius: 0 0 6px 6px;
1234
+ -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1235
+ -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1236
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1237
+ }
1238
+
1239
+ div.wijmo-wijmenu .wijmo-wijmenu-item{
1240
+ margin:0;
1241
+ border:0;
1242
+ }
1243
+
1244
+ .wijmo-wijmenu a.wijmo-wijmenu-link{
1245
+ margin:0;
1246
+ line-height: 19px;
1247
+ padding: 10px 10px 11px;
1248
+ border:0;
1249
+ -webkit-border-radius: 0;
1250
+ -moz-border-radius: 0;
1251
+ border-radius:0;
1252
+ }
1253
+
1254
+ div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link{
1255
+ display:block;
1256
+ float:none;
1257
+ padding: 4px 15px;
1258
+ width:auto;
1259
+ }
1260
+
1261
+ div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text
1262
+ {
1263
+ float:none;
1264
+ }
1265
+
1266
+ .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
1267
+ background: #191919;
1268
+ }
1269
+
1270
+ .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator{
1271
+ padding: 5px 0;
1272
+ background-image: none;
1273
+ background-color: #222;
1274
+ border-top: 1px solid #444;
1275
+ border-bottom:0;
1276
+ border-left:0;
1277
+ border-right:0;
1278
+ }
1279
+
1280
+ .wijmo-wijmenu .wijmo-wijmenu-item input {
1281
+ -moz-transition: none 0s ease 0s;
1282
+ background-color: rgba(255, 255, 255, 0.3);
1283
+ border: 1px solid #111111;
1284
+ border-radius: 4px 4px 4px 4px;
1285
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
1286
+ color: rgba(255, 255, 255, 0.75);
1287
+ font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
1288
+ line-height: 1;
1289
+ margin: 5px 10px 0 10px;
1290
+ padding: 4px 9px;
1291
+ width:100px;
1292
+ }
1293
+
1294
+ .wijmo-wijmenu .wijmo-wijmenu-item input:hover {
1295
+ background-color: rgba(255, 255, 255, 0.5);
1296
+ color: #FFFFFF;
1297
+ }
1298
+
1299
+ .wijmo-wijmenu .wijmo-wijmenu-item input:focus {
1300
+ background-color: #FFFFFF;
1301
+ border: 0 none;
1302
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1303
+ color: #404040;
1304
+ outline: 0 none;
1305
+ padding: 5px 10px;
1306
+ text-shadow: 0 1px 0 #FFFFFF;
1307
+ }
1308
+
1309
+
1310
+ .wijmo-wijmenu .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1311
+ text-shadow:none;
1312
+ }
1313
+
1314
+
1315
+ .wijmo-wijmenu .ui-state-default{
1316
+ box-shadow: none;
1317
+ color:#BFBFBF;
1318
+ filter: none;
1319
+ }
1320
+