├── .gitignore ├── css ├── index.html ├── smoothness │ ├── images │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-bg_flat_0_000000_40x100.png │ │ ├── ui-bg_flat_0_444444_40x100.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ └── jquery-ui-1.8.6.custom.css └── styles.css ├── images ├── index.php ├── up.jpg ├── edit.png ├── logo.jpg ├── sort.png ├── tabs.png ├── view.png ├── columns.png ├── delete.png ├── favicon.ico ├── fields.png ├── filter.png ├── left_bg.jpg ├── login.png ├── main_bg.jpg ├── nav_bg.jpg ├── sort_up.gif ├── top_row.jpg ├── up_down.png ├── delete_bg.jpg ├── edit_form.png ├── nav_down.jpg ├── popup_bg.jpg ├── sort_down.gif ├── utilities.png ├── admin_edit.png ├── admin_view.png ├── delete_group.png ├── edit_small.gif ├── icon_forms.gif ├── icon_login.gif ├── icon_modules.gif ├── icon_themes.gif ├── left_nav_bg.jpg ├── nav_row_bg.jpg ├── placeholders.png ├── popup_logo.jpg ├── submenu_item.gif ├── view_small.gif ├── ajax_activity.gif ├── calendar_icon.gif ├── icon_accounts.gif ├── icon_settings.gif ├── top_banner_bg.jpg ├── ajax_no_activity.gif ├── fields_table_bg.png ├── icon_option_lists.gif ├── left_tab_selected.gif ├── page_content_bg.jpg ├── popup_header_bg.png ├── utilities_small.png ├── account_section_bg.jpg ├── ajax_activity_grey.gif ├── list_table_heading.jpg ├── right_tab_selected.gif ├── tab_not_selected_bg.gif ├── account_section_left.jpg ├── account_section_right.jpg ├── ajax_activity_yellow.gif ├── ajax_no_activity_grey.gif ├── left_tab_not_selected.gif ├── right_tab_not_selected.gif ├── ajax_activity_light_grey.gif ├── ajax_no_activity_yellow.gif ├── icon_field_option_groups.gif ├── list_table_heading_over.jpg └── ajax_no_activity_light_grey.gif ├── about ├── screenshot.gif ├── thumbnail.gif ├── screenshot2.gif ├── screenshot3.gif ├── screenshots.json └── theme.php ├── .idea └── vcs.xml ├── sass ├── index.scss ├── _option_lists.scss ├── _menus.scss ├── _public.scss ├── _emails.scss ├── _submissions.scss ├── _widgets.scss ├── _tabs.scss ├── _forms.scss ├── _navigation.scss ├── _views.scss ├── _fields.scss ├── _sortable.scss └── _general.scss ├── modules_footer.tpl ├── footer.tpl ├── README.md ├── header.tpl ├── modules_header.tpl └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /images/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /images/up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/up.jpg -------------------------------------------------------------------------------- /images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/edit.png -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/logo.jpg -------------------------------------------------------------------------------- /images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/sort.png -------------------------------------------------------------------------------- /images/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/tabs.png -------------------------------------------------------------------------------- /images/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/view.png -------------------------------------------------------------------------------- /images/columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/columns.png -------------------------------------------------------------------------------- /images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/delete.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/favicon.ico -------------------------------------------------------------------------------- /images/fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/fields.png -------------------------------------------------------------------------------- /images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/filter.png -------------------------------------------------------------------------------- /images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/left_bg.jpg -------------------------------------------------------------------------------- /images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/login.png -------------------------------------------------------------------------------- /images/main_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/main_bg.jpg -------------------------------------------------------------------------------- /images/nav_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/nav_bg.jpg -------------------------------------------------------------------------------- /images/sort_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/sort_up.gif -------------------------------------------------------------------------------- /images/top_row.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/top_row.jpg -------------------------------------------------------------------------------- /images/up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/up_down.png -------------------------------------------------------------------------------- /about/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/about/screenshot.gif -------------------------------------------------------------------------------- /about/thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/about/thumbnail.gif -------------------------------------------------------------------------------- /images/delete_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/delete_bg.jpg -------------------------------------------------------------------------------- /images/edit_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/edit_form.png -------------------------------------------------------------------------------- /images/nav_down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/nav_down.jpg -------------------------------------------------------------------------------- /images/popup_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/popup_bg.jpg -------------------------------------------------------------------------------- /images/sort_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/sort_down.gif -------------------------------------------------------------------------------- /images/utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/utilities.png -------------------------------------------------------------------------------- /about/screenshot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/about/screenshot2.gif -------------------------------------------------------------------------------- /about/screenshot3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/about/screenshot3.gif -------------------------------------------------------------------------------- /images/admin_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/admin_edit.png -------------------------------------------------------------------------------- /images/admin_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/admin_view.png -------------------------------------------------------------------------------- /images/delete_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/delete_group.png -------------------------------------------------------------------------------- /images/edit_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/edit_small.gif -------------------------------------------------------------------------------- /images/icon_forms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_forms.gif -------------------------------------------------------------------------------- /images/icon_login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_login.gif -------------------------------------------------------------------------------- /images/icon_modules.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_modules.gif -------------------------------------------------------------------------------- /images/icon_themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_themes.gif -------------------------------------------------------------------------------- /images/left_nav_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/left_nav_bg.jpg -------------------------------------------------------------------------------- /images/nav_row_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/nav_row_bg.jpg -------------------------------------------------------------------------------- /images/placeholders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/placeholders.png -------------------------------------------------------------------------------- /images/popup_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/popup_logo.jpg -------------------------------------------------------------------------------- /images/submenu_item.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/submenu_item.gif -------------------------------------------------------------------------------- /images/view_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/view_small.gif -------------------------------------------------------------------------------- /images/ajax_activity.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_activity.gif -------------------------------------------------------------------------------- /images/calendar_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/calendar_icon.gif -------------------------------------------------------------------------------- /images/icon_accounts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_accounts.gif -------------------------------------------------------------------------------- /images/icon_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_settings.gif -------------------------------------------------------------------------------- /images/top_banner_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/top_banner_bg.jpg -------------------------------------------------------------------------------- /images/ajax_no_activity.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_no_activity.gif -------------------------------------------------------------------------------- /images/fields_table_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/fields_table_bg.png -------------------------------------------------------------------------------- /images/icon_option_lists.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_option_lists.gif -------------------------------------------------------------------------------- /images/left_tab_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/left_tab_selected.gif -------------------------------------------------------------------------------- /images/page_content_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/page_content_bg.jpg -------------------------------------------------------------------------------- /images/popup_header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/popup_header_bg.png -------------------------------------------------------------------------------- /images/utilities_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/utilities_small.png -------------------------------------------------------------------------------- /images/account_section_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/account_section_bg.jpg -------------------------------------------------------------------------------- /images/ajax_activity_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_activity_grey.gif -------------------------------------------------------------------------------- /images/list_table_heading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/list_table_heading.jpg -------------------------------------------------------------------------------- /images/right_tab_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/right_tab_selected.gif -------------------------------------------------------------------------------- /images/tab_not_selected_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/tab_not_selected_bg.gif -------------------------------------------------------------------------------- /images/account_section_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/account_section_left.jpg -------------------------------------------------------------------------------- /images/account_section_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/account_section_right.jpg -------------------------------------------------------------------------------- /images/ajax_activity_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_activity_yellow.gif -------------------------------------------------------------------------------- /images/ajax_no_activity_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_no_activity_grey.gif -------------------------------------------------------------------------------- /images/left_tab_not_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/left_tab_not_selected.gif -------------------------------------------------------------------------------- /images/right_tab_not_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/right_tab_not_selected.gif -------------------------------------------------------------------------------- /images/ajax_activity_light_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_activity_light_grey.gif -------------------------------------------------------------------------------- /images/ajax_no_activity_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_no_activity_yellow.gif -------------------------------------------------------------------------------- /images/icon_field_option_groups.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/icon_field_option_groups.gif -------------------------------------------------------------------------------- /images/list_table_heading_over.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/list_table_heading_over.jpg -------------------------------------------------------------------------------- /images/ajax_no_activity_light_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/images/ajax_no_activity_light_grey.gif -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_flat_0_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_flat_0_000000_40x100.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_flat_0_444444_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_flat_0_444444_40x100.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/theme-ohcanada/master/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /about/screenshots.json: -------------------------------------------------------------------------------- 1 | { 2 | "screenshots": [ 3 | { "file": "screenshot2.gif", "desc": "The form submissions page" }, 4 | { "file": "screenshot3.gif", "desc": "The settings -> menus page" } 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /sass/index.scss: -------------------------------------------------------------------------------- 1 | @import 'emails'; 2 | @import 'fields'; 3 | @import 'forms'; 4 | @import 'general'; 5 | @import 'menus'; 6 | @import 'navigation'; 7 | @import 'option_lists'; 8 | @import 'public'; 9 | @import 'sortable'; 10 | @import 'submissions'; 11 | @import 'tabs'; 12 | @import 'views'; 13 | @import 'widgets'; 14 | -------------------------------------------------------------------------------- /modules_footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {* only display the footer area if there is some text entered for it *} 9 | {if $footer_text != "" || $g_enable_benchmarking} 10 | 14 | {/if} 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {* only display the footer area if there is some text entered for it *} 10 | {if $footer_text != "" || $g_enable_benchmarking} 11 | 15 | {/if} 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sass/_option_lists.scss: -------------------------------------------------------------------------------- 1 | // the option list sortable list 2 | .edit_option_list .col2 { 3 | width: 312px; 4 | } 5 | 6 | .edit_option_list .col2 input { 7 | width: 306px; 8 | } 9 | 10 | .edit_option_list .col3 { 11 | width: 312px; 12 | } 13 | 14 | .edit_option_list .col3 input { 15 | width: 306px; 16 | } 17 | 18 | .edit_option_list .col4 { 19 | width: 70px; 20 | } 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Oh Canada theme 2 | 3 | The "Oh Canada" Form Tools theme. 4 | 5 | 6 | ### Further Info 7 | 8 | - [Available Form Tools themes](https://themes.formtools.org/) 9 | - [About Form Tools themes](https://docs.formtools.org/userdoc/themes/) 10 | - [Installation instructions](https://docs.formtools.org/userdoc/themes/installing/) 11 | - [Upgrading](https://docs.formtools.org/userdoc/themes/upgrading/) 12 | -------------------------------------------------------------------------------- /sass/_menus.scss: -------------------------------------------------------------------------------- 1 | // the edit menu sortable list 2 | .edit_menu .col2 { 3 | width: 176px; 4 | } 5 | 6 | .edit_menu .col2 select { 7 | width: 174px; 8 | } 9 | 10 | .edit_menu .col3 { 11 | width: 172px; 12 | } 13 | 14 | .edit_menu .header_row .col3 { 15 | width: 171px; 16 | } 17 | 18 | .edit_menu .col3 input { 19 | width: 165px; 20 | } 21 | 22 | .edit_menu .col4 { 23 | width: 197px; 24 | } 25 | 26 | .edit_menu .col4 select { 27 | width: 99%; 28 | } 29 | 30 | .edit_menu .rows .col4 { 31 | width: 193px; 32 | padding-left: 3px; 33 | } 34 | 35 | .edit_menu .col5 { 36 | width: 78px; 37 | text-align: center; 38 | } 39 | 40 | .edit_menu li.col6 { 41 | width: 70px; 42 | } 43 | -------------------------------------------------------------------------------- /about/theme.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$head_title} 5 | 6 | 7 | 8 | {template_hook location="head_top"} 9 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | {$head_string} 28 | {$head_js} 29 | {$head_css} 30 | 31 | {template_hook location="head_bottom"} 32 | 33 | 34 | 35 |
36 | 37 | 70 | 71 |
72 | 73 | 74 | 75 | 80 |
76 |
77 | {ft_include file="menu.tpl"} 78 |
79 |
81 |
82 | -------------------------------------------------------------------------------- /sass/_navigation.scss: -------------------------------------------------------------------------------- 1 | div.nav_heading { 2 | font-weight: bold; 3 | padding-left: 4px; 4 | color: #444444; 5 | padding-top: 2px; 6 | padding-bottom: 2px; 7 | } 8 | 9 | div#nav_separator { 10 | border-bottom: 1px solid #efefef; 11 | margin-top: 12px; 12 | margin-bottom: 8px; 13 | width: 94%; 14 | } 15 | 16 | div#left_nav { 17 | margin: 0 14px 0 -18px; 18 | padding-left: 10px; 19 | background: transparent url('../images/left_nav_bg.jpg') repeat-x top left; 20 | min-height: 420px; 21 | } 22 | 23 | .nav_link { 24 | width: 150px; 25 | font-size: 8.6pt; 26 | } 27 | 28 | .nav_link a:link, 29 | .nav_link a:visited { 30 | width: 156px; 31 | display: block; 32 | vertical-align: center; 33 | text-decoration: none; 34 | padding-left: 4px; 35 | padding-top: 2px; 36 | padding-bottom: 2px; 37 | color: #555555; 38 | } 39 | 40 | .nav_link a:hover, 41 | body .nav_link_submenu a:hover { 42 | color: #ffffff; 43 | background-color: #999999; 44 | } 45 | 46 | .nav_link_submenu a:link, 47 | .nav_link_submenu a:visited { 48 | width: 150px; 49 | display: block; 50 | vertical-align: center; 51 | text-decoration: none; 52 | padding-left: 10px; 53 | padding-top: 2px; 54 | padding-bottom: 2px; 55 | color: #789078; 56 | } 57 | 58 | .nav_link_selected { 59 | text-decoration: none; 60 | padding-left: 20px; 61 | padding-top: 2px; 62 | padding-bottom: 2px; 63 | color: black; 64 | background-color: #d2e0ef; 65 | } 66 | 67 | .nav_link_selected a { 68 | color: black; 69 | text-decoration: none; 70 | } 71 | 72 | table.add_form_nav td { 73 | width: 16%; 74 | text-align: center; 75 | line-height: 15px; 76 | } 77 | 78 | table.add_form_nav td.selected { 79 | background-color: #007700; 80 | color: white; 81 | border-right: 1px solid #cccccc; 82 | } 83 | 84 | table.add_form_nav td.selected a:link, 85 | table.add_form_nav td.selected a:visited { 86 | text-decoration: none; 87 | width: 100%; 88 | color: white; 89 | display: block; 90 | padding: 1px; 91 | } 92 | 93 | table.add_form_nav td.unselected { 94 | background-color: #ffffff; 95 | color: #999999; 96 | border-top: 1px solid #cccccc; 97 | border-bottom: 1px solid #cccccc; 98 | border-right: 1px solid #cccccc; 99 | } 100 | 101 | // previous / next links 102 | .prevnext_links { 103 | text-align: right; 104 | margin-top: 4px; 105 | } 106 | 107 | .prevnext_links span { 108 | color: #cccccc; 109 | } 110 | 111 | .prevnext_links span.no_link { 112 | padding: 2px 8px; 113 | } 114 | 115 | .prevnext_links span a { 116 | padding: 2px 8px; 117 | background-color: #efefef; 118 | border-radius: 3px; 119 | color: #333333; 120 | } 121 | 122 | .prevnext_links span a:hover { 123 | background-color: #0b4a04; 124 | color: white; 125 | text-decoration: none; 126 | } 127 | 128 | // for nav pagination 129 | div#list_nav { 130 | line-height: 19px; 131 | margin-top: 2px; 132 | } 133 | 134 | div#list_nav span { 135 | font-size: 11pt; 136 | } 137 | 138 | #list_nav a:visited, 139 | #list_nav a:link { 140 | text-decoration: none; 141 | } 142 | 143 | #list_nav a:hover { 144 | text-decoration: underline; 145 | color: orange; 146 | } 147 | 148 | .menu_items { 149 | padding-top: 10px; 150 | } 151 | -------------------------------------------------------------------------------- /modules_header.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$head_title} 5 | 6 | 7 | 8 | {template_hook location="modules_head_top"} 9 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | {css_files files=$css_files module_folder=$module_folder root_url=$g_root_url} 28 | {js_files files=$js_files module_folder=$module_folder root_url=$g_root_url} 29 | 30 | {$head_string} 31 | {$head_js} 32 | {$head_css} 33 | {template_hook location="modules_head_top"} 34 | 35 | 36 | 37 |
38 | 39 | 72 | 73 |
74 | 75 | 76 | 77 | 97 |
78 |
79 | 80 | {if !$hide_nav_menu} 81 | 82 |
83 | {ft_include file="module_menu.tpl"} 84 |
85 | 86 | 87 | 88 | 91 | 94 | {/if} 95 |
96 |
98 |
99 | 100 | -------------------------------------------------------------------------------- /sass/_views.scss: -------------------------------------------------------------------------------- 1 | // sortable Views page 2 | .view_list .header_row .col2 { 3 | font-weight: normal; 4 | } 5 | 6 | .view_list .col2 { 7 | width: 60px; 8 | color: #336699; 9 | font-weight: bold; 10 | } 11 | 12 | .view_list .rows .col2 { 13 | width: 57px; 14 | padding-left: 3px; 15 | } 16 | 17 | .view_list .header_row .col3 { 18 | width: 239px; 19 | padding-left: 0; 20 | } 21 | 22 | .view_list .col3 { 23 | width: 237px; 24 | padding-left: 2px; 25 | } 26 | 27 | .view_list .col4 { 28 | width: 161px; 29 | } 30 | 31 | .view_list .col4 select { 32 | width: 160px; 33 | } 34 | 35 | .view_list .col5, 36 | .view_list .col6, 37 | .view_list .col7, 38 | .view_list .col8 { 39 | width: 35px; 40 | text-align: center; 41 | height: 23px; 42 | } 43 | 44 | .view_list .col5 a, 45 | .view_list .col6 a, 46 | .view_list .col7 a, 47 | .view_list .col8 a { 48 | display: block; 49 | text-decoration: none; 50 | height: 23px; 51 | } 52 | 53 | .view_list .header_row .col5 div { 54 | background: transparent url('../images/columns.png') no-repeat center center; 55 | width: 35px; 56 | height: 20px; 57 | } 58 | 59 | .view_list .header_row .col6 div { 60 | background: transparent url('../images/fields.png') no-repeat center center; 61 | width: 35px; 62 | height: 20px; 63 | } 64 | 65 | .view_list .header_row .col7 div { 66 | background: transparent url('../images/tabs.png') no-repeat center center; 67 | width: 35px; 68 | height: 20px; 69 | } 70 | 71 | .view_list .header_row .col8 div { 72 | background: transparent url('../images/filter.png') no-repeat center center; 73 | width: 35px; 74 | height: 20px; 75 | } 76 | 77 | .view_list .col5 a:hover, 78 | .view_list .col6 a:hover, 79 | .view_list .col7 a:hover, 80 | .view_list .col8 a:hover { 81 | color: orange; 82 | } 83 | 84 | // edit View fields sortable 85 | .edit_view_fields .header_row .col2 { 86 | width: 251px; 87 | padding-left: 0; 88 | } 89 | 90 | .edit_view_fields .col2 { 91 | width: 249px; 92 | padding-left: 2px; 93 | text-align: left; 94 | } 95 | 96 | .edit_view_fields .header_row .col3 { 97 | width: 175px; 98 | padding-left: 0; 99 | } 100 | 101 | .edit_view_fields .col3 { 102 | width: 173px; 103 | padding-left: 2px; 104 | } 105 | 106 | .edit_view_fields .col4 { 107 | width: 87px; 108 | text-align: center; 109 | } 110 | 111 | .edit_view_fields .col5 { 112 | width: 87px; 113 | text-align: center; 114 | } 115 | 116 | .new_view_default_submission_vals { 117 | width: 491px; 118 | } 119 | 120 | .new_view_default_submission_vals .col2 { 121 | width: 200px; 122 | } 123 | 124 | .new_view_default_submission_vals .col2 select { 125 | width: 198px; 126 | } 127 | 128 | .new_view_default_submission_vals .col3 { 129 | width: 217px; 130 | } 131 | 132 | .new_view_default_submission_vals .col3 input { 133 | width: 211px; 134 | } 135 | 136 | .view_fields_list { 137 | border: 1px solid #cccccc; 138 | border-bottom: 0; 139 | height: 220px; 140 | overflow-y: scroll; 141 | } 142 | 143 | .view_fields_list ul { 144 | list-style: none; 145 | margin: 0; 146 | padding-left: 0; 147 | } 148 | 149 | .view_fields_list ul li { 150 | padding: 2px 0 2px 2px; 151 | } 152 | 153 | .view_fields_list ul li:hover { 154 | background-color: #efefef; 155 | } 156 | 157 | .view_fields_list ul li input { 158 | margin-right: 8px; 159 | float: left; 160 | } 161 | 162 | .view_fields_list ul li label { 163 | display: block; 164 | } 165 | 166 | // standard View filter styles 167 | .standard_filters .col2 { 168 | width: 209px; 169 | } 170 | 171 | .standard_filters .col2 select { 172 | width: 208px; 173 | } 174 | 175 | .standard_filters .col3 { 176 | width: 172px; 177 | } 178 | 179 | .standard_filters .col3 input { 180 | width: 165px; 181 | } 182 | 183 | .standard_filters .col4 { 184 | width: 208px; 185 | } 186 | 187 | .standard_filters .col5 { 188 | text-align: center; 189 | } 190 | 191 | #standard_filters_table .cf_date_group input { 192 | width: 126px; 193 | } 194 | 195 | #standard_filters_table .cf_date_group img { 196 | margin-bottom: -4px; 197 | padding: 1px; 198 | } 199 | 200 | // edit view page 201 | #edit_view .sortable_group_header input { 202 | width: 240px; 203 | } 204 | 205 | #edit_view .sortable_group_header select { 206 | float: left; 207 | margin: 6px 0 1px 4px; 208 | width: 180px; 209 | } 210 | 211 | #new_view_dialog table, 212 | #new_view_dialog input { 213 | width: 100%; 214 | } 215 | 216 | .add_view_group_popup td { 217 | padding: 2px; 218 | } 219 | 220 | .add_view_group_popup .new_group_name { 221 | width: 100%; 222 | } 223 | 224 | #tab_options_table input { 225 | width: 98%; 226 | } 227 | -------------------------------------------------------------------------------- /sass/_fields.scss: -------------------------------------------------------------------------------- 1 | .scroll-pane { 2 | overflow: auto; 3 | width: 423px; 4 | float: left; 5 | min-height: 21px; 6 | } 7 | 8 | .scroll-content { 9 | width: 900px; 10 | float: left; 11 | } 12 | 13 | .scroll-bar-wrap { 14 | clear: left; 15 | padding: 0 4px 0 2px; 16 | margin: 0 -1px -1px; 17 | border-top: 0; 18 | } 19 | 20 | .scroll-bar-wrap .ui-slider { 21 | background: none; 22 | border: 0; 23 | height: 2em; 24 | margin: 0 auto; 25 | } 26 | 27 | .scroll-bar-wrap .ui-handle-helper-parent { 28 | position: relative; 29 | width: 100%; 30 | height: 100%; 31 | margin: 0 auto; 32 | } 33 | 34 | .scroll-bar-wrap .ui-slider-handle { 35 | top: .2em; 36 | height: 1.5em; 37 | margin-top: 5px; 38 | } 39 | 40 | .scroll-bar-wrap .ui-slider-handle .ui-icon { 41 | margin: -9px auto 0; 42 | position: relative; 43 | top: 50%; 44 | } 45 | 46 | body .scroll-bar-wrap .ui-slider { 47 | height: 1.6em; 48 | } 49 | 50 | body .scroll-bar-wrap .ui-slider-handle { 51 | height: 1.3em; 52 | } 53 | 54 | .sub_col1 { 55 | width: 170px; 56 | } 57 | 58 | .rows .sub_col1 { 59 | width: 170px; 60 | padding-left: 1px; 61 | } 62 | 63 | .rows .sub_col1 input { 64 | width: 164px; 65 | } 66 | 67 | .sub_col2 { 68 | width: 190px; 69 | } 70 | 71 | .sub_col2 select { 72 | width: 188px; 73 | } 74 | 75 | .sub_col3 { 76 | width: 57px; 77 | text-align: center; 78 | } 79 | 80 | .sub_col4 { 81 | width: 182px; 82 | } 83 | 84 | .sub_col4 select { 85 | width: 180px; 86 | } 87 | 88 | .sub_col5 { 89 | width: 100px; 90 | } 91 | 92 | .sub_col5 select { 93 | width: 98px; 94 | } 95 | 96 | .sub_col6 { 97 | width: 192px; 98 | } 99 | 100 | .rows .sub_col6 input { 101 | width: 184px; 102 | } 103 | 104 | body .edit_fields { 105 | background: transparent url('../images/fields_table_bg.png') repeat-y; 106 | } 107 | 108 | body .edit_fields .col3 { 109 | width: 424px; 110 | } 111 | 112 | body .edit_fields .header_row .col3 { 113 | background: none; 114 | border-right: 0; 115 | } 116 | 117 | .edit_fields .rows .col3 { 118 | overflow: hidden; 119 | } 120 | 121 | .edit_fields .header_row li.splitter, 122 | li.splitter, 123 | body .sortable div.row_content .system_field li.splitter, 124 | body .sortable div.row_content li.splitter { 125 | width: 1px; 126 | background-color: #999999; 127 | background-image: none; 128 | border-bottom: 0; 129 | } 130 | 131 | body .sortable div.row_content .system_field li.splitter { 132 | background-color: transparent; 133 | } 134 | 135 | .sortable li.subcol_header { 136 | width: 419px; 137 | overflow: hidden; 138 | } 139 | 140 | body .sortable div.row_content .system_field li.col0 { 141 | background-color: transparent; 142 | border-bottom: 0; 143 | } 144 | 145 | .sortable .rows div.row_content li.col0 { 146 | background-color: transparent; 147 | border-bottom: 0; 148 | } 149 | 150 | .sortable .rows .scroll-content { 151 | width: 900px; 152 | } 153 | 154 | .sortable ul.rows li .scroll-content li { 155 | margin-right: 0; 156 | padding-right: 1px; 157 | } 158 | 159 | body .edit_fields .rows .col3 { 160 | width: 419px; 161 | } 162 | 163 | body .sortable .rows .colN { 164 | margin-right: 0; 165 | } 166 | 167 | body .scroll-bar-wrap .ui-slide { 168 | height: 1.5em; 169 | } 170 | 171 | // the Edit Form -> Fields tab 172 | .edit_fields .col2 { 173 | width: 182px; 174 | } 175 | 176 | .edit_fields .col2 input { 177 | width: 176px; 178 | } 179 | 180 | .edit_fields .col4 { 181 | width: 178px; 182 | } 183 | 184 | .edit_fields .col4 select { 185 | width: 175px; 186 | } 187 | 188 | .edit_fields .col5 { 189 | width: 50px; 190 | text-align: center; 191 | } 192 | 193 | .edit_fields .colN { 194 | width: 18px; 195 | } 196 | 197 | 198 | // for the edit field dialog window 199 | #edit_field__display_text, 200 | #edit_field__field_name, 201 | #edit_field__db_column { 202 | width: 300px; 203 | } 204 | 205 | #edit_field_template .prev_field { 206 | float: left; 207 | margin-left: 4px; 208 | } 209 | 210 | #edit_field_template .next_field { 211 | float: right; 212 | margin-right: 4px; 213 | } 214 | 215 | #edit_field_template .field_nav { 216 | cursor: pointer; 217 | margin-top: 4px; 218 | color: green; 219 | } 220 | 221 | #edit_field_template a.disabled { 222 | color: #cccccc; 223 | } 224 | 225 | .inner_tab_content tr { 226 | height: 23px; 227 | } 228 | 229 | #edit_field_template .inner_tabset { 230 | min-height: 210px; 231 | } 232 | 233 | #edit_field__field_settings_loading { 234 | font-style: italic; 235 | } 236 | 237 | #edit_field__field_settings table td { 238 | vertical-align: top; 239 | } 240 | 241 | #edit_field .check_area:hover { 242 | background-color: #f2f2f2 !important; // sass-lint:disable-line no-important 243 | } 244 | -------------------------------------------------------------------------------- /sass/_sortable.scss: -------------------------------------------------------------------------------- 1 | // new sortable (drag-drop) "tables" - shared styles 2 | .sortable { 3 | border: 1px solid #dddddd; 4 | padding: 1px; 5 | } 6 | 7 | .sortable ul { 8 | list-style: none; 9 | margin: 0; 10 | padding: 0; 11 | } 12 | 13 | .sortable li { 14 | float: left; 15 | } 16 | 17 | .sortable ul.header_row li.col0 { 18 | border: 0; 19 | } 20 | 21 | .sortable ul.header_row li { 22 | height: 22px; 23 | border-right: 1px solid white; 24 | white-space: nowrap; 25 | } 26 | 27 | .sortable li.sortable_row { 28 | float: none; 29 | border-right: 0; 30 | margin-bottom: 1px; 31 | } 32 | 33 | .groupable li.sortable_row { 34 | background: transparent url('../../../global/images/group_block.png') repeat-y left bottom; 35 | } 36 | 37 | body .sortable_groups .empty_group { 38 | height: 2px; 39 | background-color: #efefef; 40 | } 41 | 42 | // these match the 1px border-right on the headers so it's easier to set widths for columns in the header and rows 43 | .sortable ul.rows li { 44 | margin-right: 1px; 45 | } 46 | 47 | .sortable .rows li.sortable_row { 48 | margin-right: 0; 49 | } 50 | 51 | .sortable .rows div.group_block_top { 52 | width: 14px; 53 | height: 2px; 54 | border-right: 0; 55 | background-color: white; 56 | float: left; 57 | } 58 | 59 | .sortable .rows div.row_content li { 60 | float: left; 61 | background-color: #efefef; 62 | border-bottom: 1px solid #cccccc; 63 | } 64 | 65 | body .sortable .rows li.rowN { 66 | margin-bottom: 0; 67 | } 68 | 69 | .sortable .rows div.row_content .rowN li { 70 | border-bottom: 0; 71 | } 72 | 73 | body .sortable .rows div.over .sort_col { 74 | background: #dddddd url('../images/sort.png') no-repeat 90% center; 75 | } 76 | 77 | body .sortable div.row_content .system_field li { 78 | background-color: #c6f1c9; 79 | } 80 | 81 | .sortable .sort_col { 82 | background-image: url('../images/sort.png'); 83 | background-repeat: no-repeat; 84 | background-position: 90% center; 85 | padding-left: 3px; 86 | width: 50px; 87 | cursor: move; 88 | } 89 | 90 | .groupable li.sort_col { 91 | width: 36px; 92 | } 93 | 94 | .sortable .rowN { 95 | border-bottom: 0; 96 | } 97 | 98 | .sortable .rows .rowN .row_content { 99 | border-bottom: 0; 100 | } 101 | 102 | .sortable .rows div.row_content li .scroll-content li { 103 | background-color: #f2f2f2; 104 | } 105 | 106 | .sortable .rows div.row_content .system_field li .scroll-content li { 107 | background-color: #ddf7df; 108 | } 109 | 110 | .sortable .colN, 111 | body .sortable ul.header_row .colN { 112 | border-right: 0; 113 | } 114 | 115 | .sortable ul li.del { 116 | text-align: center; 117 | width: 18px; 118 | } 119 | 120 | .sortable ul li.edit { 121 | text-align: center; 122 | width: 18px; 123 | } 124 | 125 | .sortable .rows .del, 126 | .sortable .rows .edit, 127 | .sortable .rows .edit a { 128 | height: 21px; 129 | display: block; 130 | cursor: pointer; 131 | } 132 | 133 | .sortable .rows .del { 134 | background: transparent url('../images/delete.png') no-repeat 2px 4px; 135 | } 136 | 137 | .sortable .rows .edit { 138 | background: transparent url('../images/edit.png') no-repeat center 2px; 139 | } 140 | 141 | .sortable .rows .del:hover { 142 | background: transparent url('../images/delete.png') no-repeat -22px 4px; 143 | } 144 | 145 | .sortable .header_row li { 146 | background-image: url('../images/list_table_heading.jpg'); 147 | text-align: center; 148 | color: white; 149 | } 150 | 151 | .sortable .header_row .col1 { 152 | width: 53px; 153 | margin-right: 0; 154 | } 155 | 156 | .sortable .col1 { 157 | color: #666666; 158 | } 159 | 160 | .sortable .sortable_row li { 161 | height: 21px; 162 | } 163 | 164 | body .sortable li.rowN { 165 | margin-top: 1px; 166 | } 167 | 168 | body .sortable .rows .delete_row_hover li, 169 | .list_table tr.delete_row_hover, 170 | .list_table tr.delete_row_hover td { 171 | background-color: #770000; 172 | color: #ffffff; 173 | } 174 | 175 | body .sortable .rows div.delete_row_hover li ul.scroll-content li, 176 | body .sortable .rows div.row_content .delete_row_hover li .scroll-content li { 177 | background-color: #881f1f; 178 | } 179 | 180 | body .sortable .rows .delete_row_hover li, 181 | body .sortable .rows .delete_row_hover span, 182 | body .sortable .rows .delete_row_hover a, 183 | .list_table tr.delete_row_hover a, 184 | .list_table tr.delete_row_hover span { 185 | color: #ffffff; 186 | } 187 | 188 | .list_table tr.delete_row_hover span.num_submissions_box { 189 | color: black; 190 | } 191 | 192 | body .sortable .rows .delete_row_hover li.sort_col { 193 | color: #ffffaa; 194 | } 195 | 196 | body .sortable .rows div.delete_row_hover li.sort_col, 197 | body .sortable .rows div.row_content .delete_row_hover li { 198 | background-color: #770000; 199 | } 200 | 201 | body .sortable .rows div.row_content .delete_row_hover li.col0 { 202 | background-color: transparent; 203 | } 204 | 205 | body .sortable .rows div.row_content .delete_row_hover li.splitter { 206 | background-color: #999999; 207 | } 208 | 209 | body .sortable .rows .edit_row_hover li, 210 | body .sortable .rows div.edit_row_hover li.sort_col, 211 | .list_table tr.edit_row_hover, 212 | .list_table tr.edit_row_hover td, 213 | body .sortable .rows div.edit_row_hover li ul.scroll-content li, 214 | body .sortable .rows div.row_content .edit_row_hover li .scroll-content li, 215 | body .sortable .rows div.edit_row_hover li.sort_col, 216 | body .sortable .rows div.row_content .edit_row_hover li { 217 | background-color: #dddddd; 218 | } 219 | 220 | body .sortable .rows div.row_content .edit_row_hover li.splitter { 221 | background-color: #999999; 222 | } 223 | 224 | body .sortable .rows .edit_row_hover li.sort_col { 225 | color: #000000; 226 | } 227 | 228 | body .sortable .rows div.row_content .edit_row_hover li.col0 { 229 | background-color: transparent; 230 | } 231 | 232 | .row_group { 233 | position: relative; 234 | float: right; 235 | } 236 | 237 | .sortable .rows .col0 { 238 | background-color: transparent; 239 | width: 12px; 240 | height: 15px; 241 | position: absolute; 242 | left: -14px; 243 | top: 16px; 244 | z-index: 2; 245 | } 246 | 247 | .sortable_group { 248 | margin-bottom: 8px; 249 | } 250 | 251 | .sortable_group_header { 252 | background-color: #d5edd7; 253 | border-top-left-radius: 6px; 254 | border-top-right-radius: 6px; 255 | } 256 | 257 | .sortable_group_footer { 258 | background-color: #d5edd7; 259 | border-bottom-left-radius: 6px; 260 | border-bottom-right-radius: 6px; 261 | height: 20px; 262 | } 263 | 264 | body .padded_footer { 265 | height: 23px; 266 | } 267 | 268 | .sortable_group_footer a { 269 | float: right; 270 | margin-right: 5px; 271 | } 272 | 273 | .sortable_group_header label { 274 | padding: 6px 6px 6px 12px; 275 | width: 140px; 276 | float: left; 277 | color: #345437; 278 | } 279 | 280 | .sortable_group_header input { 281 | float: left; 282 | margin: 6px 0 1px; 283 | width: 300px; 284 | } 285 | 286 | .sortable_group_header .sort { 287 | cursor: move; 288 | padding: 6px; 289 | background: transparent url('../images/sort.png') no-repeat 50% center; 290 | border-top-left-radius: 6px; 291 | height: 20px; 292 | width: 10px; 293 | float: left; 294 | } 295 | 296 | .sortable_group_header .sort:hover { 297 | background-color: #beddc0; 298 | } 299 | 300 | .sortable_group_header .delete_group { 301 | float: right; 302 | background: transparent url('../images/delete_group.png') no-repeat -22px 3px; 303 | width: 18px; 304 | height: 20px; 305 | margin: 6px 2px 6px 0; 306 | } 307 | 308 | .sortable_group_header .delete_group:hover { 309 | background: transparent url('../images/delete_group.png') no-repeat 2px 3px; 310 | cursor: pointer; 311 | } 312 | 313 | .sortable .rows div.grouped_row .row_group li { 314 | border-bottom: 1px solid transparent; 315 | } 316 | 317 | .sortable .rows div.grouped_row div.row_group:last-child li { 318 | border-bottom: 1px solid #cccccc; 319 | } 320 | 321 | .sortable .rows div.grouped_row div.row_group:last-child li.col0 { 322 | border-bottom: 1px solid transparent; 323 | } 324 | 325 | body .sortable .rows div.grouped_row div.rowN:last-child li { 326 | border-bottom: 0; 327 | } 328 | -------------------------------------------------------------------------------- /sass/_general.scss: -------------------------------------------------------------------------------- 1 | html { 2 | overflow-y: scroll; 3 | overflow-x: auto; 4 | } 5 | 6 | body, 7 | html { 8 | height: 100%; 9 | margin: 0; 10 | padding: 0; 11 | background-color: #ffffff; 12 | } 13 | 14 | body { 15 | background-image: url('../images/top_row.jpg'); 16 | background-repeat: repeat-x; 17 | background-position: center top; 18 | text-align: center; 19 | } 20 | 21 | body, 22 | table, 23 | td, 24 | div, 25 | span, 26 | div, 27 | p, 28 | textarea { 29 | font: 11px Verdana, sans-serif; 30 | line-height: 20px; 31 | color: #333333; 32 | } 33 | 34 | input, 35 | select, 36 | option { 37 | font: 11px Verdana, sans-serif; 38 | color: #333333; 39 | } 40 | 41 | input[type='text'], 42 | input[type='password'], 43 | textarea { 44 | border-top: 1px #acaeb4 solid; 45 | border-left: 1px #dde1e7 solid; 46 | border-right: 1px #dde1e7 solid; 47 | border-bottom: 2px #f1f4f7 solid; 48 | padding: 1px; 49 | border-radius: 2px; 50 | } 51 | 52 | #container { 53 | width: 950px; 54 | text-align: left; 55 | margin: 0 auto; 56 | } 57 | 58 | #header { 59 | height: 63px; 60 | position: relative; 61 | text-align: center; 62 | width: 950px; 63 | } 64 | 65 | #content { 66 | padding: 24px 18px 18px; 67 | } 68 | 69 | a:link, 70 | a:visited { 71 | color: #990000; 72 | text-decoration: none; 73 | outline: none; 74 | } 75 | 76 | a:hover { 77 | color: #990000; 78 | text-decoration: underline; 79 | } 80 | 81 | a.no_border:link, 82 | a.no_border:visited { 83 | border-bottom: 0; 84 | outline: none; 85 | } 86 | 87 | .clear { 88 | clear: both; 89 | } 90 | 91 | .clear_left { 92 | clear: left; 93 | } 94 | 95 | .clear_right { 96 | clear: right; 97 | } 98 | 99 | img { 100 | border: 0; 101 | } 102 | 103 | form { 104 | margin: 0; 105 | } 106 | 107 | .rsvErrorField { 108 | background-color: #990000; 109 | color: #ffffcc; 110 | } 111 | 112 | #account_section { 113 | background-image: url('../images/account_section_bg.jpg'); 114 | background-repeat: repeat-x; 115 | height: 25px; 116 | padding-left: 12px; 117 | padding-right: 12px; 118 | color: white; 119 | padding-bottom: 4px; 120 | } 121 | 122 | #account_section a:link, 123 | #account_section a:visited { 124 | color: #f2f2f2; 125 | text-decoration: none; 126 | } 127 | 128 | .lang_field_full { 129 | width: 473px; 130 | } 131 | 132 | .footer { 133 | padding: 4px; 134 | border-radius: 4px; 135 | background-color: #f9f9f9; 136 | border: 1px #dddddd solid; 137 | text-align: center; 138 | margin: 10px 0; 139 | } 140 | 141 | .title { 142 | color: #444444; 143 | padding-bottom: 5px; 144 | font: 17.6px/20px Verdana, sans-serif; 145 | } 146 | 147 | .title span.identifier { 148 | font-size: 17.6px; 149 | font-family: Verdana, sans-serif; 150 | line-height: 11px; 151 | } 152 | 153 | .title a:link, 154 | .title a:visited { 155 | text-decoration: none; 156 | } 157 | 158 | .title a:hover { 159 | border-bottom: 1px solid #336699; 160 | } 161 | 162 | .subtitle { 163 | font-size: 8pt; 164 | color: #4b6c4e; 165 | letter-spacing: 1px; 166 | } 167 | 168 | .underline { 169 | border-bottom: 1px solid #cccccc; 170 | } 171 | 172 | .heading { 173 | font-size: 10pt; 174 | font-weight: bold; 175 | } 176 | 177 | .large_text { 178 | font-size: 12pt; 179 | } 180 | 181 | .list_table, 182 | .submissions_table { 183 | border: 1px solid #dddddd; 184 | border-spacing: 1px; 185 | width: 100%; 186 | } 187 | 188 | .list_table th, 189 | .submissions_table th { 190 | background-image: url('../images/list_table_heading.jpg'); 191 | color: white; 192 | height: 18px; 193 | text-align: center; 194 | font-weight: normal; 195 | cursor: auto; 196 | white-space: nowrap; 197 | } 198 | 199 | // prevents rich-text fields from having their

tags 200 | .list_table th, 201 | .submissions_table p { 202 | margin: 0; 203 | padding: 0; 204 | } 205 | 206 | .list_table th.over, 207 | .submissions_table th.over, 208 | th.sortable_col :hover { 209 | background-image: url('../images/list_table_heading_over.jpg'); 210 | } 211 | 212 | .list_table th td { 213 | vertical-align: middle; 214 | } 215 | 216 | .list_table td { 217 | vertical-align: top; 218 | } 219 | 220 | .submissions_table td { 221 | padding: 0 2px; 222 | vertical-align: top; 223 | 224 | } 225 | 226 | .submissions_table td .truncate { 227 | text-overflow: ellipsis; 228 | white-space: nowrap; 229 | overflow: hidden; 230 | } 231 | 232 | .submissions_table td .truncate_no_fixed_width { 233 | overflow: hidden; 234 | height: 20px; 235 | } 236 | 237 | .list_table th a:link, 238 | .list_table th a:visited, 239 | .submissions_table th a:link, 240 | .submissions_table th a:visited { 241 | color: white; 242 | text-decoration: none; 243 | display: block; 244 | white-space: nowrap; 245 | padding: 0 3px; 246 | } 247 | 248 | .submissions_table th:hover a { 249 | color: #ffffee; 250 | } 251 | 252 | .list_table th.del { 253 | text-align: center; 254 | } 255 | 256 | .list_table th.edit, 257 | .submissions_table th.edit { 258 | text-align: center; 259 | } 260 | 261 | .list_table tr { 262 | background-color: #f2f2f2; 263 | height: 21px; 264 | } 265 | 266 | .list_table tr th table tr td { 267 | background-image: url('../images/list_table_heading.jpg'); 268 | } 269 | 270 | .submissions_table tr { 271 | height: 20px; 272 | cursor: pointer; 273 | } 274 | 275 | .list_table .del2 { 276 | background-image: url('../images/delete_bg.jpg'); 277 | } 278 | 279 | .list_table .del2 a:link, 280 | .list_table .del2 a:visited { 281 | color: white; 282 | } 283 | 284 | .list_table .del2 a:hover { 285 | color: orange; 286 | } 287 | 288 | .list_table td.del { 289 | background: url('../images/delete.png') no-repeat scroll 2px 3px transparent; 290 | text-align: center; 291 | width: 18px; 292 | height: 20px; 293 | } 294 | 295 | .list_table td.del a { 296 | display: block; 297 | height: 18px; 298 | } 299 | 300 | .list_table td.del:hover { 301 | background: transparent url('../images/delete.png') no-repeat -22px 3px; 302 | } 303 | 304 | .list_table td.edit, 305 | .list_table th.edit { 306 | width: 18px; 307 | height: 18px; 308 | } 309 | 310 | .list_table td.edit { 311 | text-align: center; 312 | background: transparent url('../images/edit.png') no-repeat center 1px; 313 | padding: 0; 314 | } 315 | 316 | .list_table td.edit a { 317 | width: 18px; 318 | height: 18px; 319 | display: block; 320 | } 321 | 322 | .list_table td.center, 323 | .list_table th.center { 324 | text-align: center; 325 | } 326 | 327 | .notify { 328 | border: 1px solid #0058db; 329 | background-color: #f2f8ff; 330 | } 331 | 332 | .notify div { 333 | color: #0058db; 334 | } 335 | 336 | .error { 337 | border: 1px solid #cc0000; 338 | background-color: #ffeded; 339 | } 340 | 341 | .error div { 342 | color: #aa0000; 343 | } 344 | 345 | .errorField { 346 | background-color: #cc0000; 347 | color: white; 348 | } 349 | 350 | .box { 351 | border: 1px solid #666666; 352 | background-color: #ffffee; 353 | color: #333333; 354 | padding: 5px; 355 | } 356 | 357 | .grey_box { 358 | background-color: #f9f9f9; 359 | padding: 5px; 360 | border: 1px solid #cccccc; 361 | } 362 | 363 | .blue_box { 364 | background-color: #cfecff; 365 | padding: 5px; 366 | border: 1px solid #336699; 367 | } 368 | 369 | .light_blue_box { 370 | background-color: green; 371 | padding: 5px; 372 | border: 1px solid #336699; 373 | } 374 | 375 | #search_form { 376 | margin-bottom: 8px; 377 | } 378 | 379 | #search_form_table { 380 | border-top: 1px solid #dddddd; 381 | border-bottom: 1px solid #dddddd; 382 | border-spacing: 1px; 383 | background-color: #efefef; 384 | padding: 5px; 385 | } 386 | 387 | .search_keyword { 388 | width: 110px; 389 | } 390 | 391 | #search_field { 392 | margin-right: 1px; 393 | max-width: 256px; 394 | } 395 | 396 | .next_step { 397 | color: #336699; 398 | font-weight: bold; 399 | } 400 | 401 | .ul_no_indent { 402 | padding-left: 0; 403 | margin-left: 20px; 404 | } 405 | 406 | .highlighted_text { 407 | color: #cc0000; 408 | } 409 | 410 | .strong_button { 411 | font-weight: bold; 412 | color: #336699; 413 | } 414 | 415 | .page_break { 416 | page-break-after: always; 417 | } 418 | 419 | #nav_previous_page { 420 | color: #cccccc; 421 | } 422 | 423 | #nav_next_page { 424 | color: #cccccc; 425 | } 426 | 427 | .previous_page_icon { 428 | float: right; 429 | margin-top: 5px; 430 | } 431 | 432 | #account_section a.update_link { 433 | color: #ffffcc; 434 | } 435 | 436 | #account_section a.update_link:hover { 437 | color: orange; 438 | } 439 | 440 | #client_forms_table select { 441 | width: 100%; 442 | } 443 | 444 | .joiner { 445 | color: #999999; 446 | font-size: 10px; 447 | line-height: 11px; 448 | } 449 | 450 | .check_area:hover { 451 | background-color: #dfdfdf !important; // sass-lint:disable-line no-important 452 | } 453 | 454 | .italic { 455 | font-style: italic; 456 | } 457 | 458 | .hint { 459 | color: #666666; 460 | font-style: italic; 461 | background-color: #f2f2f2; 462 | padding: 3px; 463 | } 464 | 465 | .module_section { 466 | border-radius: 6px; 467 | background-color: #e6f5ff; 468 | padding: 2px 8px 8px; 469 | margin-top: 12px; 470 | border: 1px solid #999999; 471 | display: inline-block; 472 | position: relative; 473 | } 474 | 475 | .module_section h2 { 476 | font: 11px/20px Verdana, sans-serif; 477 | color: #777777; 478 | margin: 0; 479 | padding: 2px 0; 480 | font-style: italic; 481 | } 482 | 483 | .module_section .module_link { 484 | width: 16px; 485 | height: 16px; 486 | background-image: url('../images/utilities_small.png'); 487 | position: absolute; 488 | right: 3px; 489 | top: 3px; 490 | } 491 | 492 | .module_section .module_link a { 493 | display: block; 494 | width: 16px; 495 | height: 16px; 496 | } 497 | 498 | .export_manager_module table tr { 499 | height: 23px; 500 | } 501 | 502 | .export_manager_module .icon { 503 | padding-right: 6px; 504 | } 505 | 506 | .export_manager_module .export_group_name { 507 | padding-right: 10px; 508 | } 509 | 510 | .export_manager_module .target_content { 511 | padding-right: 10px; 512 | } 513 | 514 | .add_group_popup input { 515 | width: 100%; 516 | } 517 | 518 | .selected_row { 519 | background-color: #e6f6e7; 520 | } 521 | 522 | // this should be used for all dialog windows 523 | .ft_dialog td { 524 | padding: 1px; 525 | } 526 | 527 | .edit_submission { 528 | width: 100%; 529 | } 530 | 531 | .edit_submission h3 { 532 | border-bottom: 1px solid #cccccc; 533 | margin: 0 0 8px; 534 | color: #4b6c4e; 535 | font-size: 8pt; 536 | letter-spacing: 1px; 537 | } 538 | 539 | .edit_submission .list_table { 540 | margin-bottom: 14px; 541 | } 542 | 543 | .num_submissions_box { 544 | background-color: #ffffdd; 545 | font-size: 6pt; 546 | color: black; 547 | font-family: arial; 548 | width: 26px; 549 | height: 10px; 550 | border-radius: 3px; 551 | line-height: 12px; 552 | padding-bottom: 1px; 553 | position: absolute; 554 | top: 4px; 555 | right: 12px; 556 | text-align: center; 557 | } 558 | 559 | .form_info_link { 560 | position: relative; 561 | } 562 | 563 | .form_info_link a { 564 | display: block; 565 | padding: 0 44px 0 14px; 566 | } 567 | 568 | .loading_small { 569 | background-image: url('../../../global/images/loading_small.gif'); 570 | margin: 3px 0; 571 | height: 16px; 572 | width: 16px; 573 | } 574 | 575 | a.show_form { 576 | width: 13px; 577 | height: 13px; 578 | background-image: url('../../../global/images/open_new_window.png'); 579 | float: right; 580 | margin: 2px 4px; 581 | } 582 | 583 | .views_dropdown { 584 | background-color: #e8e8e8; 585 | display: inline-block; 586 | height: 23px; 587 | border-radius: 4px; 588 | } 589 | 590 | .views_dropdown select { 591 | margin: 2px; 592 | } 593 | 594 | .button_separator { 595 | color: #dddddd; 596 | margin-left: 16px; 597 | margin-right: 16px; 598 | } 599 | 600 | .desc { 601 | font-style: italic; 602 | color: #999999; 603 | margin-bottom: 6px; 604 | } 605 | -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | .template{font-size:11px;color:#666666;font-family:'Courier New'}#list_current_page{border:1px solid #336699;background-color:#e5f3fe;font-weight:bold;padding:2px}.subpanel{background-color:#e9e9e9;padding:3px;border-right:1px solid #ffffff;border-bottom:1px solid #ffffff;border-top:1px solid #e1e1e1;border-left:1px solid #e1e1e1}table.subpanel td{background-color:#e9e9e9}#email_recipients{border:1px solid #336699;background-color:#f2f8ff;line-height:20px;margin-top:4px}#email_recipients a:visited,#email_recipients a:link{color:red;text-decoration:none}#email_recipients a:hover{text-decoration:underline}.scroll-pane{overflow:auto;width:423px;float:left;min-height:21px}.scroll-content{width:900px;float:left}.scroll-bar-wrap{clear:left;padding:0 4px 0 2px;margin:0 -1px -1px;border-top:0}.scroll-bar-wrap .ui-slider{background:none;border:0;height:2em;margin:0 auto}.scroll-bar-wrap .ui-handle-helper-parent{position:relative;width:100%;height:100%;margin:0 auto}.scroll-bar-wrap .ui-slider-handle{top:.2em;height:1.5em;margin-top:5px}.scroll-bar-wrap .ui-slider-handle .ui-icon{margin:-9px auto 0;position:relative;top:50%}body .scroll-bar-wrap .ui-slider{height:1.6em}body .scroll-bar-wrap .ui-slider-handle{height:1.3em}.sub_col1{width:170px}.rows .sub_col1{width:170px;padding-left:1px}.rows .sub_col1 input{width:164px}.sub_col2{width:190px}.sub_col2 select{width:188px}.sub_col3{width:57px;text-align:center}.sub_col4{width:182px}.sub_col4 select{width:180px}.sub_col5{width:100px}.sub_col5 select{width:98px}.sub_col6{width:192px}.rows .sub_col6 input{width:184px}body .edit_fields{background:transparent url("../images/fields_table_bg.png") repeat-y}body .edit_fields .col3{width:424px}body .edit_fields .header_row .col3{background:none;border-right:0}.edit_fields .rows .col3{overflow:hidden}.edit_fields .header_row li.splitter,li.splitter,body .sortable div.row_content .system_field li.splitter,body .sortable div.row_content li.splitter{width:1px;background-color:#999999;background-image:none;border-bottom:0}body .sortable div.row_content .system_field li.splitter{background-color:transparent}.sortable li.subcol_header{width:419px;overflow:hidden}body .sortable div.row_content .system_field li.col0{background-color:transparent;border-bottom:0}.sortable .rows div.row_content li.col0{background-color:transparent;border-bottom:0}.sortable .rows .scroll-content{width:900px}.sortable ul.rows li .scroll-content li{margin-right:0;padding-right:1px}body .edit_fields .rows .col3{width:419px}body .sortable .rows .colN{margin-right:0}body .scroll-bar-wrap .ui-slide{height:1.5em}.edit_fields .col2{width:182px}.edit_fields .col2 input{width:176px}.edit_fields .col4{width:178px}.edit_fields .col4 select{width:175px}.edit_fields .col5{width:50px;text-align:center}.edit_fields .colN{width:18px}#edit_field__display_text,#edit_field__field_name,#edit_field__db_column{width:300px}#edit_field_template .prev_field{float:left;margin-left:4px}#edit_field_template .next_field{float:right;margin-right:4px}#edit_field_template .field_nav{cursor:pointer;margin-top:4px;color:green}#edit_field_template a.disabled{color:#cccccc}.inner_tab_content tr{height:23px}#edit_field_template .inner_tabset{min-height:210px}#edit_field__field_settings_loading{font-style:italic}#edit_field__field_settings table td{vertical-align:top}#edit_field .check_area:hover{background-color:#f2f2f2 !important}.incomplete{width:200px;padding:5px;border:1px solid #999999;background-color:#ffffcc;text-align:center;border-radius:6px}#add_form .multi_page_form_list{width:529px}#add_form .multi_page_form_list .col2{width:355px}#add_form .multi_page_form_list .col2 input{width:349px}#add_form .multi_page_form_list .col3{width:100px}#add_form .multi_page_form_list .col3 input{width:98px}.add_form_step4 .col1{color:#666666}.add_form_step4 .col2{width:193px}.add_form_step4 .rows .col2{padding-left:3px;width:190px}.add_form_step4 .col3{width:202px}.add_form_step4 .rows .col3 input{width:195px}.add_form_step4 .col4{width:266px}.add_form_step4 .rows .col4{padding-left:3px;width:263px}.add_form_step4 .col5{width:18px}.review_field_options .col2{width:261px}.review_field_options .col2 input{width:255px}.review_field_options .col3{width:261px}.review_field_options .col3 input{width:255px}.multi_page_form_list{width:491px}.multi_page_form_list .col2{width:317px}.multi_page_form_list .col2 input{width:311px}.multi_page_form_list .col3{width:100px}.multi_page_form_list .col3 input{width:98px}.new_submission_default_vals{width:194px}.new_submission_default_val_fields{width:272px}.placeholders_section{padding:6px;border-radius:4px;background-color:#efefef;float:right;margin-left:6px}.placeholders_section:hover{background-color:#dddddd;cursor:pointer}.placeholders_section img{float:right}.placeholders_link{margin:0 8px 0 2px}#placeholders_dialog_content{text-align:left;height:500px}.placeholder_field_overlay{width:16px;height:16px;position:absolute;cursor:pointer;z-index:2;margin:2px;padding-left:5px}html{overflow-y:scroll;overflow-x:auto}body,html{height:100%;margin:0;padding:0;background-color:#ffffff}body{background-image:url("../images/top_row.jpg");background-repeat:repeat-x;background-position:center top;text-align:center}body,table,td,div,span,div,p,textarea{font:11px Verdana, sans-serif;line-height:20px;color:#333333}input,select,option{font:11px Verdana, sans-serif;color:#333333}input[type='text'],input[type='password'],textarea{border-top:1px #acaeb4 solid;border-left:1px #dde1e7 solid;border-right:1px #dde1e7 solid;border-bottom:2px #f1f4f7 solid;padding:1px;border-radius:2px}#container{width:950px;text-align:left;margin:0 auto}#header{height:63px;position:relative;text-align:center;width:950px}#content{padding:24px 18px 18px}a:link,a:visited{color:#990000;text-decoration:none;outline:none}a:hover{color:#990000;text-decoration:underline}a.no_border:link,a.no_border:visited{border-bottom:0;outline:none}.clear{clear:both}.clear_left{clear:left}.clear_right{clear:right}img{border:0}form{margin:0}.rsvErrorField{background-color:#990000;color:#ffffcc}#account_section{background-image:url("../images/account_section_bg.jpg");background-repeat:repeat-x;height:25px;padding-left:12px;padding-right:12px;color:white;padding-bottom:4px}#account_section a:link,#account_section a:visited{color:#f2f2f2;text-decoration:none}.lang_field_full{width:473px}.footer{padding:4px;border-radius:4px;background-color:#f9f9f9;border:1px #dddddd solid;text-align:center;margin:10px 0}.title{color:#444444;padding-bottom:5px;font:17.6px/20px Verdana, sans-serif}.title span.identifier{font-size:17.6px;font-family:Verdana, sans-serif;line-height:11px}.title a:link,.title a:visited{text-decoration:none}.title a:hover{border-bottom:1px solid #336699}.subtitle{font-size:8pt;color:#4b6c4e;letter-spacing:1px}.underline{border-bottom:1px solid #cccccc}.heading{font-size:10pt;font-weight:bold}.large_text{font-size:12pt}.list_table,.submissions_table{border:1px solid #dddddd;border-spacing:1px;width:100%}.list_table th,.submissions_table th{background-image:url("../images/list_table_heading.jpg");color:white;height:18px;text-align:center;font-weight:normal;cursor:auto;white-space:nowrap}.list_table th,.submissions_table p{margin:0;padding:0}.list_table th.over,.submissions_table th.over,th.sortable_col :hover{background-image:url("../images/list_table_heading_over.jpg")}.list_table th td{vertical-align:middle}.list_table td{vertical-align:top}.submissions_table td{padding:0 2px;vertical-align:top}.submissions_table td .truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.submissions_table td .truncate_no_fixed_width{overflow:hidden;height:20px}.list_table th a:link,.list_table th a:visited,.submissions_table th a:link,.submissions_table th a:visited{color:white;text-decoration:none;display:block;white-space:nowrap;padding:0 3px}.submissions_table th:hover a{color:#ffffee}.list_table th.del{text-align:center}.list_table th.edit,.submissions_table th.edit{text-align:center}.list_table tr{background-color:#f2f2f2;height:21px}.list_table tr th table tr td{background-image:url("../images/list_table_heading.jpg")}.submissions_table tr{height:20px;cursor:pointer}.list_table .del2{background-image:url("../images/delete_bg.jpg")}.list_table .del2 a:link,.list_table .del2 a:visited{color:white}.list_table .del2 a:hover{color:orange}.list_table td.del{background:url("../images/delete.png") no-repeat scroll 2px 3px transparent;text-align:center;width:18px;height:20px}.list_table td.del a{display:block;height:18px}.list_table td.del:hover{background:transparent url("../images/delete.png") no-repeat -22px 3px}.list_table td.edit,.list_table th.edit{width:18px;height:18px}.list_table td.edit{text-align:center;background:transparent url("../images/edit.png") no-repeat center 1px;padding:0}.list_table td.edit a{width:18px;height:18px;display:block}.list_table td.center,.list_table th.center{text-align:center}.notify{border:1px solid #0058db;background-color:#f2f8ff}.notify div{color:#0058db}.error{border:1px solid #cc0000;background-color:#ffeded}.error div{color:#aa0000}.errorField{background-color:#cc0000;color:white}.box{border:1px solid #666666;background-color:#ffffee;color:#333333;padding:5px}.grey_box{background-color:#f9f9f9;padding:5px;border:1px solid #cccccc}.blue_box{background-color:#cfecff;padding:5px;border:1px solid #336699}.light_blue_box{background-color:green;padding:5px;border:1px solid #336699}#search_form{margin-bottom:8px}#search_form_table{border-top:1px solid #dddddd;border-bottom:1px solid #dddddd;border-spacing:1px;background-color:#efefef;padding:5px}.search_keyword{width:110px}#search_field{margin-right:1px;max-width:256px}.next_step{color:#336699;font-weight:bold}.ul_no_indent{padding-left:0;margin-left:20px}.highlighted_text{color:#cc0000}.strong_button{font-weight:bold;color:#336699}.page_break{page-break-after:always}#nav_previous_page{color:#cccccc}#nav_next_page{color:#cccccc}.previous_page_icon{float:right;margin-top:5px}#account_section a.update_link{color:#ffffcc}#account_section a.update_link:hover{color:orange}#client_forms_table select{width:100%}.joiner{color:#999999;font-size:10px;line-height:11px}.check_area:hover{background-color:#dfdfdf !important}.italic{font-style:italic}.hint{color:#666666;font-style:italic;background-color:#f2f2f2;padding:3px}.module_section{border-radius:6px;background-color:#e6f5ff;padding:2px 8px 8px;margin-top:12px;border:1px solid #999999;display:inline-block;position:relative}.module_section h2{font:11px/20px Verdana, sans-serif;color:#777777;margin:0;padding:2px 0;font-style:italic}.module_section .module_link{width:16px;height:16px;background-image:url("../images/utilities_small.png");position:absolute;right:3px;top:3px}.module_section .module_link a{display:block;width:16px;height:16px}.export_manager_module table tr{height:23px}.export_manager_module .icon{padding-right:6px}.export_manager_module .export_group_name{padding-right:10px}.export_manager_module .target_content{padding-right:10px}.add_group_popup input{width:100%}.selected_row{background-color:#e6f6e7}.ft_dialog td{padding:1px}.edit_submission{width:100%}.edit_submission h3{border-bottom:1px solid #cccccc;margin:0 0 8px;color:#4b6c4e;font-size:8pt;letter-spacing:1px}.edit_submission .list_table{margin-bottom:14px}.num_submissions_box{background-color:#ffffdd;font-size:6pt;color:black;font-family:arial;width:26px;height:10px;border-radius:3px;line-height:12px;padding-bottom:1px;position:absolute;top:4px;right:12px;text-align:center}.form_info_link{position:relative}.form_info_link a{display:block;padding:0 44px 0 14px}.loading_small{background-image:url("../../../global/images/loading_small.gif");margin:3px 0;height:16px;width:16px}a.show_form{width:13px;height:13px;background-image:url("../../../global/images/open_new_window.png");float:right;margin:2px 4px}.views_dropdown{background-color:#e8e8e8;display:inline-block;height:23px;border-radius:4px}.views_dropdown select{margin:2px}.button_separator{color:#dddddd;margin-left:16px;margin-right:16px}.desc{font-style:italic;color:#999999;margin-bottom:6px}.edit_menu .col2{width:176px}.edit_menu .col2 select{width:174px}.edit_menu .col3{width:172px}.edit_menu .header_row .col3{width:171px}.edit_menu .col3 input{width:165px}.edit_menu .col4{width:197px}.edit_menu .col4 select{width:99%}.edit_menu .rows .col4{width:193px;padding-left:3px}.edit_menu .col5{width:78px;text-align:center}.edit_menu li.col6{width:70px}div.nav_heading{font-weight:bold;padding-left:4px;color:#444444;padding-top:2px;padding-bottom:2px}div#nav_separator{border-bottom:1px solid #efefef;margin-top:12px;margin-bottom:8px;width:94%}div#left_nav{margin:0 14px 0 -18px;padding-left:10px;background:transparent url("../images/left_nav_bg.jpg") repeat-x top left;min-height:420px}.nav_link{width:150px;font-size:8.6pt}.nav_link a:link,.nav_link a:visited{width:156px;display:block;vertical-align:center;text-decoration:none;padding-left:4px;padding-top:2px;padding-bottom:2px;color:#555555}.nav_link a:hover,body .nav_link_submenu a:hover{color:#ffffff;background-color:#999999}.nav_link_submenu a:link,.nav_link_submenu a:visited{width:150px;display:block;vertical-align:center;text-decoration:none;padding-left:10px;padding-top:2px;padding-bottom:2px;color:#789078}.nav_link_selected{text-decoration:none;padding-left:20px;padding-top:2px;padding-bottom:2px;color:black;background-color:#d2e0ef}.nav_link_selected a{color:black;text-decoration:none}table.add_form_nav td{width:16%;text-align:center;line-height:15px}table.add_form_nav td.selected{background-color:#007700;color:white;border-right:1px solid #cccccc}table.add_form_nav td.selected a:link,table.add_form_nav td.selected a:visited{text-decoration:none;width:100%;color:white;display:block;padding:1px}table.add_form_nav td.unselected{background-color:#ffffff;color:#999999;border-top:1px solid #cccccc;border-bottom:1px solid #cccccc;border-right:1px solid #cccccc}.prevnext_links{text-align:right;margin-top:4px}.prevnext_links span{color:#cccccc}.prevnext_links span.no_link{padding:2px 8px}.prevnext_links span a{padding:2px 8px;background-color:#efefef;border-radius:3px;color:#333333}.prevnext_links span a:hover{background-color:#0b4a04;color:white;text-decoration:none}div#list_nav{line-height:19px;margin-top:2px}div#list_nav span{font-size:11pt}#list_nav a:visited,#list_nav a:link{text-decoration:none}#list_nav a:hover{text-decoration:underline;color:orange}.menu_items{padding-top:10px}.edit_option_list .col2{width:312px}.edit_option_list .col2 input{width:306px}.edit_option_list .col3{width:312px}.edit_option_list .col3 input{width:306px}.edit_option_list .col4{width:70px}.login_panel{border:1px solid #999999;display:inline-block}.login_panel_inner{background-color:#e9e9e9;margin:3px;padding:16px}.login_panel_inner input[type='text'],.login_panel_inner input[type='password']{font-size:11pt;width:160px;margin-right:10px}.login_panel table{float:left}.login_panel td{color:#336699;min-width:80px;font-size:9pt}.login_error{background-color:#4b9743;color:white;padding-top:1px;padding-bottom:1px;margin:3px}.login_submit{float:left;margin-top:15px}.sortable{border:1px solid #dddddd;padding:1px}.sortable ul{list-style:none;margin:0;padding:0}.sortable li{float:left}.sortable ul.header_row li.col0{border:0}.sortable ul.header_row li{height:22px;border-right:1px solid white;white-space:nowrap}.sortable li.sortable_row{float:none;border-right:0;margin-bottom:1px}.groupable li.sortable_row{background:transparent url("../../../global/images/group_block.png") repeat-y left bottom}body .sortable_groups .empty_group{height:2px;background-color:#efefef}.sortable ul.rows li{margin-right:1px}.sortable .rows li.sortable_row{margin-right:0}.sortable .rows div.group_block_top{width:14px;height:2px;border-right:0;background-color:white;float:left}.sortable .rows div.row_content li{float:left;background-color:#efefef;border-bottom:1px solid #cccccc}body .sortable .rows li.rowN{margin-bottom:0}.sortable .rows div.row_content .rowN li{border-bottom:0}body .sortable .rows div.over .sort_col{background:#ddd url("../images/sort.png") no-repeat 90% center}body .sortable div.row_content .system_field li{background-color:#c6f1c9}.sortable .sort_col{background-image:url("../images/sort.png");background-repeat:no-repeat;background-position:90% center;padding-left:3px;width:50px;cursor:move}.groupable li.sort_col{width:36px}.sortable .rowN{border-bottom:0}.sortable .rows .rowN .row_content{border-bottom:0}.sortable .rows div.row_content li .scroll-content li{background-color:#f2f2f2}.sortable .rows div.row_content .system_field li .scroll-content li{background-color:#ddf7df}.sortable .colN,body .sortable ul.header_row .colN{border-right:0}.sortable ul li.del{text-align:center;width:18px}.sortable ul li.edit{text-align:center;width:18px}.sortable .rows .del,.sortable .rows .edit,.sortable .rows .edit a{height:21px;display:block;cursor:pointer}.sortable .rows .del{background:transparent url("../images/delete.png") no-repeat 2px 4px}.sortable .rows .edit{background:transparent url("../images/edit.png") no-repeat center 2px}.sortable .rows .del:hover{background:transparent url("../images/delete.png") no-repeat -22px 4px}.sortable .header_row li{background-image:url("../images/list_table_heading.jpg");text-align:center;color:white}.sortable .header_row .col1{width:53px;margin-right:0}.sortable .col1{color:#666666}.sortable .sortable_row li{height:21px}body .sortable li.rowN{margin-top:1px}body .sortable .rows .delete_row_hover li,.list_table tr.delete_row_hover,.list_table tr.delete_row_hover td{background-color:#770000;color:#ffffff}body .sortable .rows div.delete_row_hover li ul.scroll-content li,body .sortable .rows div.row_content .delete_row_hover li .scroll-content li{background-color:#881f1f}body .sortable .rows .delete_row_hover li,body .sortable .rows .delete_row_hover span,body .sortable .rows .delete_row_hover a,.list_table tr.delete_row_hover a,.list_table tr.delete_row_hover span{color:#ffffff}.list_table tr.delete_row_hover span.num_submissions_box{color:black}body .sortable .rows .delete_row_hover li.sort_col{color:#ffffaa}body .sortable .rows div.delete_row_hover li.sort_col,body .sortable .rows div.row_content .delete_row_hover li{background-color:#770000}body .sortable .rows div.row_content .delete_row_hover li.col0{background-color:transparent}body .sortable .rows div.row_content .delete_row_hover li.splitter{background-color:#999999}body .sortable .rows .edit_row_hover li,body .sortable .rows div.edit_row_hover li.sort_col,.list_table tr.edit_row_hover,.list_table tr.edit_row_hover td,body .sortable .rows div.edit_row_hover li ul.scroll-content li,body .sortable .rows div.row_content .edit_row_hover li .scroll-content li,body .sortable .rows div.edit_row_hover li.sort_col,body .sortable .rows div.row_content .edit_row_hover li{background-color:#dddddd}body .sortable .rows div.row_content .edit_row_hover li.splitter{background-color:#999999}body .sortable .rows .edit_row_hover li.sort_col{color:#000000}body .sortable .rows div.row_content .edit_row_hover li.col0{background-color:transparent}.row_group{position:relative;float:right}.sortable .rows .col0{background-color:transparent;width:12px;height:15px;position:absolute;left:-14px;top:16px;z-index:2}.sortable_group{margin-bottom:8px}.sortable_group_header{background-color:#d5edd7;border-top-left-radius:6px;border-top-right-radius:6px}.sortable_group_footer{background-color:#d5edd7;border-bottom-left-radius:6px;border-bottom-right-radius:6px;height:20px}body .padded_footer{height:23px}.sortable_group_footer a{float:right;margin-right:5px}.sortable_group_header label{padding:6px 6px 6px 12px;width:140px;float:left;color:#345437}.sortable_group_header input{float:left;margin:6px 0 1px;width:300px}.sortable_group_header .sort{cursor:move;padding:6px;background:transparent url("../images/sort.png") no-repeat 50% center;border-top-left-radius:6px;height:20px;width:10px;float:left}.sortable_group_header .sort:hover{background-color:#beddc0}.sortable_group_header .delete_group{float:right;background:transparent url("../images/delete_group.png") no-repeat -22px 3px;width:18px;height:20px;margin:6px 2px 6px 0}.sortable_group_header .delete_group:hover{background:transparent url("../images/delete_group.png") no-repeat 2px 3px;cursor:pointer}.sortable .rows div.grouped_row .row_group li{border-bottom:1px solid transparent}.sortable .rows div.grouped_row div.row_group:last-child li{border-bottom:1px solid #cccccc}.sortable .rows div.grouped_row div.row_group:last-child li.col0{border-bottom:1px solid transparent}body .sortable .rows div.grouped_row div.rowN:last-child li{border-bottom:0}tr.selected_row_color{background-color:#c6f1c9}tr.unselected_row_color{background-color:#f2f2f2}.submission_list .col2{width:176px}.submission_list .col2 select{width:174px}.submission_list .col3{width:90px;text-align:center}.submission_list .col4{width:234px}.submission_list .col4 .custom_width{width:30px}.submission_list .col5{width:100px}.submission_list .col5 select{width:97px}.submission_list li.col6{width:70px}#ft_quicklinks{margin:0;list-style:none;float:right}#ft_quicklinks li{border:1px solid #cccccc;border-left:0;padding:2px 3px;line-height:10px;background-color:#f2f2f2;float:left;cursor:pointer}#ft_quicklinks li:hover{background-color:#ffffff}#ft_quicklinks li.ft_quicklinks_first{border-left:1px solid #cccccc;border-top-left-radius:3px;border-bottom-left-radius:3px}#ft_quicklinks li.ft_quicklinks_last{border-top-right-radius:3px;border-bottom-right-radius:3px}.main_tabset{margin:0 0 -5px;list-style:none;padding-left:0}.main_tabset li{float:left;margin-right:1px;background-color:#efefef;min-width:96px;border-top:1px solid #cfcfcf;border-left:1px solid #cfcfcf;border-right:1px solid #cfcfcf;border-top-left-radius:8px;border-top-right-radius:8px;white-space:nowrap;height:22px;text-align:center}.main_tabset li a{padding:1px 6px 0;display:block;color:#555555}.main_tabset li.selected{border-bottom:1px solid #ffffff;background-color:white;margin-bottom:-1px}.main_tabset li.selected a{color:green}.main_tabset a:hover{text-decoration:none;color:#0b4a03}.tab_content{padding:10px 18px;vertical-align:top;background-color:#ffffff;border:1px solid #cfcfcf}.inner_tabset{border:1px solid #dddddd}.inner_tabset .tab_row{background-color:#efefef;height:20px}.inner_tabset .tab_row div{float:left;text-align:center;cursor:pointer}.inner_tabset .threeCols div{width:33.33%}.inner_tabset .fourCols div{width:25%}.inner_tabset .fiveCols div{width:20%}.inner_tabset .tab_row div.selected{background-color:white;color:green}.inner_tabset .tab_row div.selected a{display:block;text-decoration:none}.inner_tab_content{padding:10px;background-color:#ffffff}.inner_tab_unselected a{display:block;text-decoration:none;color:#666666}.view_list .header_row .col2{font-weight:normal}.view_list .col2{width:60px;color:#336699;font-weight:bold}.view_list .rows .col2{width:57px;padding-left:3px}.view_list .header_row .col3{width:239px;padding-left:0}.view_list .col3{width:237px;padding-left:2px}.view_list .col4{width:161px}.view_list .col4 select{width:160px}.view_list .col5,.view_list .col6,.view_list .col7,.view_list .col8{width:35px;text-align:center;height:23px}.view_list .col5 a,.view_list .col6 a,.view_list .col7 a,.view_list .col8 a{display:block;text-decoration:none;height:23px}.view_list .header_row .col5 div{background:transparent url("../images/columns.png") no-repeat center center;width:35px;height:20px}.view_list .header_row .col6 div{background:transparent url("../images/fields.png") no-repeat center center;width:35px;height:20px}.view_list .header_row .col7 div{background:transparent url("../images/tabs.png") no-repeat center center;width:35px;height:20px}.view_list .header_row .col8 div{background:transparent url("../images/filter.png") no-repeat center center;width:35px;height:20px}.view_list .col5 a:hover,.view_list .col6 a:hover,.view_list .col7 a:hover,.view_list .col8 a:hover{color:orange}.edit_view_fields .header_row .col2{width:251px;padding-left:0}.edit_view_fields .col2{width:249px;padding-left:2px;text-align:left}.edit_view_fields .header_row .col3{width:175px;padding-left:0}.edit_view_fields .col3{width:173px;padding-left:2px}.edit_view_fields .col4{width:87px;text-align:center}.edit_view_fields .col5{width:87px;text-align:center}.new_view_default_submission_vals{width:491px}.new_view_default_submission_vals .col2{width:200px}.new_view_default_submission_vals .col2 select{width:198px}.new_view_default_submission_vals .col3{width:217px}.new_view_default_submission_vals .col3 input{width:211px}.view_fields_list{border:1px solid #cccccc;border-bottom:0;height:220px;overflow-y:scroll}.view_fields_list ul{list-style:none;margin:0;padding-left:0}.view_fields_list ul li{padding:2px 0 2px 2px}.view_fields_list ul li:hover{background-color:#efefef}.view_fields_list ul li input{margin-right:8px;float:left}.view_fields_list ul li label{display:block}.standard_filters .col2{width:209px}.standard_filters .col2 select{width:208px}.standard_filters .col3{width:172px}.standard_filters .col3 input{width:165px}.standard_filters .col4{width:208px}.standard_filters .col5{text-align:center}#standard_filters_table .cf_date_group input{width:126px}#standard_filters_table .cf_date_group img{margin-bottom:-4px;padding:1px}#edit_view .sortable_group_header input{width:240px}#edit_view .sortable_group_header select{float:left;margin:6px 0 1px 4px;width:180px}#new_view_dialog table,#new_view_dialog input{width:100%}.add_view_group_popup td{padding:2px}.add_view_group_popup .new_group_name{width:100%}#tab_options_table input{width:98%}body .ui-widget-header{background:url("../images/popup_header_bg.png") repeat-x scroll 50% 50%}body .ui-widget-header span{color:white}body .ui-daterangepicker .ui-widget-header{background-image:none;background-color:#dddddd}body .ui-daterangepicker .ui-widget-header span{color:black}body .ui-daterangepicker .ui-widget-header .ui-widget-content .ui-widget-header{background-color:#3b7d40}body .ui-daterangepicker .ui-widget-header .ui-widget-content .ui-widget-header span{color:white}body .ui-daterangepicker{padding:2px !important}body .ui-daterangepicker ul{font-size:11px;text-align:left;width:140px}body .ui-daterangepicker ul li a{margin:1px 3px}.ui-timepicker-div .ui-widget-header{margin-bottom:8px}.ui-timepicker-div dl{text-align:left}.ui-timepicker-div dl dt{height:25px}.ui-timepicker-div dl dd{margin:-25px 0 10px 65px}.ui-timepicker-div td{font-size:90%}.ui-dialog a:link,.ui-dialog a:visited{color:green}.popup_icon{width:48px;height:48px;margin-right:8px;float:left}.popup_type_warning{background-image:url("../../../global/images/alert.png")}.popup_type_error{background-image:url("../../../global/images/error.png")}.popup_type_info{background-image:url("../../../global/images/info.png")}.ui-widget-header span.edit_field_title_field_type{color:#efefef;margin-left:5px} 2 | -------------------------------------------------------------------------------- /css/smoothness/jquery-ui-1.8.6.custom.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.6 3 | * 4 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute; left: -99999999px; } 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: "."; display: block; height: 0; clear: both; visibility: hidden; } 17 | .ui-helper-clearfix { display: inline-block; } 18 | /* required comment for clearfix to work in Opera \*/ 19 | * html .ui-helper-clearfix { height:1%; } 20 | .ui-helper-clearfix { display:block; } 21 | /* end clearfix */ 22 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 23 | 24 | 25 | /* Interaction Cues 26 | ----------------------------------*/ 27 | .ui-state-disabled { cursor: default !important; } 28 | 29 | 30 | /* Icons 31 | ----------------------------------*/ 32 | 33 | /* states and images */ 34 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 35 | 36 | 37 | /* Misc visuals 38 | ----------------------------------*/ 39 | 40 | /* Overlays */ 41 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 42 | 43 | 44 | /* 45 | * jQuery UI CSS Framework 1.8.6 46 | * 47 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 48 | * Dual licensed under the MIT or GPL Version 2 licenses. 49 | * http://jquery.org/license 50 | * 51 | * http://docs.jquery.com/UI/Theming/API 52 | * 53 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px 54 | */ 55 | 56 | 57 | /* Component containers 58 | ----------------------------------*/ 59 | .ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; } 60 | .ui-widget .ui-widget { font-size: 1em; } 61 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } 62 | .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } 63 | .ui-widget-content a { color: #222222; } 64 | .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; } 65 | .ui-widget-header a { color: #222222; } 66 | 67 | /* Interaction states 68 | ----------------------------------*/ 69 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; } 70 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; } 71 | .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 { border: 1px solid #999999; background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; } 72 | .ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; } 73 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; } 74 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; } 75 | .ui-widget :active { outline: none; } 76 | 77 | /* Interaction Cues 78 | ----------------------------------*/ 79 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; } 80 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; } 81 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; } 82 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; } 83 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; } 84 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } 85 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } 86 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } 87 | 88 | /* Icons 89 | ----------------------------------*/ 90 | 91 | /* states and images */ 92 | .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); } 93 | .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); } 94 | .ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); } 95 | .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); } 96 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); } 97 | .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); } 98 | .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); } 99 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); } 100 | 101 | /* positioning */ 102 | .ui-icon-carat-1-n { background-position: 0 0; } 103 | .ui-icon-carat-1-ne { background-position: -16px 0; } 104 | .ui-icon-carat-1-e { background-position: -32px 0; } 105 | .ui-icon-carat-1-se { background-position: -48px 0; } 106 | .ui-icon-carat-1-s { background-position: -64px 0; } 107 | .ui-icon-carat-1-sw { background-position: -80px 0; } 108 | .ui-icon-carat-1-w { background-position: -96px 0; } 109 | .ui-icon-carat-1-nw { background-position: -112px 0; } 110 | .ui-icon-carat-2-n-s { background-position: -128px 0; } 111 | .ui-icon-carat-2-e-w { background-position: -144px 0; } 112 | .ui-icon-triangle-1-n { background-position: 0 -16px; } 113 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } 114 | .ui-icon-triangle-1-e { background-position: -32px -16px; } 115 | .ui-icon-triangle-1-se { background-position: -48px -16px; } 116 | .ui-icon-triangle-1-s { background-position: -64px -16px; } 117 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } 118 | .ui-icon-triangle-1-w { background-position: -96px -16px; } 119 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } 120 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } 121 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } 122 | .ui-icon-arrow-1-n { background-position: 0 -32px; } 123 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } 124 | .ui-icon-arrow-1-e { background-position: -32px -32px; } 125 | .ui-icon-arrow-1-se { background-position: -48px -32px; } 126 | .ui-icon-arrow-1-s { background-position: -64px -32px; } 127 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } 128 | .ui-icon-arrow-1-w { background-position: -96px -32px; } 129 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } 130 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } 131 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } 132 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } 133 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } 134 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } 135 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } 136 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } 137 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } 138 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } 139 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } 140 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } 141 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } 142 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } 143 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } 144 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } 145 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } 146 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } 147 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } 148 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } 149 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } 150 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } 151 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } 152 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } 153 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } 154 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } 155 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } 156 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } 157 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } 158 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } 159 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } 160 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } 161 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } 162 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } 163 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } 164 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } 165 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } 166 | .ui-icon-arrow-4 { background-position: 0 -80px; } 167 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } 168 | .ui-icon-extlink { background-position: -32px -80px; } 169 | .ui-icon-newwin { background-position: -48px -80px; } 170 | .ui-icon-refresh { background-position: -64px -80px; } 171 | .ui-icon-shuffle { background-position: -80px -80px; } 172 | .ui-icon-transfer-e-w { background-position: -96px -80px; } 173 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } 174 | .ui-icon-folder-collapsed { background-position: 0 -96px; } 175 | .ui-icon-folder-open { background-position: -16px -96px; } 176 | .ui-icon-document { background-position: -32px -96px; } 177 | .ui-icon-document-b { background-position: -48px -96px; } 178 | .ui-icon-note { background-position: -64px -96px; } 179 | .ui-icon-mail-closed { background-position: -80px -96px; } 180 | .ui-icon-mail-open { background-position: -96px -96px; } 181 | .ui-icon-suitcase { background-position: -112px -96px; } 182 | .ui-icon-comment { background-position: -128px -96px; } 183 | .ui-icon-person { background-position: -144px -96px; } 184 | .ui-icon-print { background-position: -160px -96px; } 185 | .ui-icon-trash { background-position: -176px -96px; } 186 | .ui-icon-locked { background-position: -192px -96px; } 187 | .ui-icon-unlocked { background-position: -208px -96px; } 188 | .ui-icon-bookmark { background-position: -224px -96px; } 189 | .ui-icon-tag { background-position: -240px -96px; } 190 | .ui-icon-home { background-position: 0 -112px; } 191 | .ui-icon-flag { background-position: -16px -112px; } 192 | .ui-icon-calendar { background-position: -32px -112px; } 193 | .ui-icon-cart { background-position: -48px -112px; } 194 | .ui-icon-pencil { background-position: -64px -112px; } 195 | .ui-icon-clock { background-position: -80px -112px; } 196 | .ui-icon-disk { background-position: -96px -112px; } 197 | .ui-icon-calculator { background-position: -112px -112px; } 198 | .ui-icon-zoomin { background-position: -128px -112px; } 199 | .ui-icon-zoomout { background-position: -144px -112px; } 200 | .ui-icon-search { background-position: -160px -112px; } 201 | .ui-icon-wrench { background-position: -176px -112px; } 202 | .ui-icon-gear { background-position: -192px -112px; } 203 | .ui-icon-heart { background-position: -208px -112px; } 204 | .ui-icon-star { background-position: -224px -112px; } 205 | .ui-icon-link { background-position: -240px -112px; } 206 | .ui-icon-cancel { background-position: 0 -128px; } 207 | .ui-icon-plus { background-position: -16px -128px; } 208 | .ui-icon-plusthick { background-position: -32px -128px; } 209 | .ui-icon-minus { background-position: -48px -128px; } 210 | .ui-icon-minusthick { background-position: -64px -128px; } 211 | .ui-icon-close { background-position: -80px -128px; } 212 | .ui-icon-closethick { background-position: -96px -128px; } 213 | .ui-icon-key { background-position: -112px -128px; } 214 | .ui-icon-lightbulb { background-position: -128px -128px; } 215 | .ui-icon-scissors { background-position: -144px -128px; } 216 | .ui-icon-clipboard { background-position: -160px -128px; } 217 | .ui-icon-copy { background-position: -176px -128px; } 218 | .ui-icon-contact { background-position: -192px -128px; } 219 | .ui-icon-image { background-position: -208px -128px; } 220 | .ui-icon-video { background-position: -224px -128px; } 221 | .ui-icon-script { background-position: -240px -128px; } 222 | .ui-icon-alert { background-position: 0 -144px; } 223 | .ui-icon-info { background-position: -16px -144px; } 224 | .ui-icon-notice { background-position: -32px -144px; } 225 | .ui-icon-help { background-position: -48px -144px; } 226 | .ui-icon-check { background-position: -64px -144px; } 227 | .ui-icon-bullet { background-position: -80px -144px; } 228 | .ui-icon-radio-off { background-position: -96px -144px; } 229 | .ui-icon-radio-on { background-position: -112px -144px; } 230 | .ui-icon-pin-w { background-position: -128px -144px; } 231 | .ui-icon-pin-s { background-position: -144px -144px; } 232 | .ui-icon-play { background-position: 0 -160px; } 233 | .ui-icon-pause { background-position: -16px -160px; } 234 | .ui-icon-seek-next { background-position: -32px -160px; } 235 | .ui-icon-seek-prev { background-position: -48px -160px; } 236 | .ui-icon-seek-end { background-position: -64px -160px; } 237 | .ui-icon-seek-start { background-position: -80px -160px; } 238 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ 239 | .ui-icon-seek-first { background-position: -80px -160px; } 240 | .ui-icon-stop { background-position: -96px -160px; } 241 | .ui-icon-eject { background-position: -112px -160px; } 242 | .ui-icon-volume-off { background-position: -128px -160px; } 243 | .ui-icon-volume-on { background-position: -144px -160px; } 244 | .ui-icon-power { background-position: 0 -176px; } 245 | .ui-icon-signal-diag { background-position: -16px -176px; } 246 | .ui-icon-signal { background-position: -32px -176px; } 247 | .ui-icon-battery-0 { background-position: -48px -176px; } 248 | .ui-icon-battery-1 { background-position: -64px -176px; } 249 | .ui-icon-battery-2 { background-position: -80px -176px; } 250 | .ui-icon-battery-3 { background-position: -96px -176px; } 251 | .ui-icon-circle-plus { background-position: 0 -192px; } 252 | .ui-icon-circle-minus { background-position: -16px -192px; } 253 | .ui-icon-circle-close { background-position: -32px -192px; } 254 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } 255 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } 256 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } 257 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } 258 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } 259 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } 260 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } 261 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } 262 | .ui-icon-circle-zoomin { background-position: -176px -192px; } 263 | .ui-icon-circle-zoomout { background-position: -192px -192px; } 264 | .ui-icon-circle-check { background-position: -208px -192px; } 265 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } 266 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } 267 | .ui-icon-circlesmall-close { background-position: -32px -208px; } 268 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } 269 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } 270 | .ui-icon-squaresmall-close { background-position: -80px -208px; } 271 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } 272 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } 273 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } 274 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } 275 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } 276 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } 277 | 278 | 279 | /* Misc visuals 280 | ----------------------------------*/ 281 | 282 | /* Corner radius */ 283 | .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; } 284 | .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; } 285 | .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; } 286 | .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } 287 | .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; } 288 | .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } 289 | .ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } 290 | .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; } 291 | .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } 292 | 293 | /* Overlays */ 294 | .ui-widget-overlay { background: #aaaaaa url(images/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(images/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.6 297 | * 298 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 299 | * Dual licensed under the MIT or GPL Version 2 licenses. 300 | * http://jquery.org/license 301 | * 302 | * http://docs.jquery.com/UI/Resizable#theming 303 | */ 304 | .ui-resizable { position: relative;} 305 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} 306 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 307 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 308 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 309 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 310 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 311 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 312 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 313 | .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 Button 1.8.6 316 | * 317 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 318 | * Dual licensed under the MIT or GPL Version 2 licenses. 319 | * http://jquery.org/license 320 | * 321 | * http://docs.jquery.com/UI/Button#theming 322 | */ 323 | .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 */ 324 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ 325 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ 326 | .ui-button-icons-only { width: 3.4em; } 327 | button.ui-button-icons-only { width: 3.7em; } 328 | 329 | /*button text element */ 330 | .ui-button .ui-button-text { display: block; line-height: 1.4; } 331 | .ui-button-text-only .ui-button-text { padding: .4em 1em; } 332 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } 333 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } 334 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } 335 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } 336 | /* no icon support for input elements, provide padding by default */ 337 | input.ui-button { padding: .4em 1em; } 338 | 339 | /*button icon element(s) */ 340 | .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; } 341 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } 342 | .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; } 343 | .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; } 344 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } 345 | 346 | /*button sets*/ 347 | .ui-buttonset { margin-right: 7px; } 348 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } 349 | 350 | /* workarounds */ 351 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ 352 | /* 353 | * jQuery UI Dialog 1.8.6 354 | * 355 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 356 | * Dual licensed under the MIT or GPL Version 2 licenses. 357 | * http://jquery.org/license 358 | * 359 | * http://docs.jquery.com/UI/Dialog#theming 360 | */ 361 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 362 | .ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative; } 363 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; } 364 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 365 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 366 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 367 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 368 | .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; } 369 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 370 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 371 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 372 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 373 | /* 374 | * jQuery UI Slider 1.8.6 375 | * 376 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 377 | * Dual licensed under the MIT or GPL Version 2 licenses. 378 | * http://jquery.org/license 379 | * 380 | * http://docs.jquery.com/UI/Slider#theming 381 | */ 382 | .ui-slider { position: relative; text-align: left; } 383 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 384 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 385 | 386 | .ui-slider-horizontal { height: .8em; } 387 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 388 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 389 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 390 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 391 | 392 | .ui-slider-vertical { width: .8em; height: 100px; } 393 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 394 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 395 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 396 | .ui-slider-vertical .ui-slider-range-max { top: 0; }/* 397 | * jQuery UI Tabs 1.8.6 398 | * 399 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 400 | * Dual licensed under the MIT or GPL Version 2 licenses. 401 | * http://jquery.org/license 402 | * 403 | * http://docs.jquery.com/UI/Tabs#theming 404 | */ 405 | .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") */ 406 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 407 | .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; } 408 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 409 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 410 | .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; } 411 | .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... */ 412 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 413 | .ui-tabs .ui-tabs-hide { display: none !important; } 414 | /* 415 | * jQuery UI Datepicker 1.8.6 416 | * 417 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 418 | * Dual licensed under the MIT or GPL Version 2 licenses. 419 | * http://jquery.org/license 420 | * 421 | * http://docs.jquery.com/UI/Datepicker#theming 422 | */ 423 | .ui-datepicker { width: 17em; padding: .2em .2em 0; } 424 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } 425 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } 426 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } 427 | .ui-datepicker .ui-datepicker-prev { left:2px; } 428 | .ui-datepicker .ui-datepicker-next { right:2px; } 429 | .ui-datepicker .ui-datepicker-prev-hover { left:1px; } 430 | .ui-datepicker .ui-datepicker-next-hover { right:1px; } 431 | .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; } 432 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } 433 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } 434 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} 435 | .ui-datepicker select.ui-datepicker-month, 436 | .ui-datepicker select.ui-datepicker-year { width: 49%;} 437 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } 438 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } 439 | .ui-datepicker td { border: 0; padding: 1px; } 440 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } 441 | .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; } 442 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } 443 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } 444 | 445 | /* with multiple calendars */ 446 | .ui-datepicker.ui-datepicker-multi { width:auto; } 447 | .ui-datepicker-multi .ui-datepicker-group { float:left; } 448 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } 449 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } 450 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } 451 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } 452 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } 453 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } 454 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } 455 | .ui-datepicker-row-break { clear:both; width:100%; } 456 | 457 | /* RTL support */ 458 | .ui-datepicker-rtl { direction: rtl; } 459 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } 460 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } 461 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } 462 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } 463 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } 464 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } 465 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } 466 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } 467 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 468 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 469 | 470 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ 471 | .ui-datepicker-cover { 472 | display: none; /*sorry for IE5*/ 473 | display/**/: block; /*sorry for IE5*/ 474 | position: absolute; /*must have*/ 475 | z-index: -1; /*must have*/ 476 | filter: mask(); /*must have*/ 477 | top: -4px; /*must have*/ 478 | left: -4px; /*must have*/ 479 | width: 200px; /*must have*/ 480 | height: 200px; /*must have*/ 481 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. {http://fsf.org/} 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see {http://www.gnu.org/licenses/}. 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | theme-oh-canada Copyright (C) 2013 formtools 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | {http://www.gnu.org/licenses/}. 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | {http://www.gnu.org/philosophy/why-not-lgpl.html}. 675 | --------------------------------------------------------------------------------