kilt-cms 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.rdoc +28 -0
- data/Rakefile +7 -0
- data/app/assets/images/kilt/animated-overlay.gif +0 -0
- data/app/assets/images/kilt/ui-bg_flat_0_000_40x100.png +0 -0
- data/app/assets/images/kilt/ui-bg_flat_0_fff_40x100.png +0 -0
- data/app/assets/images/kilt/ui-bg_flat_100_fff_40x100.png +0 -0
- data/app/assets/images/kilt/ui-bg_flat_100_ffffff_40x100.png +0 -0
- data/app/assets/images/kilt/ui-bg_glass_100_fff_1x400.png +0 -0
- data/app/assets/images/kilt/ui-bg_glass_100_ffffff_1x400.png +0 -0
- data/app/assets/images/kilt/ui-bg_highlight-soft_100_fff_1x100.png +0 -0
- data/app/assets/images/kilt/ui-icons_404040_256x240.png +0 -0
- data/app/assets/images/kilt/ui-icons_e74c3c_256x240.png +0 -0
- data/app/assets/javascripts/kilt/application.js +17 -0
- data/app/assets/javascripts/kilt/kilt.js +39 -0
- data/app/assets/stylesheets/kilt/application.scss +1 -0
- data/app/assets/stylesheets/kilt/config.rb +10 -0
- data/app/assets/stylesheets/kilt/sass/_base.scss +25 -0
- data/app/assets/stylesheets/kilt/sass/_buttons.scss +58 -0
- data/app/assets/stylesheets/kilt/sass/_form.scss +73 -0
- data/app/assets/stylesheets/kilt/sass/_layout.scss +85 -0
- data/app/assets/stylesheets/kilt/sass/_mixins.scss +6 -0
- data/app/assets/stylesheets/kilt/sass/_tables.scss +65 -0
- data/app/assets/stylesheets/kilt/sass/_typography.scss +79 -0
- data/app/assets/stylesheets/kilt/sass/modules/_codemirror.scss +262 -0
- data/app/assets/stylesheets/kilt/sass/modules/_jquery_ui.scss +659 -0
- data/app/assets/stylesheets/kilt/sass/screen.scss +1 -0
- data/app/assets/stylesheets/kilt/stylesheets/modules/codemirror.css +1 -0
- data/app/assets/stylesheets/kilt/stylesheets/modules/jquery-ui.css +5 -0
- data/app/assets/stylesheets/kilt/stylesheets/print.css +0 -0
- data/app/assets/stylesheets/kilt/stylesheets/screen.css +5 -0
- data/app/controllers/kilt/kilt_controller.rb +122 -0
- data/app/views/kilt/form/_default.html.erb +4 -0
- data/app/views/kilt/form/boolean.html.erb +4 -0
- data/app/views/kilt/form/datetime.html.erb +4 -0
- data/app/views/kilt/form/file.html.erb +59 -0
- data/app/views/kilt/form/html.html.erb +4 -0
- data/app/views/kilt/form/image.html.erb +72 -0
- data/app/views/kilt/form/longtext.html.erb +4 -0
- data/app/views/kilt/form/number.html.erb +23 -0
- data/app/views/kilt/form/text.html.erb +4 -0
- data/app/views/kilt/form/vimeo.html.erb +100 -0
- data/app/views/kilt/form/youtube.html.erb +98 -0
- data/app/views/kilt/kilt/_form.html.erb +30 -0
- data/app/views/kilt/kilt/edit.html.erb +2 -0
- data/app/views/kilt/kilt/index.html.erb +9 -0
- data/app/views/kilt/kilt/list.html.erb +67 -0
- data/app/views/kilt/kilt/new.html.erb +2 -0
- data/app/views/layouts/kilt/cms.html.erb +41 -0
- data/config/routes.rb +13 -0
- data/lib/generators/kilt/backend_generator.rb +19 -0
- data/lib/generators/kilt/frontend_generator.rb +33 -0
- data/lib/generators/kilt/install_generator.rb +13 -0
- data/lib/generators/kilt/object_generator.rb +23 -0
- data/lib/generators/kilt/templates/backend/config.yml.erb +16 -0
- data/lib/generators/kilt/templates/backend/creds.yml.example +8 -0
- data/lib/generators/kilt/templates/backend/kilt.rb +11 -0
- data/lib/generators/kilt/templates/frontend/application.html.erb +24 -0
- data/lib/generators/kilt/templates/frontend/assets/images/sprite/empty +0 -0
- data/lib/generators/kilt/templates/frontend/assets/images/sprite/retina/empty +0 -0
- data/lib/generators/kilt/templates/frontend/assets/javascripts/application.js +14 -0
- data/lib/generators/kilt/templates/frontend/assets/javascripts/html5shiv.js +2 -0
- data/lib/generators/kilt/templates/frontend/assets/javascripts/mediaqueries.js +1 -0
- data/lib/generators/kilt/templates/frontend/assets/stylesheets/config.rb +24 -0
- data/lib/generators/kilt/templates/frontend/assets/stylesheets/sass/modules/_mixins.scss +81 -0
- data/lib/generators/kilt/templates/frontend/assets/stylesheets/sass/modules/_reset_custom.scss +31 -0
- data/lib/generators/kilt/templates/frontend/assets/stylesheets/sass/modules/_typography.scss +35 -0
- data/lib/generators/kilt/templates/frontend/assets/stylesheets/sass/screen.scss +13 -0
- data/lib/generators/kilt/templates/frontend/assets/stylesheets/sass/views/_layout.scss +7 -0
- data/lib/generators/kilt/templates/frontend/assets/stylesheets/stylesheets/screen.css +160 -0
- data/lib/generators/kilt/templates/frontend/dummy.js.erb +11 -0
- data/lib/generators/kilt/templates/frontend/home_controller.rb.erb +4 -0
- data/lib/generators/kilt/templates/frontend/index.html.erb +5 -0
- data/lib/kilt/base.rb +12 -0
- data/lib/kilt/engine.rb +17 -0
- data/lib/kilt/exceptions.rb +10 -0
- data/lib/kilt/form.rb +28 -0
- data/lib/kilt/object.rb +66 -0
- data/lib/kilt/object_collection.rb +52 -0
- data/lib/kilt/upload.rb +54 -0
- data/lib/kilt/utils.rb +166 -0
- data/lib/kilt.rb +125 -0
- data/lib/tasks/kilt_tasks.rake +6 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/sprite/empty +0 -0
- data/test/dummy/app/assets/images/sprite/retina/empty +0 -0
- data/test/dummy/app/assets/javascripts/application.js +14 -0
- data/test/dummy/app/assets/javascripts/dummy.js +11 -0
- data/test/dummy/app/assets/javascripts/html5shiv.js +2 -0
- data/test/dummy/app/assets/javascripts/mediaqueries.js +1 -0
- data/test/dummy/app/assets/stylesheets/config.rb +24 -0
- data/test/dummy/app/assets/stylesheets/sass/modules/_mixins.scss +81 -0
- data/test/dummy/app/assets/stylesheets/sass/modules/_reset_custom.scss +31 -0
- data/test/dummy/app/assets/stylesheets/sass/modules/_typography.scss +35 -0
- data/test/dummy/app/assets/stylesheets/sass/screen.scss +13 -0
- data/test/dummy/app/assets/stylesheets/sass/views/_layout.scss +7 -0
- data/test/dummy/app/assets/stylesheets/stylesheets/screen.css +160 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/dummy_controller.rb +4 -0
- data/test/dummy/app/views/dummy/index.html.erb +5 -0
- data/test/dummy/app/views/layouts/application.html.erb +24 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +27 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +23 -0
- data/test/dummy/config/environments/test.rb +23 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/kilt.rb +14 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/kilt/config.yml +40 -0
- data/test/dummy/config/kilt/creds.yml +8 -0
- data/test/dummy/config/routes.rb +7 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/log/development.log +68163 -0
- data/test/dummy/log/test.log +36 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/uploads/file/Gemfile +3 -0
- data/test/dummy/public/uploads/file/Gemfile.lock +139 -0
- data/test/dummy/public/uploads/file/README.rdoc +28 -0
- data/test/dummy/public/uploads/file/Rakefile +6 -0
- data/test/dummy/public/uploads/file/barcelona.jpg +0 -0
- data/test/dummy/public/uploads/file/dodgerstadiumpix.jpg +0 -0
- data/test/dummy/public/uploads/file/field.jpg +0 -0
- data/test/dummy/public/uploads/file/fob-elton-john-08.jpg +0 -0
- data/test/dummy/public/uploads/file/kilt.gemspec +32 -0
- data/test/dummy/public/uploads/file/kilt.rb +100 -0
- data/test/dummy/public/uploads/image/2960116125_1158ba3c59_o.jpg +0 -0
- data/test/dummy/public/uploads/image/JT.jpg +0 -0
- data/test/dummy/public/uploads/image/barcelona.jpg +0 -0
- data/test/dummy/public/uploads/image/dodgerstadiumpix.jpg +0 -0
- data/test/dummy/public/uploads/image/field.jpg +0 -0
- data/test/dummy/spec/kilt_spec.rb +31 -0
- data/test/dummy/spec/spec_helper.rb +12 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/03cdc43618f8bef3dfc725a1886c40ed +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0d8e5c7178ebdb79e5b9cc4ef439eae8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13a3d23d13c1459a86283c4fe577a775 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/18837248cb3274df9b7c6b0a5dcd56a5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1c198a7e1d4ae808a6adf4c4809061eb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2e57def2c82ce30227eefea2360d5f50 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/36f9a7f6f43adb582ac6eec43b58eb30 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/36fff19076c588427464432f563a8d2d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3878e0f19bbd21176b1bcc46160a3df3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3cee919b5b764629fbb01de361ad1b99 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3d69f4783ceef2f5455635de03e6c62a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3d8ca1585ee95c5efb388645d66cf377 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3e0acde4cdc501f590a21ede6fac0b97 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/413be9c73d25c7febe933f4619da7cf8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4b5c4a1edd3823a6a6c39e06b6eb230a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4c5736bf0bd429296d1a32930364897e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/542fc810f9cd36e7bed9a3e5e9670995 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/56f1e7d57d31bf3315e1e33732d57faa +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5bea4c2d87ec725262213ed51575b485 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5eb5178b706a9b8bd0362b7ed487339a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5fa6492da1cba5232b9e9799b5e2bf8f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5fe3d26a30497da82978c9f7ee53068b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/66f697b8e4167ad9ebefbd8b5fc65b23 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6b6e86e81f5e8f80bb2b3d1e8f7ed7f3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6caab0d3b759107ab41492546763aaf0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6d83c6efd2bf1080ba1dead9fcfdd0db +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/70d4b3b9e59d0e01e90eebf94dbc2c47 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8127282074e6ffd457b72c228a69f0c0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8ffacb4ba6e6ca3da12ac1100f664b30 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9dd98bca318fb820a8451cafce020588 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b259805c84c81064f20700498328f109 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b7e1f059a53a1e79df01a336fb1f50f0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c0671678b70011547b80da0669d031cc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c1006115f345f87cc152b851154e9e34 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cf0d5ad037fbf541c6b982abf73b9938 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/da31523b2e8cf32dd8db9f304d5b7395 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dc676330961fd22be77c48cb77ec065f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ddc29f2c13cd99d017fd526b61dcb951 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/de45247cb814cafe20e9e46c79e470fe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e22d705d0c889ec4837f183a9beec0f3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e7ba95a61b1b9381906a88610dceb6dd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ef7c8ce46dfc9e9087ce84dbdfdd0011 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f3e1a8ba304f70dccefd77356c900ebc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/data/meta_request/2ff92b3b-2e2c-438e-a687-d2900c8722e3.json +1 -0
- data/test/dummy/tmp/data/meta_request/4a2f197b-3f28-4ade-962e-0337d56878b1.json +1 -0
- data/test/dummy/tmp/data/meta_request/7eb04de5-6edf-4ea2-a4cf-994e6173b529.json +1 -0
- data/test/dummy/tmp/data/meta_request/96ec6abc-1da4-45e1-a397-79e849741501.json +1 -0
- data/test/dummy/tmp/data/meta_request/a9566f73-bde1-4346-b254-011381243ddc.json +1 -0
- data/test/dummy/tmp/data/meta_request/a9eb2875-930e-49ed-ab2f-40aba11bb132.json +1 -0
- data/test/dummy/tmp/data/meta_request/bcd27bed-9cac-4c32-8030-2699415e91a1.json +1 -0
- data/test/dummy/tmp/data/meta_request/e6152727-3e54-4858-ad8f-6e57e247a8a5.json +1 -0
- data/test/dummy/tmp/data/meta_request/e7db6149-e316-4ad1-a3a8-c014d0e7092b.json +1 -0
- data/test/dummy/tmp/data/meta_request/fc793f84-b287-4459-b902-705b1d2b1141.json +1 -0
- metadata +536 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
*,
|
2
|
+
*:before,
|
3
|
+
*:after {
|
4
|
+
outline: none;
|
5
|
+
box-sizing: border-box;
|
6
|
+
-moz-box-sizing: border-box;
|
7
|
+
-webkit-box-sizing: border-box;
|
8
|
+
-webkit-font-smoothing: antialiased;
|
9
|
+
font-smoothing: antialiased;
|
10
|
+
}
|
11
|
+
|
12
|
+
body {
|
13
|
+
background: $light_grey;
|
14
|
+
color: $dark_grey;
|
15
|
+
font-family: 'Open Sans', sans-serif;
|
16
|
+
font-weight: 300;
|
17
|
+
font-size: 18px;
|
18
|
+
line-height: 1.5;
|
19
|
+
}
|
20
|
+
|
21
|
+
h1,h2,h3,h4,h5,h6,p,table {
|
22
|
+
margin: 0 0 30px;
|
23
|
+
}
|
24
|
+
|
25
|
+
h1 {
|
26
|
+
font-size: 48px;
|
27
|
+
font-weight: 300;
|
28
|
+
}
|
29
|
+
|
30
|
+
h2 {
|
31
|
+
font-size: 36px;
|
32
|
+
margin: 30px 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
h3,h4,h5,h6 {
|
36
|
+
font-size: 24px;
|
37
|
+
}
|
38
|
+
|
39
|
+
h4,
|
40
|
+
label,
|
41
|
+
h2 small {
|
42
|
+
font-size: 13px;
|
43
|
+
letter-spacing: 1px;
|
44
|
+
text-transform: uppercase;
|
45
|
+
|
46
|
+
&.flag {
|
47
|
+
|
48
|
+
background: $med_grey;
|
49
|
+
display: inline-block;
|
50
|
+
color: $dark_grey;
|
51
|
+
font-weight: normal;
|
52
|
+
padding: 10px;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
h2 small {
|
57
|
+
@include border-radius(3px);
|
58
|
+
background: $med_grey;
|
59
|
+
display: inline-block;
|
60
|
+
padding: 3px 6px;
|
61
|
+
position: relative;
|
62
|
+
top: -3px;
|
63
|
+
font-weight: normal;
|
64
|
+
color: $dark_grey;
|
65
|
+
}
|
66
|
+
|
67
|
+
small {
|
68
|
+
font-size: 13px;
|
69
|
+
}
|
70
|
+
|
71
|
+
a {
|
72
|
+
color: $purple;
|
73
|
+
cursor: pointer;
|
74
|
+
text-decoration: none;
|
75
|
+
|
76
|
+
&:hover {
|
77
|
+
color: $black;
|
78
|
+
}
|
79
|
+
}
|
@@ -0,0 +1,262 @@
|
|
1
|
+
.CodeMirror {
|
2
|
+
/* Set height, width, borders, and global font properties here */
|
3
|
+
font-family: monospace;
|
4
|
+
height: 300px;
|
5
|
+
border: 1px solid #ccc;
|
6
|
+
}
|
7
|
+
.CodeMirror-scroll {
|
8
|
+
/* Set scrolling behaviour here */
|
9
|
+
overflow: auto;
|
10
|
+
}
|
11
|
+
|
12
|
+
/* PADDING */
|
13
|
+
|
14
|
+
.CodeMirror-lines {
|
15
|
+
padding: 4px 0; /* Vertical padding around content */
|
16
|
+
}
|
17
|
+
.CodeMirror pre {
|
18
|
+
padding: 0 4px; /* Horizontal padding of content */
|
19
|
+
}
|
20
|
+
|
21
|
+
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
22
|
+
background-color: white; /* The little square between H and V scrollbars */
|
23
|
+
}
|
24
|
+
|
25
|
+
/* GUTTER */
|
26
|
+
|
27
|
+
.CodeMirror-gutters {
|
28
|
+
border-right: 1px solid #ddd;
|
29
|
+
background-color: #f7f7f7;
|
30
|
+
white-space: nowrap;
|
31
|
+
}
|
32
|
+
.CodeMirror-linenumbers {}
|
33
|
+
.CodeMirror-linenumber {
|
34
|
+
padding: 0 3px 0 5px;
|
35
|
+
min-width: 20px;
|
36
|
+
text-align: right;
|
37
|
+
color: #999;
|
38
|
+
}
|
39
|
+
|
40
|
+
/* CURSOR */
|
41
|
+
|
42
|
+
.CodeMirror div.CodeMirror-cursor {
|
43
|
+
border-left: 1px solid black;
|
44
|
+
z-index: 3;
|
45
|
+
}
|
46
|
+
/* Shown when moving in bi-directional text */
|
47
|
+
.CodeMirror div.CodeMirror-secondarycursor {
|
48
|
+
border-left: 1px solid silver;
|
49
|
+
}
|
50
|
+
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
|
51
|
+
width: auto;
|
52
|
+
border: 0;
|
53
|
+
background: #7e7;
|
54
|
+
z-index: 1;
|
55
|
+
}
|
56
|
+
/* Can style cursor different in overwrite (non-insert) mode */
|
57
|
+
.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}
|
58
|
+
|
59
|
+
.cm-tab { display: inline-block; }
|
60
|
+
|
61
|
+
/* DEFAULT THEME */
|
62
|
+
|
63
|
+
.cm-s-default .cm-keyword {color: #708;}
|
64
|
+
.cm-s-default .cm-atom {color: #219;}
|
65
|
+
.cm-s-default .cm-number {color: #164;}
|
66
|
+
.cm-s-default .cm-def {color: #00f;}
|
67
|
+
.cm-s-default .cm-variable {color: black;}
|
68
|
+
.cm-s-default .cm-variable-2 {color: #05a;}
|
69
|
+
.cm-s-default .cm-variable-3 {color: #085;}
|
70
|
+
.cm-s-default .cm-property {color: black;}
|
71
|
+
.cm-s-default .cm-operator {color: black;}
|
72
|
+
.cm-s-default .cm-comment {color: #a50;}
|
73
|
+
.cm-s-default .cm-string {color: #a11;}
|
74
|
+
.cm-s-default .cm-string-2 {color: #f50;}
|
75
|
+
.cm-s-default .cm-meta {color: #555;}
|
76
|
+
.cm-s-default .cm-qualifier {color: #555;}
|
77
|
+
.cm-s-default .cm-builtin {color: #30a;}
|
78
|
+
.cm-s-default .cm-bracket {color: #997;}
|
79
|
+
.cm-s-default .cm-tag {color: #170;}
|
80
|
+
.cm-s-default .cm-attribute {color: #00c;}
|
81
|
+
.cm-s-default .cm-header {color: blue;}
|
82
|
+
.cm-s-default .cm-quote {color: #090;}
|
83
|
+
.cm-s-default .cm-hr {color: #999;}
|
84
|
+
.cm-s-default .cm-link {color: #00c;}
|
85
|
+
|
86
|
+
.cm-negative {color: #d44;}
|
87
|
+
.cm-positive {color: #292;}
|
88
|
+
.cm-header, .cm-strong {font-weight: bold;}
|
89
|
+
.cm-em {font-style: italic;}
|
90
|
+
.cm-link {text-decoration: underline;}
|
91
|
+
|
92
|
+
.cm-s-default .cm-error {color: #f00;}
|
93
|
+
.cm-invalidchar {color: #f00;}
|
94
|
+
|
95
|
+
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
96
|
+
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
97
|
+
.CodeMirror-activeline-background {background: #e8f2ff;}
|
98
|
+
|
99
|
+
/* STOP */
|
100
|
+
|
101
|
+
/* The rest of this file contains styles related to the mechanics of
|
102
|
+
the editor. You probably shouldn't touch them. */
|
103
|
+
|
104
|
+
.CodeMirror {
|
105
|
+
line-height: 1;
|
106
|
+
position: relative;
|
107
|
+
overflow: hidden;
|
108
|
+
background: white;
|
109
|
+
color: black;
|
110
|
+
}
|
111
|
+
|
112
|
+
.CodeMirror-scroll {
|
113
|
+
/* 30px is the magic margin used to hide the element's real scrollbars */
|
114
|
+
/* See overflow: hidden in .CodeMirror */
|
115
|
+
margin-bottom: -30px;
|
116
|
+
padding-bottom: 30px;
|
117
|
+
height: 100%;
|
118
|
+
outline: none; /* Prevent dragging from highlighting the element */
|
119
|
+
position: relative;
|
120
|
+
-moz-box-sizing: content-box;
|
121
|
+
box-sizing: content-box;
|
122
|
+
}
|
123
|
+
.CodeMirror-sizer {
|
124
|
+
position: relative;
|
125
|
+
}
|
126
|
+
|
127
|
+
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
128
|
+
before actuall scrolling happens, thus preventing shaking and
|
129
|
+
flickering artifacts. */
|
130
|
+
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
131
|
+
position: absolute;
|
132
|
+
z-index: 6;
|
133
|
+
display: none;
|
134
|
+
}
|
135
|
+
.CodeMirror-vscrollbar {
|
136
|
+
right: 0; top: 0;
|
137
|
+
overflow-x: hidden;
|
138
|
+
overflow-y: scroll;
|
139
|
+
}
|
140
|
+
.CodeMirror-hscrollbar {
|
141
|
+
bottom: 0; left: 0;
|
142
|
+
overflow-y: hidden;
|
143
|
+
overflow-x: scroll;
|
144
|
+
}
|
145
|
+
.CodeMirror-scrollbar-filler {
|
146
|
+
right: 0; bottom: 0;
|
147
|
+
}
|
148
|
+
.CodeMirror-gutter-filler {
|
149
|
+
left: 0; bottom: 0;
|
150
|
+
}
|
151
|
+
|
152
|
+
.CodeMirror-gutters {
|
153
|
+
position: absolute; left: 0; top: 0;
|
154
|
+
padding-bottom: 30px;
|
155
|
+
z-index: 3;
|
156
|
+
}
|
157
|
+
.CodeMirror-gutter {
|
158
|
+
white-space: normal;
|
159
|
+
height: 100%;
|
160
|
+
-moz-box-sizing: content-box;
|
161
|
+
box-sizing: content-box;
|
162
|
+
padding-bottom: 30px;
|
163
|
+
margin-bottom: -32px;
|
164
|
+
display: inline-block;
|
165
|
+
/* Hack to make IE7 behave */
|
166
|
+
*zoom:1;
|
167
|
+
*display:inline;
|
168
|
+
}
|
169
|
+
.CodeMirror-gutter-elt {
|
170
|
+
position: absolute;
|
171
|
+
cursor: default;
|
172
|
+
z-index: 4;
|
173
|
+
}
|
174
|
+
|
175
|
+
.CodeMirror-lines {
|
176
|
+
cursor: text;
|
177
|
+
}
|
178
|
+
.CodeMirror pre {
|
179
|
+
/* Reset some styles that the rest of the page might have set */
|
180
|
+
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
181
|
+
border-width: 0;
|
182
|
+
background: transparent;
|
183
|
+
font-family: inherit;
|
184
|
+
font-size: inherit;
|
185
|
+
margin: 0;
|
186
|
+
white-space: pre;
|
187
|
+
word-wrap: normal;
|
188
|
+
line-height: inherit;
|
189
|
+
color: inherit;
|
190
|
+
z-index: 2;
|
191
|
+
position: relative;
|
192
|
+
overflow: visible;
|
193
|
+
}
|
194
|
+
.CodeMirror-wrap pre {
|
195
|
+
word-wrap: break-word;
|
196
|
+
white-space: pre-wrap;
|
197
|
+
word-break: normal;
|
198
|
+
}
|
199
|
+
.CodeMirror-code pre {
|
200
|
+
border-right: 30px solid transparent;
|
201
|
+
width: -webkit-fit-content;
|
202
|
+
width: -moz-fit-content;
|
203
|
+
width: fit-content;
|
204
|
+
}
|
205
|
+
.CodeMirror-wrap .CodeMirror-code pre {
|
206
|
+
border-right: none;
|
207
|
+
width: auto;
|
208
|
+
}
|
209
|
+
.CodeMirror-linebackground {
|
210
|
+
position: absolute;
|
211
|
+
left: 0; right: 0; top: 0; bottom: 0;
|
212
|
+
z-index: 0;
|
213
|
+
}
|
214
|
+
|
215
|
+
.CodeMirror-linewidget {
|
216
|
+
position: relative;
|
217
|
+
z-index: 2;
|
218
|
+
overflow: auto;
|
219
|
+
}
|
220
|
+
|
221
|
+
.CodeMirror-widget {}
|
222
|
+
|
223
|
+
.CodeMirror-wrap .CodeMirror-scroll {
|
224
|
+
overflow-x: hidden;
|
225
|
+
}
|
226
|
+
|
227
|
+
.CodeMirror-measure {
|
228
|
+
position: absolute;
|
229
|
+
width: 100%;
|
230
|
+
height: 0;
|
231
|
+
overflow: hidden;
|
232
|
+
visibility: hidden;
|
233
|
+
}
|
234
|
+
.CodeMirror-measure pre { position: static; }
|
235
|
+
|
236
|
+
.CodeMirror div.CodeMirror-cursor {
|
237
|
+
position: absolute;
|
238
|
+
visibility: hidden;
|
239
|
+
border-right: none;
|
240
|
+
width: 0;
|
241
|
+
}
|
242
|
+
.CodeMirror-focused div.CodeMirror-cursor {
|
243
|
+
visibility: visible;
|
244
|
+
}
|
245
|
+
|
246
|
+
.CodeMirror-selected { background: #d9d9d9; }
|
247
|
+
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
248
|
+
|
249
|
+
.cm-searching {
|
250
|
+
background: #ffa;
|
251
|
+
background: rgba(255, 255, 0, .4);
|
252
|
+
}
|
253
|
+
|
254
|
+
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
255
|
+
.CodeMirror span { *vertical-align: text-bottom; }
|
256
|
+
|
257
|
+
@media print {
|
258
|
+
/* Hide the cursor when printing */
|
259
|
+
.CodeMirror div.CodeMirror-cursor {
|
260
|
+
visibility: hidden;
|
261
|
+
}
|
262
|
+
}
|
@@ -0,0 +1,659 @@
|
|
1
|
+
/*! jQuery UI - v1.10.3 - 2013-12-17
|
2
|
+
* http://jqueryui.com
|
3
|
+
* Includes: jquery.ui.core.css, jquery.ui.datepicker.css, jquery.ui.theme.css
|
4
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault='Open%20Sans'%2CArial%2Csans-serif&fwDefault=normal&fsDefault=18px&cornerRadius=0&bgColorHeader=%23fff&bgTextureHeader=highlight_soft&bgImgOpacityHeader=100&borderColorHeader=%23fff&fcHeader=%23404040&iconColorHeader=%23404040&bgColorContent=%23ffffff&bgTextureContent=flat&bgImgOpacityContent=100&borderColorContent=%23ddd&fcContent=%23404040&iconColorContent=%23404040&bgColorDefault=%23fff&bgTextureDefault=flat&bgImgOpacityDefault=100&borderColorDefault=%23fff&fcDefault=%23404040&iconColorDefault=%23404040&bgColorHover=%23fff&bgTextureHover=flat&bgImgOpacityHover=100&borderColorHover=%23b344f3&fcHover=%23404040&iconColorHover=%23404040&bgColorActive=%23ffffff&bgTextureActive=glass&bgImgOpacityActive=100&borderColorActive=%23b344f3&fcActive=%23404040&iconColorActive=%23404040&bgColorHighlight=%23fff&bgTextureHighlight=flat&bgImgOpacityHighlight=100&borderColorHighlight=%23b344f3&fcHighlight=%23404040&iconColorHighlight=%23404040&bgColorError=%23fff&bgTextureError=glass&bgImgOpacityError=100&borderColorError=%23e74c3c&fcError=%23e74c3c&iconColorError=%23e74c3c&bgColorOverlay=%23fff&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=%23000&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=0&thicknessShadow=0&offsetTopShadow=0&offsetLeftShadow=0&cornerRadiusShadow=0
|
5
|
+
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
|
6
|
+
|
7
|
+
/* Layout helpers
|
8
|
+
----------------------------------*/
|
9
|
+
.ui-helper-hidden {
|
10
|
+
display: none;
|
11
|
+
}
|
12
|
+
.ui-helper-hidden-accessible {
|
13
|
+
border: 0;
|
14
|
+
clip: rect(0 0 0 0);
|
15
|
+
height: 1px;
|
16
|
+
margin: -1px;
|
17
|
+
overflow: hidden;
|
18
|
+
padding: 0;
|
19
|
+
position: absolute;
|
20
|
+
width: 1px;
|
21
|
+
}
|
22
|
+
.ui-helper-reset {
|
23
|
+
margin: 0;
|
24
|
+
padding: 0;
|
25
|
+
border: 0;
|
26
|
+
outline: 0;
|
27
|
+
line-height: 1.3;
|
28
|
+
text-decoration: none;
|
29
|
+
font-size: 100%;
|
30
|
+
list-style: none;
|
31
|
+
}
|
32
|
+
.ui-helper-clearfix:before,
|
33
|
+
.ui-helper-clearfix:after {
|
34
|
+
content: "";
|
35
|
+
display: table;
|
36
|
+
border-collapse: collapse;
|
37
|
+
}
|
38
|
+
.ui-helper-clearfix:after {
|
39
|
+
clear: both;
|
40
|
+
}
|
41
|
+
.ui-helper-clearfix {
|
42
|
+
min-height: 0; /* support: IE7 */
|
43
|
+
}
|
44
|
+
.ui-helper-zfix {
|
45
|
+
width: 100%;
|
46
|
+
height: 100%;
|
47
|
+
top: 0;
|
48
|
+
left: 0;
|
49
|
+
position: absolute;
|
50
|
+
opacity: 0;
|
51
|
+
filter:Alpha(Opacity=0);
|
52
|
+
}
|
53
|
+
|
54
|
+
.ui-front {
|
55
|
+
z-index: 100;
|
56
|
+
}
|
57
|
+
|
58
|
+
|
59
|
+
/* Interaction Cues
|
60
|
+
----------------------------------*/
|
61
|
+
.ui-state-disabled {
|
62
|
+
cursor: default !important;
|
63
|
+
}
|
64
|
+
|
65
|
+
|
66
|
+
/* Icons
|
67
|
+
----------------------------------*/
|
68
|
+
|
69
|
+
/* states and images */
|
70
|
+
.ui-icon {
|
71
|
+
display: block;
|
72
|
+
text-indent: -99999px;
|
73
|
+
overflow: hidden;
|
74
|
+
background-repeat: no-repeat;
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
/* Misc visuals
|
79
|
+
----------------------------------*/
|
80
|
+
|
81
|
+
/* Overlays */
|
82
|
+
.ui-widget-overlay {
|
83
|
+
position: fixed;
|
84
|
+
top: 0;
|
85
|
+
left: 0;
|
86
|
+
width: 100%;
|
87
|
+
height: 100%;
|
88
|
+
}
|
89
|
+
.ui-datepicker {
|
90
|
+
width: 17em;
|
91
|
+
padding: .2em .2em 0;
|
92
|
+
display: none;
|
93
|
+
}
|
94
|
+
.ui-datepicker .ui-datepicker-header {
|
95
|
+
position: relative;
|
96
|
+
padding: .2em 0;
|
97
|
+
}
|
98
|
+
.ui-datepicker .ui-datepicker-prev,
|
99
|
+
.ui-datepicker .ui-datepicker-next {
|
100
|
+
position: absolute;
|
101
|
+
top: 2px;
|
102
|
+
width: 1.8em;
|
103
|
+
height: 1.8em;
|
104
|
+
}
|
105
|
+
.ui-datepicker .ui-datepicker-prev-hover,
|
106
|
+
.ui-datepicker .ui-datepicker-next-hover {
|
107
|
+
top: 1px;
|
108
|
+
}
|
109
|
+
.ui-datepicker .ui-datepicker-prev {
|
110
|
+
left: 2px;
|
111
|
+
}
|
112
|
+
.ui-datepicker .ui-datepicker-next {
|
113
|
+
right: 2px;
|
114
|
+
}
|
115
|
+
.ui-datepicker .ui-datepicker-prev-hover {
|
116
|
+
left: 1px;
|
117
|
+
}
|
118
|
+
.ui-datepicker .ui-datepicker-next-hover {
|
119
|
+
right: 1px;
|
120
|
+
}
|
121
|
+
.ui-datepicker .ui-datepicker-prev span,
|
122
|
+
.ui-datepicker .ui-datepicker-next span {
|
123
|
+
display: block;
|
124
|
+
position: absolute;
|
125
|
+
left: 50%;
|
126
|
+
margin-left: -8px;
|
127
|
+
top: 50%;
|
128
|
+
margin-top: -8px;
|
129
|
+
}
|
130
|
+
.ui-datepicker .ui-datepicker-title {
|
131
|
+
font-weight: normal;
|
132
|
+
margin: 0 2.3em;
|
133
|
+
line-height: 1.8em;
|
134
|
+
text-align: center;
|
135
|
+
}
|
136
|
+
.ui-datepicker .ui-datepicker-title select {
|
137
|
+
font-size: 1em;
|
138
|
+
margin: 1px 0;
|
139
|
+
}
|
140
|
+
.ui-datepicker select.ui-datepicker-month-year {
|
141
|
+
width: 100%;
|
142
|
+
}
|
143
|
+
.ui-datepicker select.ui-datepicker-month,
|
144
|
+
.ui-datepicker select.ui-datepicker-year {
|
145
|
+
width: 49%;
|
146
|
+
}
|
147
|
+
.ui-datepicker table {
|
148
|
+
width: 100%;
|
149
|
+
font-size: .9em;
|
150
|
+
border-collapse: collapse;
|
151
|
+
margin: 0 0 .4em;
|
152
|
+
}
|
153
|
+
.ui-datepicker tr,
|
154
|
+
.ui-datepicker tr:hover {
|
155
|
+
background: #fff;
|
156
|
+
}
|
157
|
+
.ui-datepicker th {
|
158
|
+
background: none;
|
159
|
+
padding: .7em .3em;
|
160
|
+
text-align: center;
|
161
|
+
font-size: 13px;
|
162
|
+
font-weight: normal;
|
163
|
+
border: 0;
|
164
|
+
text-align: right;
|
165
|
+
text-transform: uppercase;
|
166
|
+
letter-spacing: 1px;
|
167
|
+
}
|
168
|
+
.ui-datepicker td {
|
169
|
+
border: 0;
|
170
|
+
padding: 1px;
|
171
|
+
}
|
172
|
+
.ui-datepicker td span,
|
173
|
+
.ui-datepicker td a {
|
174
|
+
display: block;
|
175
|
+
padding: .2em;
|
176
|
+
text-align: right;
|
177
|
+
text-decoration: none;
|
178
|
+
}
|
179
|
+
.ui-datepicker .ui-datepicker-buttonpane {
|
180
|
+
background-image: none;
|
181
|
+
margin: .7em 0 0 0;
|
182
|
+
padding: 0 .2em;
|
183
|
+
border-left: 0;
|
184
|
+
border-right: 0;
|
185
|
+
border-bottom: 0;
|
186
|
+
}
|
187
|
+
.ui-datepicker .ui-datepicker-buttonpane button {
|
188
|
+
float: right;
|
189
|
+
margin: .5em .2em .4em;
|
190
|
+
cursor: pointer;
|
191
|
+
padding: .2em .6em .3em .6em;
|
192
|
+
width: auto;
|
193
|
+
overflow: visible;
|
194
|
+
}
|
195
|
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
196
|
+
float: left;
|
197
|
+
}
|
198
|
+
|
199
|
+
/* with multiple calendars */
|
200
|
+
.ui-datepicker.ui-datepicker-multi {
|
201
|
+
width: auto;
|
202
|
+
}
|
203
|
+
.ui-datepicker-multi .ui-datepicker-group {
|
204
|
+
float: left;
|
205
|
+
}
|
206
|
+
.ui-datepicker-multi .ui-datepicker-group table {
|
207
|
+
width: 95%;
|
208
|
+
margin: 0 auto .4em;
|
209
|
+
}
|
210
|
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
211
|
+
width: 50%;
|
212
|
+
}
|
213
|
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
214
|
+
width: 33.3%;
|
215
|
+
}
|
216
|
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
217
|
+
width: 25%;
|
218
|
+
}
|
219
|
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
220
|
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
221
|
+
border-left-width: 0;
|
222
|
+
}
|
223
|
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
224
|
+
clear: left;
|
225
|
+
}
|
226
|
+
.ui-datepicker-row-break {
|
227
|
+
clear: both;
|
228
|
+
width: 100%;
|
229
|
+
font-size: 0;
|
230
|
+
}
|
231
|
+
|
232
|
+
/* RTL support */
|
233
|
+
.ui-datepicker-rtl {
|
234
|
+
direction: rtl;
|
235
|
+
}
|
236
|
+
.ui-datepicker-rtl .ui-datepicker-prev {
|
237
|
+
right: 2px;
|
238
|
+
left: auto;
|
239
|
+
}
|
240
|
+
.ui-datepicker-rtl .ui-datepicker-next {
|
241
|
+
left: 2px;
|
242
|
+
right: auto;
|
243
|
+
}
|
244
|
+
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
245
|
+
right: 1px;
|
246
|
+
left: auto;
|
247
|
+
}
|
248
|
+
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
249
|
+
left: 1px;
|
250
|
+
right: auto;
|
251
|
+
}
|
252
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
253
|
+
clear: right;
|
254
|
+
}
|
255
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
256
|
+
float: left;
|
257
|
+
}
|
258
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
259
|
+
.ui-datepicker-rtl .ui-datepicker-group {
|
260
|
+
float: right;
|
261
|
+
}
|
262
|
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
263
|
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
264
|
+
border-right-width: 0;
|
265
|
+
border-left-width: 1px;
|
266
|
+
}
|
267
|
+
|
268
|
+
/* Component containers
|
269
|
+
----------------------------------*/
|
270
|
+
.ui-widget {
|
271
|
+
font-family: 'Open Sans',Arial,sans-serif;
|
272
|
+
font-size: 18px;
|
273
|
+
}
|
274
|
+
.ui-widget .ui-widget {
|
275
|
+
font-size: 1em;
|
276
|
+
}
|
277
|
+
.ui-widget input,
|
278
|
+
.ui-widget select,
|
279
|
+
.ui-widget textarea,
|
280
|
+
.ui-widget button {
|
281
|
+
font-family: 'Open Sans',Arial,sans-serif;
|
282
|
+
font-size: 1em;
|
283
|
+
}
|
284
|
+
.ui-widget-content {
|
285
|
+
border: 1px solid #ddd;
|
286
|
+
background: #ffffff url(/assets/kilt/ui-bg_flat_100_ffffff_40x100.png) 50% 50% repeat-x;
|
287
|
+
color: #404040;
|
288
|
+
}
|
289
|
+
.ui-widget-content a {
|
290
|
+
color: #404040;
|
291
|
+
}
|
292
|
+
.ui-widget-header {
|
293
|
+
border: 1px solid #fff;
|
294
|
+
background: #fff url(/assets/kilt/ui-bg_highlight-soft_100_fff_1x100.png) 50% 50% repeat-x;
|
295
|
+
color: #404040;
|
296
|
+
font-weight: bold;
|
297
|
+
}
|
298
|
+
.ui-widget-header a {
|
299
|
+
color: #404040;
|
300
|
+
}
|
301
|
+
|
302
|
+
/* Interaction states
|
303
|
+
----------------------------------*/
|
304
|
+
.ui-state-default,
|
305
|
+
.ui-widget-content .ui-state-default,
|
306
|
+
.ui-widget-header .ui-state-default {
|
307
|
+
border: 1px solid #fff;
|
308
|
+
background: #fff url(/assets/kilt/ui-bg_flat_100_fff_40x100.png) 50% 50% repeat-x;
|
309
|
+
font-weight: normal;
|
310
|
+
color: #404040;
|
311
|
+
}
|
312
|
+
.ui-state-default a,
|
313
|
+
.ui-state-default a:link,
|
314
|
+
.ui-state-default a:visited {
|
315
|
+
color: #404040;
|
316
|
+
text-decoration: none;
|
317
|
+
}
|
318
|
+
.ui-state-hover,
|
319
|
+
.ui-widget-content .ui-state-hover,
|
320
|
+
.ui-widget-header .ui-state-hover,
|
321
|
+
.ui-state-focus,
|
322
|
+
.ui-widget-content .ui-state-focus,
|
323
|
+
.ui-widget-header .ui-state-focus {
|
324
|
+
border: 1px solid #b344f3;
|
325
|
+
background: #fff url(/assets/kilt/ui-bg_flat_100_fff_40x100.png) 50% 50% repeat-x;
|
326
|
+
font-weight: normal;
|
327
|
+
color: #404040;
|
328
|
+
}
|
329
|
+
.ui-state-hover a,
|
330
|
+
.ui-state-hover a:hover,
|
331
|
+
.ui-state-hover a:link,
|
332
|
+
.ui-state-hover a:visited {
|
333
|
+
color: #404040;
|
334
|
+
text-decoration: none;
|
335
|
+
}
|
336
|
+
.ui-state-active,
|
337
|
+
.ui-widget-content .ui-state-active,
|
338
|
+
.ui-widget-header .ui-state-active {
|
339
|
+
border: 1px solid #b344f3;
|
340
|
+
background: #ffffff url(/assets/kilt/ui-bg_glass_100_ffffff_1x400.png) 50% 50% repeat-x;
|
341
|
+
font-weight: normal;
|
342
|
+
color: #404040;
|
343
|
+
}
|
344
|
+
.ui-state-active a,
|
345
|
+
.ui-state-active a:link,
|
346
|
+
.ui-state-active a:visited {
|
347
|
+
color: #404040;
|
348
|
+
text-decoration: none;
|
349
|
+
}
|
350
|
+
|
351
|
+
/* Interaction Cues
|
352
|
+
----------------------------------*/
|
353
|
+
.ui-state-highlight,
|
354
|
+
.ui-widget-content .ui-state-highlight,
|
355
|
+
.ui-widget-header .ui-state-highlight {
|
356
|
+
border: 1px solid #fff;
|
357
|
+
background: #ddd;
|
358
|
+
color: #404040;
|
359
|
+
}
|
360
|
+
.ui-state-highlight a,
|
361
|
+
.ui-widget-content .ui-state-highlight a,
|
362
|
+
.ui-widget-header .ui-state-highlight a {
|
363
|
+
color: #404040;
|
364
|
+
}
|
365
|
+
.ui-state-error,
|
366
|
+
.ui-widget-content .ui-state-error,
|
367
|
+
.ui-widget-header .ui-state-error {
|
368
|
+
border: 1px solid #e74c3c;
|
369
|
+
background: #fff url(/assets/kilt/ui-bg_glass_100_fff_1x400.png) 50% 50% repeat-x;
|
370
|
+
color: #e74c3c;
|
371
|
+
}
|
372
|
+
.ui-state-error a,
|
373
|
+
.ui-widget-content .ui-state-error a,
|
374
|
+
.ui-widget-header .ui-state-error a {
|
375
|
+
color: #e74c3c;
|
376
|
+
}
|
377
|
+
.ui-state-error-text,
|
378
|
+
.ui-widget-content .ui-state-error-text,
|
379
|
+
.ui-widget-header .ui-state-error-text {
|
380
|
+
color: #e74c3c;
|
381
|
+
}
|
382
|
+
.ui-priority-primary,
|
383
|
+
.ui-widget-content .ui-priority-primary,
|
384
|
+
.ui-widget-header .ui-priority-primary {
|
385
|
+
font-weight: bold;
|
386
|
+
}
|
387
|
+
.ui-priority-secondary,
|
388
|
+
.ui-widget-content .ui-priority-secondary,
|
389
|
+
.ui-widget-header .ui-priority-secondary {
|
390
|
+
opacity: .7;
|
391
|
+
filter:Alpha(Opacity=70);
|
392
|
+
font-weight: normal;
|
393
|
+
}
|
394
|
+
.ui-state-disabled,
|
395
|
+
.ui-widget-content .ui-state-disabled,
|
396
|
+
.ui-widget-header .ui-state-disabled {
|
397
|
+
opacity: .35;
|
398
|
+
filter:Alpha(Opacity=35);
|
399
|
+
background-image: none;
|
400
|
+
}
|
401
|
+
.ui-state-disabled .ui-icon {
|
402
|
+
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
|
403
|
+
}
|
404
|
+
|
405
|
+
/* Icons
|
406
|
+
----------------------------------*/
|
407
|
+
|
408
|
+
/* states and images */
|
409
|
+
.ui-icon {
|
410
|
+
width: 16px;
|
411
|
+
height: 16px;
|
412
|
+
}
|
413
|
+
.ui-icon,
|
414
|
+
.ui-widget-content .ui-icon {
|
415
|
+
background-image: url(/assets/kilt/ui-icons_404040_256x240.png);
|
416
|
+
}
|
417
|
+
.ui-widget-header .ui-icon {
|
418
|
+
background-image: url(/assets/kilt/ui-icons_404040_256x240.png);
|
419
|
+
}
|
420
|
+
.ui-state-default .ui-icon {
|
421
|
+
background-image: url(/assets/kilt/ui-icons_404040_256x240.png);
|
422
|
+
}
|
423
|
+
.ui-state-hover .ui-icon,
|
424
|
+
.ui-state-focus .ui-icon {
|
425
|
+
background-image: url(/assets/kilt/ui-icons_404040_256x240.png);
|
426
|
+
}
|
427
|
+
.ui-state-active .ui-icon {
|
428
|
+
background-image: url(/assets/kilt/ui-icons_404040_256x240.png);
|
429
|
+
}
|
430
|
+
.ui-state-highlight .ui-icon {
|
431
|
+
background-image: url(/assets/kilt/ui-icons_404040_256x240.png);
|
432
|
+
}
|
433
|
+
.ui-state-error .ui-icon,
|
434
|
+
.ui-state-error-text .ui-icon {
|
435
|
+
background-image: url(/assets/kilt/ui-icons_e74c3c_256x240.png);
|
436
|
+
}
|
437
|
+
|
438
|
+
/* positioning */
|
439
|
+
.ui-icon-blank { background-position: 16px 16px; }
|
440
|
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
441
|
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
442
|
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
443
|
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
444
|
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
445
|
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
446
|
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
447
|
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
448
|
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
449
|
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
450
|
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
451
|
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
452
|
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
453
|
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
454
|
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
455
|
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
456
|
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
457
|
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
458
|
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
459
|
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
460
|
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
461
|
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
462
|
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
463
|
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
464
|
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
465
|
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
466
|
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
467
|
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
468
|
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
469
|
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
470
|
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
471
|
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
472
|
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
473
|
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
474
|
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
475
|
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
476
|
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
477
|
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
478
|
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
479
|
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
480
|
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
481
|
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
482
|
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
483
|
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
484
|
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
485
|
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
486
|
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
487
|
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
488
|
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
489
|
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
490
|
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
491
|
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
492
|
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
493
|
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
494
|
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
495
|
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
496
|
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
497
|
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
498
|
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
499
|
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
500
|
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
501
|
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
502
|
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
503
|
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
504
|
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
505
|
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
506
|
+
.ui-icon-extlink { background-position: -32px -80px; }
|
507
|
+
.ui-icon-newwin { background-position: -48px -80px; }
|
508
|
+
.ui-icon-refresh { background-position: -64px -80px; }
|
509
|
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
510
|
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
511
|
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
512
|
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
513
|
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
514
|
+
.ui-icon-document { background-position: -32px -96px; }
|
515
|
+
.ui-icon-document-b { background-position: -48px -96px; }
|
516
|
+
.ui-icon-note { background-position: -64px -96px; }
|
517
|
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
518
|
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
519
|
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
520
|
+
.ui-icon-comment { background-position: -128px -96px; }
|
521
|
+
.ui-icon-person { background-position: -144px -96px; }
|
522
|
+
.ui-icon-print { background-position: -160px -96px; }
|
523
|
+
.ui-icon-trash { background-position: -176px -96px; }
|
524
|
+
.ui-icon-locked { background-position: -192px -96px; }
|
525
|
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
526
|
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
527
|
+
.ui-icon-tag { background-position: -240px -96px; }
|
528
|
+
.ui-icon-home { background-position: 0 -112px; }
|
529
|
+
.ui-icon-flag { background-position: -16px -112px; }
|
530
|
+
.ui-icon-calendar { background-position: -32px -112px; }
|
531
|
+
.ui-icon-cart { background-position: -48px -112px; }
|
532
|
+
.ui-icon-pencil { background-position: -64px -112px; }
|
533
|
+
.ui-icon-clock { background-position: -80px -112px; }
|
534
|
+
.ui-icon-disk { background-position: -96px -112px; }
|
535
|
+
.ui-icon-calculator { background-position: -112px -112px; }
|
536
|
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
537
|
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
538
|
+
.ui-icon-search { background-position: -160px -112px; }
|
539
|
+
.ui-icon-wrench { background-position: -176px -112px; }
|
540
|
+
.ui-icon-gear { background-position: -192px -112px; }
|
541
|
+
.ui-icon-heart { background-position: -208px -112px; }
|
542
|
+
.ui-icon-star { background-position: -224px -112px; }
|
543
|
+
.ui-icon-link { background-position: -240px -112px; }
|
544
|
+
.ui-icon-cancel { background-position: 0 -128px; }
|
545
|
+
.ui-icon-plus { background-position: -16px -128px; }
|
546
|
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
547
|
+
.ui-icon-minus { background-position: -48px -128px; }
|
548
|
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
549
|
+
.ui-icon-close { background-position: -80px -128px; }
|
550
|
+
.ui-icon-closethick { background-position: -96px -128px; }
|
551
|
+
.ui-icon-key { background-position: -112px -128px; }
|
552
|
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
553
|
+
.ui-icon-scissors { background-position: -144px -128px; }
|
554
|
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
555
|
+
.ui-icon-copy { background-position: -176px -128px; }
|
556
|
+
.ui-icon-contact { background-position: -192px -128px; }
|
557
|
+
.ui-icon-image { background-position: -208px -128px; }
|
558
|
+
.ui-icon-video { background-position: -224px -128px; }
|
559
|
+
.ui-icon-script { background-position: -240px -128px; }
|
560
|
+
.ui-icon-alert { background-position: 0 -144px; }
|
561
|
+
.ui-icon-info { background-position: -16px -144px; }
|
562
|
+
.ui-icon-notice { background-position: -32px -144px; }
|
563
|
+
.ui-icon-help { background-position: -48px -144px; }
|
564
|
+
.ui-icon-check { background-position: -64px -144px; }
|
565
|
+
.ui-icon-bullet { background-position: -80px -144px; }
|
566
|
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
567
|
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
568
|
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
569
|
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
570
|
+
.ui-icon-play { background-position: 0 -160px; }
|
571
|
+
.ui-icon-pause { background-position: -16px -160px; }
|
572
|
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
573
|
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
574
|
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
575
|
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
576
|
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
577
|
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
578
|
+
.ui-icon-stop { background-position: -96px -160px; }
|
579
|
+
.ui-icon-eject { background-position: -112px -160px; }
|
580
|
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
581
|
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
582
|
+
.ui-icon-power { background-position: 0 -176px; }
|
583
|
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
584
|
+
.ui-icon-signal { background-position: -32px -176px; }
|
585
|
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
586
|
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
587
|
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
588
|
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
589
|
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
590
|
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
591
|
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
592
|
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
593
|
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
594
|
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
595
|
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
596
|
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
597
|
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
598
|
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
599
|
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
600
|
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
601
|
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
602
|
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
603
|
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
604
|
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
605
|
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
606
|
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
607
|
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
608
|
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
609
|
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
610
|
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
611
|
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
612
|
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
613
|
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
614
|
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
615
|
+
|
616
|
+
|
617
|
+
/* Misc visuals
|
618
|
+
----------------------------------*/
|
619
|
+
|
620
|
+
/* Corner radius */
|
621
|
+
.ui-corner-all,
|
622
|
+
.ui-corner-top,
|
623
|
+
.ui-corner-left,
|
624
|
+
.ui-corner-tl {
|
625
|
+
border-top-left-radius: 0;
|
626
|
+
}
|
627
|
+
.ui-corner-all,
|
628
|
+
.ui-corner-top,
|
629
|
+
.ui-corner-right,
|
630
|
+
.ui-corner-tr {
|
631
|
+
border-top-right-radius: 0;
|
632
|
+
}
|
633
|
+
.ui-corner-all,
|
634
|
+
.ui-corner-bottom,
|
635
|
+
.ui-corner-left,
|
636
|
+
.ui-corner-bl {
|
637
|
+
border-bottom-left-radius: 0;
|
638
|
+
}
|
639
|
+
.ui-corner-all,
|
640
|
+
.ui-corner-bottom,
|
641
|
+
.ui-corner-right,
|
642
|
+
.ui-corner-br {
|
643
|
+
border-bottom-right-radius: 0;
|
644
|
+
}
|
645
|
+
|
646
|
+
/* Overlays */
|
647
|
+
.ui-widget-overlay {
|
648
|
+
background: #fff url(/assets/kilt/ui-bg_flat_0_fff_40x100.png) 50% 50% repeat-x;
|
649
|
+
opacity: .3;
|
650
|
+
filter: Alpha(Opacity=30);
|
651
|
+
}
|
652
|
+
.ui-widget-shadow {
|
653
|
+
margin: 0 0 0 0;
|
654
|
+
padding: 0;
|
655
|
+
background: #000 url(/assets/kilt/ui-bg_flat_0_000_40x100.png) 50% 50% repeat-x;
|
656
|
+
opacity: 0;
|
657
|
+
filter: Alpha(Opacity=0);
|
658
|
+
border-radius: 0;
|
659
|
+
}
|