ckeditor 3.5.4 → 3.6.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +23 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +96 -97
- data/Rakefile +16 -33
- data/app/controllers/ckeditor/attachment_files_controller.rb +4 -4
- data/app/controllers/ckeditor/base_controller.rb +15 -42
- data/app/controllers/ckeditor/pictures_controller.rb +3 -3
- data/app/views/ckeditor/attachment_files/index.html.erb +13 -51
- data/app/views/ckeditor/pictures/index.html.erb +14 -52
- data/app/views/ckeditor/shared/_asset.html.erb +19 -0
- data/app/views/ckeditor/shared/_asset_tmpl.html.erb +21 -0
- data/app/views/layouts/ckeditor.html.erb +16 -23
- data/config/locales/en.ckeditor.yml +3 -7
- data/config/locales/ru.ckeditor.yml +4 -8
- data/config/locales/uk.ckeditor.yml +4 -8
- data/config/routes.rb +3 -3
- data/lib/ckeditor.rb +30 -79
- data/lib/ckeditor/engine.rb +14 -13
- data/lib/ckeditor/helpers/controllers.rb +30 -0
- data/lib/ckeditor/helpers/form_builder.rb +11 -0
- data/lib/ckeditor/helpers/form_helper.rb +25 -0
- data/lib/ckeditor/helpers/view_helper.rb +19 -0
- data/lib/ckeditor/http.rb +81 -0
- data/lib/ckeditor/orm/active_record.rb +91 -0
- data/lib/ckeditor/utils.rb +51 -70
- data/lib/ckeditor/version.rb +2 -7
- data/lib/generators/ckeditor/install_generator.rb +62 -0
- data/lib/generators/ckeditor/models_generator.rb +51 -0
- data/lib/generators/ckeditor/templates/ckeditor.rb +18 -0
- data/lib/generators/ckeditor/templates/ckeditor/config.js +52 -0
- data/lib/generators/ckeditor/templates/ckeditor/filebrowser/images/gal_add.jpg +0 -0
- data/lib/generators/ckeditor/templates/ckeditor/filebrowser/images/gal_add.png +0 -0
- data/lib/generators/ckeditor/templates/ckeditor/filebrowser/images/gal_del.png +0 -0
- data/lib/generators/ckeditor/templates/ckeditor/filebrowser/images/gal_more.gif +0 -0
- data/lib/generators/ckeditor/templates/ckeditor/filebrowser/images/preloader.gif +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/images → templates/ckeditor/filebrowser/images/thumbs}/ckfnothumb.gif +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/images → templates/ckeditor/filebrowser/images/thumbs}/mp3.gif +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/images → templates/ckeditor/filebrowser/images/thumbs}/pdf.gif +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/images → templates/ckeditor/filebrowser/images/thumbs}/rar.gif +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/images → templates/ckeditor/filebrowser/images/thumbs}/swf.gif +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/images → templates/ckeditor/filebrowser/images/thumbs}/xls.gif +0 -0
- data/lib/generators/ckeditor/templates/ckeditor/filebrowser/javascripts/application.js +222 -0
- data/lib/generators/ckeditor/templates/ckeditor/filebrowser/stylesheets/uploader.css +112 -0
- data/lib/generators/ckeditor/{base/templates → templates}/ckeditor/plugins/attachment/dialogs/attachment.js +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/attachment/images/attachment.png +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/attachment/lang/en.js +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/attachment/lang/ru.js +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/attachment/lang/uk.js +0 -0
- data/lib/generators/ckeditor/{base/templates → templates}/ckeditor/plugins/attachment/plugin.js +0 -0
- data/lib/generators/ckeditor/{base/templates → templates}/ckeditor/plugins/embed/dialogs/embed.js +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/embed/images/embed.png +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/embed/lang/en.js +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/embed/lang/ru.js +0 -0
- data/lib/generators/ckeditor/{base/templates/ckeditor/_source → templates/ckeditor}/plugins/embed/lang/uk.js +0 -0
- data/lib/generators/ckeditor/{base/templates → templates}/ckeditor/plugins/embed/plugin.js +0 -0
- data/lib/generators/ckeditor/templates/models/active_record/asset.rb +7 -0
- data/lib/generators/ckeditor/templates/models/active_record/attachment_file.rb +15 -0
- data/lib/generators/ckeditor/{migration/templates/models/paperclip → templates/models/active_record}/migration.rb +3 -8
- data/lib/generators/ckeditor/templates/models/active_record/picture.rb +13 -0
- data/test/ckeditor_test.rb +13 -0
- data/test/controllers/attachment_files_controller_test.rb +52 -0
- data/test/controllers/pictures_controller_test.rb +52 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/controllers/application_controller.rb +4 -0
- data/test/dummy/app/controllers/posts_controller.rb +83 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/posts_helper.rb +2 -0
- data/test/dummy/app/models/ckeditor/asset.rb +7 -0
- data/test/dummy/app/models/ckeditor/attachment_file.rb +15 -0
- data/test/dummy/app/models/ckeditor/picture.rb +13 -0
- data/test/dummy/app/models/post.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/posts/_form.html.erb +30 -0
- data/test/dummy/app/views/posts/edit.html.erb +6 -0
- data/test/dummy/app/views/posts/index.html.erb +27 -0
- data/test/dummy/app/views/posts/new.html.erb +5 -0
- data/test/dummy/app/views/posts/show.html.erb +5 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +46 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +34 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +26 -0
- data/test/dummy/config/environments/production.rb +49 -0
- data/test/dummy/config/environments/test.rb +35 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/ckeditor.rb +18 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/db/migrate/20110623120047_create_posts.rb +14 -0
- data/test/dummy/db/migrate/20110705195648_create_ckeditor_assets.rb +26 -0
- data/test/dummy/db/schema.rb +36 -0
- data/test/dummy/log/development.log +818 -0
- data/test/dummy/log/production.log +0 -0
- data/test/dummy/log/server.log +0 -0
- data/test/dummy/log/test.log +5398 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/javascripts/application.js +2 -0
- data/test/dummy/public/javascripts/controls.js +965 -0
- data/test/dummy/public/javascripts/dragdrop.js +974 -0
- data/test/dummy/public/javascripts/effects.js +1123 -0
- data/test/dummy/public/javascripts/prototype.js +6001 -0
- data/test/dummy/public/javascripts/rails.js +191 -0
- data/test/dummy/public/stylesheets/scaffold.css +56 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/files/rails.png +0 -0
- data/test/dummy/test/fixtures/files/rails.tar.gz +0 -0
- data/test/generators/install_generator_test.rb +18 -0
- data/test/generators/models_generator_test.rb +21 -0
- data/test/integration/navigation_test.rb +7 -0
- data/test/integration/posts_test.rb +41 -0
- data/test/routes_test.rb +47 -0
- data/test/support/integration_case.rb +5 -0
- data/test/test_helper.rb +28 -0
- data/test/tmp/app/models/ckeditor/asset.rb +7 -0
- data/test/tmp/app/models/ckeditor/attachment_file.rb +15 -0
- data/test/tmp/app/models/ckeditor/picture.rb +13 -0
- data/test/tmp/db/migrate/20110711170413_create_ckeditor_assets.rb +26 -0
- metadata +220 -99
- data/CHANGELOG +0 -15
- data/app/helpers/ckeditor/base_helper.rb +0 -21
- data/app/views/ckeditor/_asset.html.erb +0 -20
- data/app/views/ckeditor/_swfupload.html.erb +0 -73
- data/lib/ckeditor/form_builder.rb +0 -22
- data/lib/ckeditor/middleware.rb +0 -18
- data/lib/ckeditor/view_helper.rb +0 -92
- data/lib/generators/ckeditor/base/USAGE +0 -9
- data/lib/generators/ckeditor/base/base_generator.rb +0 -41
- data/lib/generators/ckeditor/base/templates/ckeditor.rb +0 -54
- data/lib/generators/ckeditor/base/templates/ckeditor/_source/plugins/attachment/dialogs/attachment.js +0 -384
- data/lib/generators/ckeditor/base/templates/ckeditor/_source/plugins/attachment/plugin.js +0 -44
- data/lib/generators/ckeditor/base/templates/ckeditor/_source/plugins/embed/dialogs/embed.js +0 -65
- data/lib/generators/ckeditor/base/templates/ckeditor/_source/plugins/embed/plugin.js +0 -43
- data/lib/generators/ckeditor/base/templates/ckeditor/config.js +0 -43
- data/lib/generators/ckeditor/base/templates/ckeditor/css/ckfinder.css +0 -316
- data/lib/generators/ckeditor/base/templates/ckeditor/css/fck_dialog.css +0 -119
- data/lib/generators/ckeditor/base/templates/ckeditor/css/fck_editor.css +0 -448
- data/lib/generators/ckeditor/base/templates/ckeditor/css/swfupload.css +0 -94
- data/lib/generators/ckeditor/base/templates/ckeditor/images/add.gif +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/images/cancelbutton.gif +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/images/doc.gif +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/images/refresh.gif +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/images/select_files.png +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/images/spacer.gif +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/images/toolbar.start.gif +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/attachment/images/attachment.png +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/attachment/lang/en.js +0 -10
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/attachment/lang/ru.js +0 -10
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/attachment/lang/uk.js +0 -10
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/embed/images/embed.png +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/embed/lang/en.js +0 -9
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/embed/lang/ru.js +0 -9
- data/lib/generators/ckeditor/base/templates/ckeditor/plugins/embed/lang/uk.js +0 -9
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/fileprogress.js +0 -266
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/handlers.js +0 -181
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/jquery-1.5.1.min.js +0 -16
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/querystring.js +0 -40
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/rails.js +0 -158
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/swfupload.js +0 -1
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/swfupload.queue.js +0 -1
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/swfupload.swf +0 -0
- data/lib/generators/ckeditor/base/templates/ckeditor/swfupload/swfupload.swfobject.js +0 -111
- data/lib/generators/ckeditor/migration/USAGE +0 -12
- data/lib/generators/ckeditor/migration/migration_generator.rb +0 -46
- data/lib/generators/ckeditor/migration/templates/models/attachment_fu/asset.rb +0 -32
- data/lib/generators/ckeditor/migration/templates/models/attachment_fu/attachment_file.rb +0 -24
- data/lib/generators/ckeditor/migration/templates/models/attachment_fu/migration.rb +0 -30
- data/lib/generators/ckeditor/migration/templates/models/attachment_fu/picture.rb +0 -25
- data/lib/generators/ckeditor/migration/templates/models/paperclip/asset.rb +0 -97
- data/lib/generators/ckeditor/migration/templates/models/paperclip/attachment_file.rb +0 -40
- data/lib/generators/ckeditor/migration/templates/models/paperclip/picture.rb +0 -23
- data/lib/tasks/ckeditor_tasks.rake +0 -3
@@ -1,119 +0,0 @@
|
|
1
|
-
/* @Packager.Header
|
2
|
-
<FileDescription>
|
3
|
-
Styles used by the dialog boxes.
|
4
|
-
</FileDescription>
|
5
|
-
<Author name="Frederico Caldeira Knabben" email="www.fckeditor.net" />
|
6
|
-
*/
|
7
|
-
|
8
|
-
body
|
9
|
-
{
|
10
|
-
margin: 0px;
|
11
|
-
padding: 10px;
|
12
|
-
}
|
13
|
-
|
14
|
-
body, td, input, select, textarea
|
15
|
-
{
|
16
|
-
font-size: 11px;
|
17
|
-
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
|
18
|
-
}
|
19
|
-
|
20
|
-
body, .BackColor
|
21
|
-
{
|
22
|
-
background-color: #f1f1e3;
|
23
|
-
}
|
24
|
-
|
25
|
-
.PopupBody
|
26
|
-
{
|
27
|
-
margin: 0px;
|
28
|
-
padding: 0px;
|
29
|
-
}
|
30
|
-
|
31
|
-
.PopupTitle
|
32
|
-
{
|
33
|
-
font-weight: bold;
|
34
|
-
font-size: 14pt;
|
35
|
-
color: #737357;
|
36
|
-
background-color: #e3e3c7;
|
37
|
-
padding: 3px 10px 3px 10px;
|
38
|
-
}
|
39
|
-
|
40
|
-
.PopupButtons
|
41
|
-
{
|
42
|
-
border-top: #d5d59d 1px solid;
|
43
|
-
background-color: #e3e3c7;
|
44
|
-
padding: 7px 10px 7px 10px;
|
45
|
-
}
|
46
|
-
|
47
|
-
.Button
|
48
|
-
{
|
49
|
-
border-right: #737357 1px solid;
|
50
|
-
border-top: #737357 1px solid;
|
51
|
-
border-left: #737357 1px solid;
|
52
|
-
color: #3b3b1f;
|
53
|
-
border-bottom: #737357 1px solid;
|
54
|
-
background-color: #c7c78f;
|
55
|
-
}
|
56
|
-
|
57
|
-
.DarkBackground
|
58
|
-
{
|
59
|
-
background-color: #d7d79f;
|
60
|
-
}
|
61
|
-
|
62
|
-
.LightBackground
|
63
|
-
{
|
64
|
-
background-color: #ffffbe;
|
65
|
-
}
|
66
|
-
|
67
|
-
.PopupTitleBorder
|
68
|
-
{
|
69
|
-
border-bottom: #d5d59d 1px solid;
|
70
|
-
}
|
71
|
-
|
72
|
-
.PopupTabArea
|
73
|
-
{
|
74
|
-
color: #737357;
|
75
|
-
background-color: #e3e3c7;
|
76
|
-
}
|
77
|
-
|
78
|
-
.PopupTabEmptyArea
|
79
|
-
{
|
80
|
-
padding-left: 10px ;
|
81
|
-
border-bottom: #d5d59d 1px solid;
|
82
|
-
}
|
83
|
-
|
84
|
-
.PopupTab, .PopupTabSelected
|
85
|
-
{
|
86
|
-
border-right: #d5d59d 1px solid;
|
87
|
-
border-top: #d5d59d 1px solid;
|
88
|
-
border-left: #d5d59d 1px solid;
|
89
|
-
padding-right: 5px;
|
90
|
-
padding-left: 5px;
|
91
|
-
padding-bottom: 3px;
|
92
|
-
padding-top: 3px;
|
93
|
-
color: #737357;
|
94
|
-
}
|
95
|
-
|
96
|
-
.PopupTab
|
97
|
-
{
|
98
|
-
margin-top: 1px;
|
99
|
-
border-bottom: #d5d59d 1px solid;
|
100
|
-
cursor: pointer;
|
101
|
-
cursor: hand;
|
102
|
-
}
|
103
|
-
|
104
|
-
.PopupTabSelected
|
105
|
-
{
|
106
|
-
font-weight:bold;
|
107
|
-
cursor: default;
|
108
|
-
padding-top: 4px;
|
109
|
-
border-bottom: #f1f1e3 1px solid;
|
110
|
-
background-color: #f1f1e3;
|
111
|
-
}
|
112
|
-
|
113
|
-
.PopupSelectionBox
|
114
|
-
{
|
115
|
-
border: #ff9933 1px solid !important;
|
116
|
-
background-color: #fffacd !important;
|
117
|
-
cursor: pointer;
|
118
|
-
cursor: hand;
|
119
|
-
}
|
@@ -1,448 +0,0 @@
|
|
1
|
-
/* @Packager.Header
|
2
|
-
<FileDescription>
|
3
|
-
Styles used by the editor IFRAME and Toolbar.
|
4
|
-
</FileDescription>
|
5
|
-
<Author name="Frederico Caldeira Knabben" email="www.fckeditor.net" />
|
6
|
-
*/
|
7
|
-
|
8
|
-
/*
|
9
|
-
### Basic Editor IFRAME Styles.
|
10
|
-
*/
|
11
|
-
|
12
|
-
body
|
13
|
-
{
|
14
|
-
padding: 1px 1px 1px 1px;
|
15
|
-
margin: 0px 0px 0px 0px;
|
16
|
-
}
|
17
|
-
|
18
|
-
#xEditingArea
|
19
|
-
{
|
20
|
-
border: #696969 1px solid;
|
21
|
-
}
|
22
|
-
|
23
|
-
.SourceField
|
24
|
-
{
|
25
|
-
padding: 5px;
|
26
|
-
margin: 0px;
|
27
|
-
font-family: Monospace;
|
28
|
-
}
|
29
|
-
|
30
|
-
/*
|
31
|
-
Toolbar
|
32
|
-
*/
|
33
|
-
|
34
|
-
.TB_ToolbarSet, .TB_Expand, .TB_Collapse
|
35
|
-
{
|
36
|
-
cursor: default;
|
37
|
-
background-color: #efefde;
|
38
|
-
}
|
39
|
-
|
40
|
-
.TB_ToolbarSet
|
41
|
-
{
|
42
|
-
border-top: #efefde 1px outset;
|
43
|
-
border-bottom: #efefde 1px outset;
|
44
|
-
}
|
45
|
-
|
46
|
-
.TB_ToolbarSet TD
|
47
|
-
{
|
48
|
-
font-size: 11px;
|
49
|
-
font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
|
50
|
-
}
|
51
|
-
|
52
|
-
.TB_Toolbar
|
53
|
-
{
|
54
|
-
display: inline-table; /* inline = Opera jumping buttons bug */
|
55
|
-
float: left;
|
56
|
-
}
|
57
|
-
|
58
|
-
.TB_Separator
|
59
|
-
{
|
60
|
-
width: 1px;
|
61
|
-
height: 16px;
|
62
|
-
margin: 2px;
|
63
|
-
background-color: #999966;
|
64
|
-
}
|
65
|
-
|
66
|
-
.TB_Start
|
67
|
-
{
|
68
|
-
background-image: url(/javascripts/ckeditor/images/toolbar.start.gif);
|
69
|
-
margin: 4px;
|
70
|
-
width: 3px;
|
71
|
-
background-repeat: no-repeat;
|
72
|
-
height: 16px;
|
73
|
-
}
|
74
|
-
|
75
|
-
.TB_End
|
76
|
-
{
|
77
|
-
display: none;
|
78
|
-
}
|
79
|
-
|
80
|
-
.TB_ExpandImg
|
81
|
-
{
|
82
|
-
background-image: url(images/toolbar.expand.gif);
|
83
|
-
background-repeat: no-repeat;
|
84
|
-
}
|
85
|
-
|
86
|
-
.TB_CollapseImg
|
87
|
-
{
|
88
|
-
background-image: url(images/toolbar.collapse.gif);
|
89
|
-
background-repeat: no-repeat;
|
90
|
-
}
|
91
|
-
|
92
|
-
.TB_SideBorder
|
93
|
-
{
|
94
|
-
background-color: #696969;
|
95
|
-
}
|
96
|
-
|
97
|
-
.TB_Expand, .TB_Collapse
|
98
|
-
{
|
99
|
-
padding: 2px 2px 2px 2px;
|
100
|
-
border: #efefde 1px outset;
|
101
|
-
}
|
102
|
-
|
103
|
-
.TB_Collapse
|
104
|
-
{
|
105
|
-
width: 5px;
|
106
|
-
}
|
107
|
-
|
108
|
-
.TB_Break
|
109
|
-
{
|
110
|
-
height: 24px; /* IE needs the height to be set, otherwise no break */
|
111
|
-
}
|
112
|
-
|
113
|
-
/*
|
114
|
-
Toolbar Button
|
115
|
-
*/
|
116
|
-
|
117
|
-
.TB_Button_On, .TB_Button_Off, .TB_Button_On_Over, .TB_Button_Off_Over, .TB_Button_Disabled
|
118
|
-
{
|
119
|
-
border: #efefde 1px solid; /* This is the default border */
|
120
|
-
height: 22px; /* The height is necessary, otherwise IE will not apply the alpha */
|
121
|
-
}
|
122
|
-
|
123
|
-
.TB_Button_On
|
124
|
-
{
|
125
|
-
border: #316ac5 1px solid;
|
126
|
-
background-color: #c1d2ee;
|
127
|
-
}
|
128
|
-
|
129
|
-
.TB_Button_On_Over, .TB_Button_Off_Over
|
130
|
-
{
|
131
|
-
border: #316ac5 1px solid;
|
132
|
-
background-color: #dff1ff;
|
133
|
-
}
|
134
|
-
|
135
|
-
.TB_Button_Off
|
136
|
-
{
|
137
|
-
filter: alpha(opacity=70); /* IE */
|
138
|
-
opacity: 0.70; /* Safari, Opera and Mozilla */
|
139
|
-
}
|
140
|
-
|
141
|
-
.TB_Button_Disabled
|
142
|
-
{
|
143
|
-
filter: gray() alpha(opacity=30); /* IE */
|
144
|
-
opacity: 0.30; /* Safari, Opera and Mozilla */
|
145
|
-
}
|
146
|
-
|
147
|
-
.TB_Button_Padding
|
148
|
-
{
|
149
|
-
visibility: hidden;
|
150
|
-
width: 3px;
|
151
|
-
height: 22px;
|
152
|
-
}
|
153
|
-
|
154
|
-
.TB_Button_Image
|
155
|
-
{
|
156
|
-
overflow: hidden;
|
157
|
-
width: 16px;
|
158
|
-
height: 16px;
|
159
|
-
margin: 3px;
|
160
|
-
background-repeat: no-repeat;
|
161
|
-
}
|
162
|
-
|
163
|
-
.TB_Button_Image img
|
164
|
-
{
|
165
|
-
position: relative;
|
166
|
-
}
|
167
|
-
|
168
|
-
.TB_Button_Off .TB_Button_Text
|
169
|
-
{
|
170
|
-
background-color: #efefde; /* Needed because of a bug on Clear Type */
|
171
|
-
}
|
172
|
-
|
173
|
-
.TB_ConnectionLine
|
174
|
-
{
|
175
|
-
background-color: #ffffff;
|
176
|
-
height: 1px;
|
177
|
-
margin-left: 1px; /* ltr */
|
178
|
-
margin-right: 1px; /* rtl */
|
179
|
-
}
|
180
|
-
|
181
|
-
.TB_Text
|
182
|
-
{
|
183
|
-
height: 22px;
|
184
|
-
}
|
185
|
-
|
186
|
-
.TB_Button_Off .TB_Text
|
187
|
-
{
|
188
|
-
background-color: #efefde ; /* Needed because of a bug on ClearType */
|
189
|
-
}
|
190
|
-
|
191
|
-
.TB_Button_On_Over .TB_Text
|
192
|
-
{
|
193
|
-
background-color: #dff1ff ; /* Needed because of a bug on ClearType */
|
194
|
-
}
|
195
|
-
|
196
|
-
/*
|
197
|
-
Menu
|
198
|
-
*/
|
199
|
-
|
200
|
-
.MN_Menu
|
201
|
-
{
|
202
|
-
border: 1px solid #8f8f73;
|
203
|
-
padding: 2px;
|
204
|
-
background-color: #ffffff;
|
205
|
-
cursor: default;
|
206
|
-
}
|
207
|
-
|
208
|
-
.MN_Menu, .MN_Menu .MN_Label
|
209
|
-
{
|
210
|
-
font-size: 11px;
|
211
|
-
font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
|
212
|
-
}
|
213
|
-
|
214
|
-
.MN_Item_Padding
|
215
|
-
{
|
216
|
-
visibility: hidden;
|
217
|
-
width: 3px;
|
218
|
-
height: 20px;
|
219
|
-
}
|
220
|
-
|
221
|
-
.MN_Icon
|
222
|
-
{
|
223
|
-
background-color: #e3e3c7;
|
224
|
-
text-align: center;
|
225
|
-
height: 20px;
|
226
|
-
}
|
227
|
-
|
228
|
-
.MN_Label
|
229
|
-
{
|
230
|
-
padding-left: 3px;
|
231
|
-
padding-right: 3px;
|
232
|
-
}
|
233
|
-
|
234
|
-
.MN_Separator
|
235
|
-
{
|
236
|
-
height: 3px;
|
237
|
-
}
|
238
|
-
|
239
|
-
.MN_Separator_Line
|
240
|
-
{
|
241
|
-
border-top: #b9b99d 1px solid;
|
242
|
-
}
|
243
|
-
|
244
|
-
.MN_Item .MN_Icon IMG
|
245
|
-
{
|
246
|
-
filter: alpha(opacity=70);
|
247
|
-
opacity: 0.70;
|
248
|
-
}
|
249
|
-
|
250
|
-
.MN_Item_Over
|
251
|
-
{
|
252
|
-
color: #ffffff;
|
253
|
-
background-color: #8f8f73;
|
254
|
-
}
|
255
|
-
|
256
|
-
.MN_Item_Over .MN_Icon
|
257
|
-
{
|
258
|
-
background-color: #737357;
|
259
|
-
}
|
260
|
-
|
261
|
-
.MN_Item_Disabled IMG
|
262
|
-
{
|
263
|
-
filter: gray() alpha(opacity=30); /* IE */
|
264
|
-
opacity: 0.30; /* Safari, Opera and Mozilla */
|
265
|
-
}
|
266
|
-
|
267
|
-
.MN_Item_Disabled .MN_Label
|
268
|
-
{
|
269
|
-
color: #b7b7b7;
|
270
|
-
}
|
271
|
-
|
272
|
-
.MN_Arrow
|
273
|
-
{
|
274
|
-
padding-right: 3px;
|
275
|
-
padding-left: 3px;
|
276
|
-
}
|
277
|
-
|
278
|
-
.MN_ConnectionLine
|
279
|
-
{
|
280
|
-
background-color: #ffffff;
|
281
|
-
}
|
282
|
-
|
283
|
-
.Menu .TB_Button_On, .Menu .TB_Button_On_Over
|
284
|
-
{
|
285
|
-
border: #8f8f73 1px solid;
|
286
|
-
background-color: #ffffff;
|
287
|
-
}
|
288
|
-
|
289
|
-
/*
|
290
|
-
### Panel Styles
|
291
|
-
*/
|
292
|
-
|
293
|
-
.FCK_Panel
|
294
|
-
{
|
295
|
-
border: #8f8f73 1px solid;
|
296
|
-
padding: 2px;
|
297
|
-
background-color: #ffffff;
|
298
|
-
}
|
299
|
-
|
300
|
-
.FCK_Panel, .FCK_Panel TD
|
301
|
-
{
|
302
|
-
font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
|
303
|
-
font-size: 11px;
|
304
|
-
}
|
305
|
-
|
306
|
-
/*
|
307
|
-
### Special Combos
|
308
|
-
*/
|
309
|
-
|
310
|
-
.SC_Panel
|
311
|
-
{
|
312
|
-
overflow: auto;
|
313
|
-
white-space: nowrap;
|
314
|
-
cursor: default;
|
315
|
-
border: 1px solid #8f8f73;
|
316
|
-
padding-left: 2px;
|
317
|
-
padding-right: 2px;
|
318
|
-
background-color: #ffffff;
|
319
|
-
}
|
320
|
-
|
321
|
-
.SC_Panel, .SC_Panel TD
|
322
|
-
{
|
323
|
-
font-size: 11px;
|
324
|
-
font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
|
325
|
-
}
|
326
|
-
|
327
|
-
.SC_Item, .SC_ItemSelected
|
328
|
-
{
|
329
|
-
margin-top: 2px;
|
330
|
-
margin-bottom: 2px;
|
331
|
-
background-position: left center;
|
332
|
-
padding-left: 11px;
|
333
|
-
padding-right: 3px;
|
334
|
-
padding-top: 2px;
|
335
|
-
padding-bottom: 2px;
|
336
|
-
text-overflow: ellipsis;
|
337
|
-
overflow: hidden;
|
338
|
-
background-repeat: no-repeat;
|
339
|
-
border: #dddddd 1px solid;
|
340
|
-
}
|
341
|
-
|
342
|
-
.SC_Item *, .SC_ItemSelected *
|
343
|
-
{
|
344
|
-
margin-top: 0px;
|
345
|
-
margin-bottom: 0px;
|
346
|
-
}
|
347
|
-
|
348
|
-
.SC_ItemSelected
|
349
|
-
{
|
350
|
-
border: #9a9afb 1px solid;
|
351
|
-
background-image: url(images/toolbar.arrowright.gif);
|
352
|
-
}
|
353
|
-
|
354
|
-
.SC_ItemOver
|
355
|
-
{
|
356
|
-
border: #316ac5 1px solid;
|
357
|
-
}
|
358
|
-
|
359
|
-
.SC_Field
|
360
|
-
{
|
361
|
-
border: #b7b7a6 1px solid;
|
362
|
-
cursor: default;
|
363
|
-
}
|
364
|
-
|
365
|
-
.SC_FieldCaption
|
366
|
-
{
|
367
|
-
overflow: visible;
|
368
|
-
padding-right: 5px;
|
369
|
-
padding-left: 5px;
|
370
|
-
opacity: 0.75; /* Safari, Opera and Mozilla */
|
371
|
-
filter: alpha(opacity=70); /* IE */ /* -moz-opacity: 0.75; Mozilla (Old) */
|
372
|
-
height: 23px;
|
373
|
-
background-color: #efefde;
|
374
|
-
}
|
375
|
-
|
376
|
-
.SC_FieldLabel
|
377
|
-
{
|
378
|
-
white-space: nowrap;
|
379
|
-
padding: 2px;
|
380
|
-
width: 100%;
|
381
|
-
cursor: default;
|
382
|
-
background-color: #ffffff;
|
383
|
-
text-overflow: ellipsis;
|
384
|
-
overflow: hidden;
|
385
|
-
}
|
386
|
-
|
387
|
-
.SC_FieldButton
|
388
|
-
{
|
389
|
-
background-position: center center;
|
390
|
-
background-image: url(images/toolbar.buttonarrow.gif);
|
391
|
-
border-left: #b7b7a6 1px solid;
|
392
|
-
width: 14px;
|
393
|
-
background-repeat: no-repeat;
|
394
|
-
}
|
395
|
-
|
396
|
-
.SC_FieldDisabled .SC_FieldButton, .SC_FieldDisabled .SC_FieldCaption
|
397
|
-
{
|
398
|
-
opacity: 0.30; /* Safari, Opera and Mozilla */
|
399
|
-
filter: gray() alpha(opacity=30); /* IE */ /* -moz-opacity: 0.30; Mozilla (Old) */
|
400
|
-
}
|
401
|
-
|
402
|
-
.SC_FieldOver
|
403
|
-
{
|
404
|
-
border: #316ac5 1px solid;
|
405
|
-
}
|
406
|
-
|
407
|
-
.SC_FieldOver .SC_FieldButton
|
408
|
-
{
|
409
|
-
border-left: #316ac5 1px solid;
|
410
|
-
}
|
411
|
-
|
412
|
-
/*
|
413
|
-
### Color Selector Panel
|
414
|
-
*/
|
415
|
-
|
416
|
-
.ColorBoxBorder
|
417
|
-
{
|
418
|
-
border: #808080 1px solid;
|
419
|
-
position: static;
|
420
|
-
}
|
421
|
-
|
422
|
-
.ColorBox
|
423
|
-
{
|
424
|
-
font-size: 1px;
|
425
|
-
width: 10px;
|
426
|
-
position: static;
|
427
|
-
height: 10px;
|
428
|
-
}
|
429
|
-
|
430
|
-
.ColorDeselected, .ColorSelected
|
431
|
-
{
|
432
|
-
cursor: default;
|
433
|
-
}
|
434
|
-
|
435
|
-
.ColorDeselected
|
436
|
-
{
|
437
|
-
border: #ffffff 1px solid;
|
438
|
-
padding: 2px;
|
439
|
-
float: left;
|
440
|
-
}
|
441
|
-
|
442
|
-
.ColorSelected
|
443
|
-
{
|
444
|
-
border: #330066 1px solid;
|
445
|
-
padding: 2px;
|
446
|
-
float: left;
|
447
|
-
background-color: #c4cdd6;
|
448
|
-
}
|